]> git.sesse.net Git - vlc/blob - modules/gui/macosx/controls.h
macosx: Fix controller playlist toggling to use the contentRect and not the window...
[vlc] / modules / gui / macosx / controls.h
1 /*****************************************************************************
2  * controls.h: MacOS X interface module
3  *****************************************************************************
4  * Copyright (C) 2002-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
8  *          Christophe Massiot <massiot@via.ecp.fr>
9  *          Derk-Jan Hartman <thedj@users.sourceforge.net>
10  *          Felix Kühne <fkuehne at videolan org>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 #import "fspanel.h"
28
29 /*****************************************************************************
30  * VLCControls interface
31  *****************************************************************************/
32 @interface VLCControls : NSObject
33 {
34     IBOutlet id o_main;
35
36     IBOutlet id o_volumeslider;
37
38     IBOutlet id o_btn_shuffle;
39     IBOutlet id o_btn_addNode;
40     IBOutlet id o_btn_repeat;
41     
42     NSImage * o_repeat_single;
43     NSImage * o_repeat_all;
44     NSImage * o_repeat_off;
45
46     IBOutlet id o_specificTime_cancel_btn;
47     IBOutlet id o_specificTime_enter_fld;
48     IBOutlet id o_specificTime_goTo_lbl;
49     IBOutlet id o_specificTime_ok_btn;
50     IBOutlet id o_specificTime_win;
51     IBOutlet id o_specificTime_sec_lbl;
52     IBOutlet id o_specificTime_stepper;
53     IBOutlet id o_specificTime_mi;
54
55     VLCFSPanel *o_fs_panel;
56 }
57 - (void)controlTintChanged;
58
59 - (IBAction)play:(id)sender;
60 - (IBAction)stop:(id)sender;
61 - (IBAction)faster:(id)sender;
62 - (IBAction)slower:(id)sender;
63
64 - (IBAction)prev:(id)sender;
65 - (IBAction)next:(id)sender;
66 - (IBAction)random:(id)sender;
67 - (IBAction)repeat:(id)sender;
68 - (IBAction)loop:(id)sender;
69 - (IBAction)repeatButtonAction:(id)sender;
70
71 /* the three ugly helpers again */
72 - (void)repeatOne;
73 - (void)repeatAll;
74 - (void)repeatOff;
75 - (void)shuffle;
76
77 - (IBAction)forward:(id)sender;
78 - (IBAction)backward:(id)sender;
79
80 - (IBAction)volumeUp:(id)sender;
81 - (IBAction)volumeDown:(id)sender;
82 - (IBAction)mute:(id)sender;
83 - (IBAction)volumeSliderUpdated:(id)sender;
84
85 - (IBAction)showPosition: (id)sender;
86 - (IBAction)toogleFullscreen:(id)sender;
87 - (BOOL) isFullscreen;
88 - (IBAction)windowAction:(id)sender;
89 - (BOOL)keyEvent:(NSEvent *)o_event;
90 - (void)scrollWheel: (NSEvent *)theEvent;
91
92 - (void)setupVarMenuItem:(NSMenuItem *)o_mi
93                   target:(vlc_object_t *)p_object
94                      var:(const char *)psz_variable
95                 selector:(SEL)pf_callback;
96 - (void)setupVarMenu:(NSMenu *)o_menu
97          forMenuItem: (NSMenuItem *)o_parent
98               target:(vlc_object_t *)p_object
99                  var:(const char *)psz_variable
100             selector:(SEL)pf_callback;
101 - (IBAction)toggleVar:(id)sender;
102 - (int)toggleVarThread:(id)_o_data;
103
104 - (IBAction)goToSpecificTime:(id)sender;
105
106 - (id)getFSPanel;
107
108 @end
109
110 /*****************************************************************************
111  * VLCMenuExt interface
112  *****************************************************************************
113  * This holds our data for autogenerated menus
114  *****************************************************************************/
115 @interface VLCMenuExt : NSObject
116 {
117     char *psz_name;
118     int i_object_id;
119     vlc_value_t value;
120     int i_type;
121 }
122
123 - (id)initWithVar: (const char *)_psz_name 
124            Object: (int)i_id
125             Value: (vlc_value_t)val 
126            ofType: (int)_i_type;
127 - (char *)name;
128 - (int)objectID;
129 - (vlc_value_t)value;
130 - (int)type;
131
132 @end
133
134 /*****************************************************************************
135  * VLCTimeField interface
136  *****************************************************************************
137  * we need the implementation to catch our click-event in the controller window
138  *****************************************************************************/
139
140 @interface VLCTimeField : NSTextField
141 {
142 }
143 @end
144