summaryrefslogtreecommitdiffstats
path: root/macosx/HBAppDelegate.h
diff options
context:
space:
mode:
authorritsuka <[email protected]>2015-01-22 10:30:26 +0000
committerritsuka <[email protected]>2015-01-22 10:30:26 +0000
commitdfa1f8dd4bbaed3fba144a5afead99a1ea102c44 (patch)
tree9a487f570a21d91cd6d8beeb7ada67e5b99002e8 /macosx/HBAppDelegate.h
parent1784a808ebe642b54bff0d06abc147226d0287fe (diff)
MacGui: move the application delegate to its own class. Removed the "Open Source (Title Specific)" menu item, now integrated in the standard open panel.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6784 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBAppDelegate.h')
-rw-r--r--macosx/HBAppDelegate.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/macosx/HBAppDelegate.h b/macosx/HBAppDelegate.h
new file mode 100644
index 000000000..a115696e7
--- /dev/null
+++ b/macosx/HBAppDelegate.h
@@ -0,0 +1,14 @@
+/* HBAppDelegate.h $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.fr/>.
+ It may be used under the terms of the GNU General Public License. */
+
+#import <Cocoa/Cocoa.h>
+
+@interface HBAppDelegate : NSObject <NSApplicationDelegate>
+
+- (IBAction)showPreferencesWindow:(id)sender;
+- (IBAction)showOutputPanel:(id)sender;
+
+@end