aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPAboutController.h
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2009-11-19 22:02:45 +0000
committerstuconnolly <stuart02@gmail.com>2009-11-19 22:02:45 +0000
commit8110678ed8c66a5daf2223d1ca53956d97edee23 (patch)
tree01a4a6228eefb1ee073014b9af3300991d4e95f8 /Source/SPAboutController.h
parentdaa5efe61df282fe602210b5b955a7d21206bf1e (diff)
downloadsequelpro-8110678ed8c66a5daf2223d1ca53956d97edee23.tar.gz
sequelpro-8110678ed8c66a5daf2223d1ca53956d97edee23.tar.bz2
sequelpro-8110678ed8c66a5daf2223d1ca53956d97edee23.zip
The result of being bored. Add a nicer looking about panel based on Adium's.
Diffstat (limited to 'Source/SPAboutController.h')
-rw-r--r--Source/SPAboutController.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/Source/SPAboutController.h b/Source/SPAboutController.h
new file mode 100644
index 00000000..9abff263
--- /dev/null
+++ b/Source/SPAboutController.h
@@ -0,0 +1,40 @@
+//
+// $Id$
+//
+// SPAboutController.h
+// sequel-pro
+//
+// Created by Stuart Connolly (stuconnolly.com) on November 18, 2009
+// Copyright (c) 2009 Stuart Connolly. All rights reserved.
+//
+// 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>
+
+@interface SPAboutController : NSWindowController
+{
+ IBOutlet NSTextField *appNameVersionTextField;
+ IBOutlet NSTextField *appBuildVersionTextField;
+ IBOutlet NSTextView *appCreditsTextView;
+ IBOutlet NSTextView *appLicenseTextView;
+ IBOutlet NSPanel *appLicensePanel;
+}
+
+- (IBAction)openApplicationLicenseSheet:(id)sender;
+- (IBAction)closeApplicationLicenseSheet:(id)sender;
+
+@end