#import <Foundation/NSObject.h>

@class NSApplication;

#define GDB_MENU_ITEM @"Gdb..."

@interface Controller : NSObject
{
    id infoPanel;
    id gdbDisplayController;
    id gdbRootConnection;
}

/* NSApplication delegate methods */
- (BOOL)application:(NSApplication *)app openFile:(NSString *)filename;
- (BOOL)application:(NSApplication *)app openTempFile:(NSString *)filename;
- (BOOL)applicationShouldTerminate:(NSApplication *)app;

/* Action methods */
- (void)createNew:(id)sender;
- (void)open:(id)sender;
- (void)saveAll:(id)sender;
- (void)showInfoPanel:(id)sender;

@end
