]> git.sesse.net Git - vlc/blob - modules/gui/macosx/prefs.h
* If the "show advanced" option has been changed and you press the Apply
[vlc] / modules / gui / macosx / prefs.h
1 /*****************************************************************************
2  * prefs.h: MacOS X plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2002 VideoLAN
5  * $Id: prefs.h,v 1.3 2003/02/21 02:45:21 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 /*****************************************************************************
27  * VLCPrefs interface
28  *****************************************************************************/
29 @interface VLCPrefs : NSObject
30 {
31     intf_thread_t *p_intf;
32
33     NSMutableDictionary *o_pref_panels;
34     NSMutableDictionary *o_toolbars;
35     NSMutableDictionary *o_scroll_views;
36     NSMutableDictionary *o_panel_views;
37     NSMutableDictionary *o_save_prefs;
38 }
39
40 - (BOOL)hasPrefs:(NSString *)o_module_name;
41 - (void)createPrefPanel:(NSString *)o_module_name;
42 - (void)destroyPrefPanel:(id)o_unknown;
43 - (void)selectPrefView:(id)sender;
44
45 - (void)moduleSelected:(id)sender;
46 - (void)configureModule:(id)sender;
47 - (void)selectModule:(id)sender;
48
49 - (void)configChanged:(id)o_unknown;
50
51 - (void)clickedApplyCancelOK:(id)sender;
52
53 @end
54
55 @interface VLCFlippedView : NSView
56 {
57
58 }
59
60 @end
61
62 #define INTF_CONTROL_CONFIG(x) \
63 @interface VLC##x : NS##x \
64 { \
65     NSString *o_module_name; \
66     NSString *o_config_name; \
67     int i_config_type; \
68 } \
69 - (void)setModuleName:(NSString *)_o_module_name; \
70 - (void)setConfigName:(NSString *)_o_config_name; \
71 - (void)setConfigType:(int)_i_config_type; \
72 - (NSString *)moduleName; \
73 - (NSString *)configName; \
74 - (int)configType; \
75 @end
76
77 #define IMPL_CONTROL_CONFIG(x) \
78 @implementation VLC##x \
79 - (id)init \
80 { \
81     self = [super init]; \
82     if( self != nil ) \
83     { \
84         o_module_name = nil; \
85         o_config_name = nil; \
86         i_config_type = 0; \
87     } \
88     return( self ); \
89 } \
90 - (void)dealloc \
91 { \
92     if( o_module_name != nil ) \
93     { \
94         [o_module_name release]; \
95     } \
96     if( o_config_name != nil ) \
97     { \
98         [o_config_name release]; \
99     } \
100     [super dealloc]; \
101 } \
102 - (void)setModuleName:(NSString *)_o_module_name \
103 { \
104     if( o_module_name != nil ) \
105     { \
106         [o_module_name release]; \
107     } \
108     o_module_name = [_o_module_name retain]; \
109 } \
110 - (void)setConfigName:(NSString *)_o_config_name \
111 { \
112     if( o_config_name != nil ) \
113     { \
114         [o_config_name release]; \
115     } \
116     o_config_name = [_o_config_name retain]; \
117 } \
118 - (void)setConfigType:(int)_i_config_type \
119 { \
120     i_config_type = _i_config_type; \
121 } \
122 - (NSString *)moduleName \
123 { \
124     return( o_module_name ); \
125 } \
126 - (NSString *)configName \
127 { \
128     return( o_config_name ); \
129 } \
130 - (int)configType \
131 { \
132     return( i_config_type ); \
133 } \
134 @end
135
136 INTF_CONTROL_CONFIG(Button);
137 INTF_CONTROL_CONFIG(ComboBox);
138 INTF_CONTROL_CONFIG(TextField);
139
140 #define CONTROL_CONFIG( obj, mname, ctype, cname ) \
141     { \
142         [obj setModuleName: mname]; \
143         [obj setConfigType: ctype]; \
144         [obj setConfigName: [NSString stringWithCString: cname]]; \
145     }
146