diff options
Diffstat (limited to 'Source/SPAppController.h')
-rw-r--r-- | Source/SPAppController.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Source/SPAppController.h b/Source/SPAppController.h index 86b9db13..e1ed4291 100644 --- a/Source/SPAppController.h +++ b/Source/SPAppController.h @@ -26,7 +26,7 @@ #import <Cocoa/Cocoa.h> #import <FeedbackReporter/FRFeedbackReporter.h> -@class SPPreferenceController, SPAboutController; +@class SPPreferenceController, SPAboutController, TableDocument; @interface SPAppController : NSObject <FRFeedbackReporterDelegate> { @@ -38,6 +38,11 @@ id encodingPopUp; } +// Window management +- (IBAction)newWindow:(id)sender; +- (IBAction)newTab:(id)sender; +- (NSWindow *) frontDocumentWindow; + // IBAction methods - (IBAction)openAboutPanel:(id)sender; - (IBAction)openPreferences:(id)sender; @@ -56,6 +61,8 @@ // Getters - (SPPreferenceController *)preferenceController; +- (NSArray *) orderedDatabaseConnectionWindows; +- (TableDocument *) frontDocument; // Feedback controller delegate methods - (NSMutableDictionary*) anonymizePreferencesForFeedbackReport:(NSMutableDictionary *)preferences; |