Converted these images to PNG, saving a handful of bytes per image
[adiumx.git] / Plugins / Translation / AITranslatorOptionsWindowController.h
blob57d8b333e3e764cc76ac54186ca161dc124abc97
1 //
2 // AITranslatorOptionsWindowController.h
3 // Adium
4 //
5 // Created by Evan Schoenberg on 3/13/06.
6 //
8 #import <Cocoa/Cocoa.h>
9 #import <Adium/AIWindowController.h>
11 @class AIListObject;
13 @interface AITranslatorOptionsWindowController : AIWindowController {
14 IBOutlet NSPopUpButton *popUp_sourceLanguage;
15 IBOutlet NSPopUpButton *popUp_destinationLanguage;
17 IBOutlet NSTextField *textField_header;
18 IBOutlet NSTextField *textField_sourceLanguage;
19 IBOutlet NSTextField *textField_destinationLanguage;
21 AIListObject *currentListObject;
24 + (void)showOptionsForListObject:(AIListObject *)listObject;
25 - (IBAction)selectLanguage:(id)sender;
27 @end