Converted these images to PNG, saving a handful of bytes per image
[adiumx.git] / Plugins / Translation / AITranslatorRequestDelegate.h
blobe0eee5588ac9880d795b7db582d7e6f8bf0492cf
1 //
2 // AITranslatorRequestDelegate.h
3 // Adium
4 //
5 // Created by Evan Schoenberg on 3/12/06.
6 //
8 #import <Cocoa/Cocoa.h>
10 // States of search state machine
11 typedef enum {
12 Translator_SearchForTextArea = 0,
13 Translator_SearchForEndOfTag,
14 Translator_SearchForTextAreaClose,
15 Translator_SearchCompleted
16 } Translator_Step;
18 @interface AITranslatorRequestDelegate : NSObject {
19 NSDictionary *messageDict;
20 id target;
21 NSMutableString *response;
22 NSRange targetRange;
24 Translator_Step state;
27 + (id)translatorRequestDelegateForDict:(NSDictionary *)inDict notifyingTarget:(id)inTarget;
29 @end