gajim-plural/src/osx/nsapp.h
2007-11-14 19:47:52 +00:00

19 lines
622 B
Objective-C

#import <Cocoa/Cocoa.h>
@interface NSApplication (Gajim)
- (void) initGajim;
- (void) initGUI;
- (BOOL) initNetNotify;
- (void) orderFrontStandardAboutPanel: (id)sender;
- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender;
- (BOOL) application:(NSApplication *)theApplication
openFile:(NSString *)filename;
- (void) application:(NSApplication *)sender openFiles:(NSArray *)filenames;
- (BOOL) applicationOpenUntitledFile:(NSApplication *)theApplication;
- (BOOL) applicationShouldOpenUntitledFile:(NSApplication *)sender;
+ (void) netNotifyCB: (NSNotification*)notif;
@end