]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/about.h
macosx: Dummy build fix.
[vlc] / modules / gui / macosx / about.h
index 7ef8f44aab826b2b37b97c72d026a03b8617c165..b04355f7eda1742f9053111e6708c9a12e0bfc63 100644 (file)
@@ -5,7 +5,7 @@
  * $Id$
  *
  * Authors: Derk-Jan Hartman <thedj@users.sourceforge.net>
- *          Felix Paul K\9fhne <fkuehne -at- videolan.org>
+ *          Felix Paul KΓΌhne <fkuehne -at- videolan.org>
  *
  * 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
@@ -22,6 +22,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
+#import <WebKit/WebKit.h> //we need to be here, because we're using a WebView object below
+
 /*****************************************************************************
  * VLAboutBox interface
  *****************************************************************************/
     NSTimeInterval i_start;
     BOOL b_restart;
     BOOL b_isSetUp;
-
+    
     /* generic help window */
     IBOutlet id o_help_window;
-    IBOutlet id o_help_web_view;
+    IBOutlet WebView *o_help_web_view; //we may _not_ use id here because of method name collisions
+    IBOutlet id o_help_bwd_btn;
+    IBOutlet id o_help_fwd_btn;
+    IBOutlet id o_help_home_btn;
 
     /* licence window */
     IBOutlet id o_gpl_window;
@@ -55,7 +60,9 @@
 
 + (VLAboutBox *)sharedInstance;
 - (void)showAbout;
+- (void)VLCWillTerminate;
 - (void)showHelp;
 - (IBAction)showGPL:(id)sender;
+- (IBAction)helpGoHome:(id)sender;
 
 @end