]> git.sesse.net Git - vlc/blob - modules/gui/macosx/ControlsBar.h
macosx: remove unneeded outlet for window in controlsBar code
[vlc] / modules / gui / macosx / ControlsBar.h
1 /*****************************************************************************
2  * ControlsBar.h: MacOS X interface module
3  *****************************************************************************
4  * Copyright (C) 2012 VLC authors and VideoLAN
5  * $Id$
6  *
7  * Authors: Felix Paul Kühne <fkuehne -at- videolan -dot- org>
8  *          David Fuhrmann <david dot fuhrmann at googlemail dot com>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #import <Cocoa/Cocoa.h>
26 #import "CompatibilityFixes.h"
27
28 @class VLCFSPanel;
29
30 /*****************************************************************************
31  * VLCControlsBarCommon
32  *
33  *  Holds all outlets, actions and code common for controls bar in detached
34  *  and in main window.
35  *****************************************************************************/
36
37 @interface VLCControlsBarCommon : NSObject
38 {
39     IBOutlet id o_bottombar_view;
40
41     IBOutlet id o_play_btn;
42     IBOutlet id o_bwd_btn;
43     IBOutlet id o_fwd_btn;
44
45     IBOutlet id o_progress_view;
46     IBOutlet id o_time_sld;
47     IBOutlet id o_time_sld_fancygradient_view;
48     IBOutlet id o_time_sld_background;
49     IBOutlet id o_progress_bar;
50
51     IBOutlet id o_time_fld;
52
53     IBOutlet id o_fullscreen_btn;
54
55     IBOutlet id o_resize_view;
56
57
58     NSImage * o_pause_img;
59     NSImage * o_pause_pressed_img;
60     NSImage * o_play_img;
61     NSImage * o_play_pressed_img;
62
63     NSTimeInterval last_fwd_event;
64     NSTimeInterval last_bwd_event;
65     BOOL just_triggered_next;
66     BOOL just_triggered_previous;
67
68     BOOL b_nativeFullscreenMode;
69     BOOL b_dark_interface;
70     
71 }
72
73 @property (readonly) id bottomBarView;
74
75 - (IBAction)play:(id)sender;
76 - (IBAction)bwd:(id)sender;
77 - (IBAction)fwd:(id)sender;
78
79 - (IBAction)timeSliderAction:(id)sender;
80 - (IBAction)fullscreen:(id)sender;
81
82
83 - (void)updateTimeSlider;
84 - (void)drawFancyGradientEffectForTimeSlider;
85 - (void)updateControls;
86 - (void)setPause;
87 - (void)setPlay;
88 - (void)setFullscreenState:(BOOL)b_fullscreen;
89
90 @end
91
92
93 /*****************************************************************************
94  * VLCMainWindowControlsBar
95  *
96  *  Holds all specific outlets, actions and code for the main window controls bar.
97  *****************************************************************************/
98
99 @interface VLCMainWindowControlsBar : VLCControlsBarCommon
100 {
101     IBOutlet id o_stop_btn;
102
103     IBOutlet id o_playlist_btn;
104     IBOutlet id o_repeat_btn;
105     IBOutlet id o_shuffle_btn;
106
107     IBOutlet id o_volume_sld;
108     IBOutlet id o_volume_track_view;
109     IBOutlet id o_volume_down_btn;
110     IBOutlet id o_volume_up_btn;
111
112     IBOutlet id o_effects_btn;
113
114     NSImage * o_repeat_img;
115     NSImage * o_repeat_pressed_img;
116     NSImage * o_repeat_all_img;
117     NSImage * o_repeat_all_pressed_img;
118     NSImage * o_repeat_one_img;
119     NSImage * o_repeat_one_pressed_img;
120     NSImage * o_shuffle_img;
121     NSImage * o_shuffle_pressed_img;
122     NSImage * o_shuffle_on_img;
123     NSImage * o_shuffle_on_pressed_img;
124
125     NSButton * o_prev_btn;
126     NSButton * o_next_btn;
127
128     BOOL b_show_jump_buttons;
129     BOOL b_show_playmode_buttons;
130 }
131
132 - (IBAction)stop:(id)sender;
133
134 - (IBAction)shuffle:(id)sender;
135 - (IBAction)volumeAction:(id)sender;
136 - (IBAction)effects:(id)sender;
137
138
139 - (void)setRepeatOne;
140 - (void)setRepeatAll;
141 - (void)setRepeatOff;
142 - (IBAction)repeat:(id)sender;
143
144 - (void)setShuffle;
145 - (IBAction)shuffle:(id)sender;
146
147 - (void)toggleJumpButtons;
148 - (void)togglePlaymodeButtons;
149
150 - (void)updateVolumeSlider;
151 - (void)updateControls;
152 - (void)updatePosAndTimeInFSPanel:(VLCFSPanel *)o_fspanel;
153
154 @end
155