]> git.sesse.net Git - vlc/blob - modules/gui/macosx/prefs.h
* declared the shared instance properly (forgot that yesterday)
[vlc] / modules / gui / macosx / prefs.h
1 /*****************************************************************************
2  * prefs.h: MacOS X module for vlc
3  *****************************************************************************
4  * Copyright (C) 2002-2003 VideoLAN
5  * $Id$
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 300
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     NSMutableDictionary *o_save_prefs;
53     
54     IBOutlet id o_prefs_window;
55     IBOutlet id o_tree;
56     IBOutlet id o_prefs_view;
57     IBOutlet id o_save_btn;
58     IBOutlet id o_cancel_btn;
59     IBOutlet id o_reset_btn;
60     IBOutlet id o_advanced_ckb;
61 }
62
63 + (VLCPrefs *)sharedInstance;
64
65 - (void)initStrings;
66 - (void)showPrefs;
67 - (IBAction)savePrefs: (id)sender;
68 - (IBAction)closePrefs: (id)sender;
69 - (IBAction)resetAll: (id)sender;
70 - (void)sheetDidEnd:(NSWindow *)o_sheet returnCode:(int)i_return contextInfo:(void *)o_context;
71 - (IBAction)advancedToggle: (id)sender;
72 - (IBAction)openFileDialog: (id)sender;
73 - (void)pathChosenInPanel:(NSOpenPanel *)o_sheet withReturn:(int)i_return_code contextInfo:(void  *)o_context_info;
74 - (void)showViewForID: (int) i_id andName:(NSString *)o_item_name;
75 - (void)configChanged:(id)o_unknown;
76
77 @end
78
79 @interface VLCFlippedView : NSView
80 {
81
82 }
83
84 @end
85
86 #define INTF_CONTROL_CONFIG(x) \
87 @interface VLC##x : NS##x \
88 { \
89     NSString *o_module_name; \
90     NSString *o_config_name; \
91     int i_config_type; \
92 } \
93 - (void)setModuleName:(NSString *)_o_module_name; \
94 - (void)setConfigName:(NSString *)_o_config_name; \
95 - (void)setConfigType:(int)_i_config_type; \
96 - (NSString *)moduleName; \
97 - (NSString *)configName; \
98 - (int)configType; \
99 @end
100
101 #define IMPL_CONTROL_CONFIG(x) \
102 @implementation VLC##x \
103 - (id)init \
104 { \
105     self = [super init]; \
106     if( self != nil ) \
107     { \
108         o_module_name = nil; \
109         o_config_name = nil; \
110         i_config_type = 0; \
111     } \
112     return( self ); \
113 } \
114 - (void)dealloc \
115 { \
116     if( o_module_name != nil ) \
117     { \
118         [o_module_name release]; \
119     } \
120     if( o_config_name != nil ) \
121     { \
122         [o_config_name release]; \
123     } \
124     [super dealloc]; \
125 } \
126 - (void)setModuleName:(NSString *)_o_module_name \
127 { \
128     if( o_module_name != nil ) \
129     { \
130         [o_module_name release]; \
131     } \
132     o_module_name = [_o_module_name retain]; \
133 } \
134 - (void)setConfigName:(NSString *)_o_config_name \
135 { \
136     if( o_config_name != nil ) \
137     { \
138         [o_config_name release]; \
139     } \
140     o_config_name = [_o_config_name retain]; \
141 } \
142 - (void)setConfigType:(int)_i_config_type \
143 { \
144     i_config_type = _i_config_type; \
145 } \
146 - (NSString *)moduleName \
147 { \
148     return( o_module_name ); \
149 } \
150 - (NSString *)configName \
151 { \
152     return( o_config_name ); \
153 } \
154 - (int)configType \
155 { \
156     return( i_config_type ); \
157 } \
158 @end
159
160 INTF_CONTROL_CONFIG(Button);
161 INTF_CONTROL_CONFIG(PopUpButton);
162 INTF_CONTROL_CONFIG(ComboBox);
163 INTF_CONTROL_CONFIG(TextField);
164 INTF_CONTROL_CONFIG(Slider);
165 INTF_CONTROL_CONFIG(Matrix);
166
167 #define CONTROL_CONFIG( obj, mname, ctype, cname ) \
168     { \
169         [obj setModuleName: mname]; \
170         [obj setConfigType: ctype]; \
171         [obj setConfigName: [NSString stringWithUTF8String: cname]]; \
172     }
173