]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/prefs.h
* remove/disable the update-checker on OSX until 0.8.4 is out
[vlc] / modules / gui / macosx / prefs.h
index 28ef646023fa4cfca61d0025bec55feaf604b7e8..9dda8b049285117efbe325b6381fe3b8f6e6ad49 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * prefs.h: MacOS X module for vlc
  *****************************************************************************
- * Copyright (C) 2002-2005 VideoLAN
+ * Copyright (C) 2002-2005 the VideoLAN team
  * $Id$
  *
  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net> 
@@ -24,6 +24,8 @@
 @interface VLCTreeItem : NSObject
 {
     NSString *o_name;
+    NSString *o_title;
+    NSString *o_help;
     int i_object_id;
     VLCTreeItem *o_parent;
     NSMutableArray *o_children;
@@ -36,6 +38,8 @@
 - (VLCTreeItem *)childAtIndex:(int)i_index;
 - (int)getObjectID;
 - (NSString *)getName;
+- (NSString *)getTitle;
+- (NSString *)getHelp;
 - (BOOL)hasPrefs:(NSString *)o_module_name;
 - (NSView *)showView:(NSScrollView *)o_prefs_view advancedView:(vlc_bool_t) b_advanced;
 - (void)applyChanges;
@@ -55,6 +59,8 @@
     NSMutableDictionary *o_save_prefs;
     
     IBOutlet id o_prefs_window;
+    IBOutlet id o_title;
+    IBOutlet id o_help;
     IBOutlet id o_tree;
     IBOutlet id o_prefs_view;
     IBOutlet id o_save_btn;
@@ -66,6 +72,7 @@
 + (VLCPrefs *)sharedInstance;
 
 - (void)initStrings;
+- (void)setTitle: (NSString *) o_title_name;
 - (void)showPrefs;
 - (IBAction)savePrefs: (id)sender;
 - (IBAction)closePrefs: (id)sender;