mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-23 19:51:00 +00:00
30 lines
644 B
Objective-C
30 lines
644 B
Objective-C
/* All rights reserved */
|
|
|
|
#ifndef GormLanguageViewController_H_INCLUDE
|
|
#define GormLanguageViewController_H_INCLUDE
|
|
|
|
#import <AppKit/NSViewController.h>
|
|
|
|
@class NSDictionary, NSString;
|
|
|
|
@interface GormLanguageViewController : NSViewController
|
|
{
|
|
IBOutlet id targetLanguage;
|
|
IBOutlet id sourceLanguage;
|
|
|
|
NSString *sourceLanguageIdentifier;
|
|
NSString *targetLanguageIdentifier;
|
|
|
|
NSDictionary *ldict;
|
|
}
|
|
|
|
- (IBAction) updateTargetLanguage: (id)sender;
|
|
- (IBAction) updateSourceLanguage: (id)sender;
|
|
|
|
- (NSString *) sourceLanguageIdentifier;
|
|
- (NSString *) targetLanguageIdentifier;
|
|
|
|
|
|
@end
|
|
|
|
#endif // GormLanguageViewController_H_INCLUDE
|