diff options
author | rowanbeentje <rowan@beent.je> | 2010-05-23 21:44:59 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2010-05-23 21:44:59 +0000 |
commit | c661b409eaa0e29d9e012b79e7a66574a554817a (patch) | |
tree | 49b310ded9a226a66aa53444c9ba112824854f68 /Source/SPWindowController.h | |
parent | b66006f3755c6a57dfc60d4133bc4dc4da0fef56 (diff) | |
download | sequelpro-c661b409eaa0e29d9e012b79e7a66574a554817a.tar.gz sequelpro-c661b409eaa0e29d9e012b79e7a66574a554817a.tar.bz2 sequelpro-c661b409eaa0e29d9e012b79e7a66574a554817a.zip |
Initial implementation of tabs:
- Addition of PSMTabBar framework
- Rework away from a document-based TableDocument
- Support tabs throughout the application
- Add menu items for creating tabs, and add support for dragging tabs to different windows
Diffstat (limited to 'Source/SPWindowController.h')
-rw-r--r-- | Source/SPWindowController.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/Source/SPWindowController.h b/Source/SPWindowController.h new file mode 100644 index 00000000..00754848 --- /dev/null +++ b/Source/SPWindowController.h @@ -0,0 +1,46 @@ +// +// $Id$ +// +// SPWindowController.h +// sequel-pro +// +// Created by Rowan Beentje on May 16, 2010 +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// More info at <http://code.google.com/p/sequel-pro/> + +#import <Cocoa/Cocoa.h> +@class PSMTabBarControl, TableDocument; + +@interface SPWindowController : NSWindowController <NSUserInterfaceValidations> +{ + IBOutlet PSMTabBarControl *tabBar; + IBOutlet NSTabView *tabView; + + NSMenuItem *closeWindowMenuItem; + NSMenuItem *closeTabMenuItem; + + NSMutableArray *managedDatabaseConnections; +} + +// Database connection management +- (IBAction) addNewConnection:(id)sender; +- (TableDocument *) selectedTableDocument; +- (void) updateAllTabTitles:(id)sender; +- (IBAction)closeTab:(id)sender; +- (NSArray *)documents; + +@end |