Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-release > by-pkgid > 0abe5babf535fd3d235143978f85fbcc > files > 1112

gettext-devel-0.19.4-1.mga5.x86_64.rpm

/* Example for use of GNU gettext.
   This file is in the public domain.

   Interface of the AppController class.  */

#include <AppKit/AppKit.h>

@class Hello;

@interface AppController : NSObject
{
  Hello *hello;
}

+ (void)initialize;

- (id)init;
- (void)dealloc;

- (void)awakeFromNib;

- (void)applicationDidFinishLaunching
    :(NSNotification *)notif;

- (BOOL)applicationShouldTerminate:(id)sender;
- (void)applicationWillTerminate:(NSNotification *)notification;

- (BOOL)application:(NSApplication *)application openFile:(NSString *)fileName;

- (void)showPrefPanel:(id)sender;
- (void)showInfoPanel:(id)sender;

- (void)showHelloWindow:(id)sender;

@end