diff options
author | konablend <[email protected]> | 2009-06-17 00:05:07 +0000 |
---|---|---|
committer | konablend <[email protected]> | 2009-06-17 00:05:07 +0000 |
commit | 77ace834b568f1a024b2f3aa4bee70cc3a1a6b65 (patch) | |
tree | b3e875353d1ac9c64a9c6b534fcaa9780bcc195c /macosx/Controller.h | |
parent | 3df17b7467c6db19715ae175bde37dd5dd6e33b5 (diff) |
MacGUI: added 64-bit savvy application icon.
- icon is chosen based on compile-time architecture: HandBrake.icns or HandBrake-64.icns
- added action for MainMenu->About to call Controller.showAboutPanel as the default about panel needs dictionary override to force icon.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2547 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Controller.h')
-rw-r--r-- | macosx/Controller.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/macosx/Controller.h b/macosx/Controller.h index 798e44393..f1432b4ed 100644 --- a/macosx/Controller.h +++ b/macosx/Controller.h @@ -31,6 +31,7 @@ BOOL fIsDragging; @interface HBController : NSObject <GrowlApplicationBridgeDelegate> { + NSImage * fApplicationIcon; IBOutlet NSWindow * fWindow; /* Main Menu Outlets */ @@ -267,6 +268,8 @@ BOOL fIsDragging; double dockIconProgress; } +- (IBAction) showAboutPanel:(id)sender; + - (void) writeToActivityLog:(const char *) format, ...; - (IBAction) browseSources: (id) sender; - (void) browseSourcesDone: (NSOpenPanel *) sheet |