]> git.sesse.net Git - vlc/blob - modules/gui/macosx/prefs.h
* Added a Reset prefs option
[vlc] / modules / gui / macosx / prefs.h
1 /*****************************************************************************
2  * prefs.h: MacOS X plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2002-2003 VideoLAN
5  * $Id: prefs.h,v 1.6 2003/05/20 15:23:25 hartman Exp $
6  *
7  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net> 
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  * 
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #define PREFS_WRAP 60
25
26 @interface VLCTreeItem : NSObject
27 {
28     NSString *o_name;
29     int i_object_id;
30     VLCTreeItem *o_parent;
31     NSMutableArray *o_children;
32 }
33
34 + (VLCTreeItem *)rootItem;
35 - (int)numberOfChildren;
36 - (VLCTreeItem *)childAtIndex:(int)i_index;
37 - (int)getObjectID;
38 - (NSString *)getName;
39 - (BOOL)hasPrefs:(NSString *)o_module_name;
40
41 @end
42
43 /*****************************************************************************
44  * VLCPrefs interface
45  *****************************************************************************/
46 @interface VLCPrefs : NSObject
47 {
48     intf_thread_t *p_intf;
49     vlc_bool_t b_advanced;
50     VLCTreeItem *o_config_tree;
51     NSView *o_empty_view;
52     
53     IBOutlet id o_prefs_window;
54     IBOutlet id o_tree;
55     IBOutlet id o_prefs_view;
56     IBOutlet id o_save_btn;
57     IBOutlet id o_cancel_btn;
58     IBOutlet id o_reset_btn;
59     IBOutlet id o_advanced_ckb;
60 }
61
62 - (void)initStrings;
63 - (void)showPrefs;
64 - (IBAction)savePrefs: (id)sender;
65 - (IBAction)closePrefs: (id)sender;
66 - (IBAction)resetAll: (id)sender;
67 - (IBAction)advancedToggle: (id)sender;
68 - (void)showViewForID: (int) i_id andName:(NSString *)o_item_name;
69 - (void)configChanged:(id)o_unknown;
70
71 @end
72
73 @interface VLCFlippedView : NSView
74 {
75
76 }
77
78 @end
79
80 #define INTF_CONTROL_CONFIG(x) \
81 @interface VLC##x : NS##x \
82 { \
83     NSString *o_module_name; \
84     NSString *o_config_name; \
85     int i_config_type; \
86 } \
87 - (void)setModuleName:(NSString *)_o_module_name; \
88 - (void)setConfigName:(NSString *)_o_config_name; \
89 - (void)setConfigType:(int)_i_config_type; \
90 - (NSString *)moduleName; \
91 - (NSString *)configName; \
92 - (int)configType; \
93 @end
94
95 #define IMPL_CONTROL_CONFIG(x) \
96 @implementation VLC##x \
97 - (id)init \
98 { \
99     self = [super init]; \
100     if( self != nil ) \
101     { \
102         o_module_name = nil; \
103         o_config_name = nil; \
104         i_config_type = 0; \
105     } \
106     return( self ); \
107 } \
108 - (void)dealloc \
109 { \
110     if( o_module_name != nil ) \
111     { \
112         [o_module_name release]; \
113     } \
114     if( o_config_name != nil ) \
115     { \
116         [o_config_name release]; \
117     } \
118     [super dealloc]; \
119 } \
120 - (void)setModuleName:(NSString *)_o_module_name \
121 { \
122     if( o_module_name != nil ) \
123     { \
124         [o_module_name release]; \
125     } \
126     o_module_name = [_o_module_name retain]; \
127 } \
128 - (void)setConfigName:(NSString *)_o_config_name \
129 { \
130     if( o_config_name != nil ) \
131     { \
132         [o_config_name release]; \
133     } \
134     o_config_name = [_o_config_name retain]; \
135 } \
136 - (void)setConfigType:(int)_i_config_type \
137 { \
138     i_config_type = _i_config_type; \
139 } \
140 - (NSString *)moduleName \
141 { \
142     return( o_module_name ); \
143 } \
144 - (NSString *)configName \
145 { \
146     return( o_config_name ); \
147 } \
148 - (int)configType \
149 { \
150     return( i_config_type ); \
151 } \
152 @end
153
154 INTF_CONTROL_CONFIG(Button);
155 INTF_CONTROL_CONFIG(PopUpButton);
156 INTF_CONTROL_CONFIG(ComboBox);
157 INTF_CONTROL_CONFIG(TextField);
158
159 #define CONTROL_CONFIG( obj, mname, ctype, cname ) \
160     { \
161         [obj setModuleName: mname]; \
162         [obj setConfigType: ctype]; \
163         [obj setConfigName: [NSString stringWithCString: cname]]; \
164     }
165