]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/info.h
* README.MacOSX.rtf: updated section on subtitles.
[vlc] / modules / gui / macosx / info.h
index a0b35dee3fc797e1a560f32a006ee3e360b0bef5..8e9aa52dc1f114f081887105349cd5b1a5d6de08 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************
  * info.h: MacOS X info panel
  *****************************************************************************
- * Copyright (C) 2002 VideoLAN
- * $Id: info.h,v 1.1 2003/02/17 10:52:07 hartman Exp $
+ * Copyright (C) 2003 VideoLAN
+ * $Id: info.h,v 1.2 2003/02/23 05:53:53 jlj Exp $
  *
  * Authors: Derk-Jan Hartman <thedj@users.sourceforge.net>
  *
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  *****************************************************************************/
 
-#include <vlc/vlc.h>
-#include <vlc/intf.h>
-
-#import <Cocoa/Cocoa.h>
-
-
 /*****************************************************************************
  * VLCInfo interface 
  *****************************************************************************/
-@interface VLCInfo : NSObject {
+@interface VLCInfo : NSObject
+{
+    IBOutlet id o_window;
+    IBOutlet id o_view;
+    IBOutlet id o_selector;
 
-    IBOutlet id o_info_window;
-    IBOutlet id o_info_view;
-    IBOutlet id o_info_selector;
-    
-    intf_thread_t *p_intf;
-    NSMutableDictionary *o_info_strings;
+    NSMutableDictionary * o_strings;
 }
 
+- (void)updateInfo;
 - (IBAction)toggleInfoPanel:(id)sender;
 - (IBAction)showCategory:(id)sender;
-- (void)updateInfo;
 - (void)createInfoView:(input_info_category_t *)p_category;
 
-@end
\ No newline at end of file
+@end