]> git.sesse.net Git - vlc/blob - modules/gui/macosx/ControlsBar.h
macosx/CAS: add MKV to the black list for HTTP streaming
[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     IBOutlet id o_fullscreen_btn;
53     IBOutlet id o_resize_view;
54
55     NSImage * o_pause_img;
56     NSImage * o_pause_pressed_img;
57     NSImage * o_play_img;
58     NSImage * o_play_pressed_img;
59
60     NSTimeInterval last_fwd_event;
61     NSTimeInterval last_bwd_event;
62     BOOL just_triggered_next;
63     BOOL just_triggered_previous;
64
65     BOOL b_nativeFullscreenMode;
66     BOOL b_dark_interface;
67
68 }
69
70 @property (readonly) id bottomBarView;
71
72 - (IBAction)play:(id)sender;
73 - (IBAction)bwd:(id)sender;
74 - (IBAction)fwd:(id)sender;
75
76 - (IBAction)timeSliderAction:(id)sender;
77 - (IBAction)fullscreen:(id)sender;
78
79
80 - (void)updateTimeSlider;
81 - (void)drawFancyGradientEffectForTimeSlider;
82 - (void)updateControls;
83 - (void)setPause;
84 - (void)setPlay;
85 - (void)setFullscreenState:(BOOL)b_fullscreen;
86
87 @end
88
89
90 /*****************************************************************************
91  * VLCMainWindowControlsBar
92  *
93  *  Holds all specific outlets, actions and code for the main window controls bar.
94  *****************************************************************************/
95
96 @interface VLCMainWindowControlsBar : VLCControlsBarCommon
97 {
98     IBOutlet id o_stop_btn;
99
100     IBOutlet id o_playlist_btn;
101     IBOutlet id o_repeat_btn;
102     IBOutlet id o_shuffle_btn;
103
104     IBOutlet id o_volume_sld;
105     IBOutlet id o_volume_track_view;
106     IBOutlet id o_volume_down_btn;
107     IBOutlet id o_volume_up_btn;
108
109     IBOutlet id o_effects_btn;
110
111     NSImage * o_repeat_img;
112     NSImage * o_repeat_pressed_img;
113     NSImage * o_repeat_all_img;
114     NSImage * o_repeat_all_pressed_img;
115     NSImage * o_repeat_one_img;
116     NSImage * o_repeat_one_pressed_img;
117     NSImage * o_shuffle_img;
118     NSImage * o_shuffle_pressed_img;
119     NSImage * o_shuffle_on_img;
120     NSImage * o_shuffle_on_pressed_img;
121
122     NSButton * o_prev_btn;
123     NSButton * o_next_btn;
124
125     BOOL b_show_jump_buttons;
126     BOOL b_show_playmode_buttons;
127 }
128
129 - (IBAction)stop:(id)sender;
130
131 - (IBAction)shuffle:(id)sender;
132 - (IBAction)volumeAction:(id)sender;
133 - (IBAction)effects:(id)sender;
134
135
136 - (void)setRepeatOne;
137 - (void)setRepeatAll;
138 - (void)setRepeatOff;
139 - (IBAction)repeat:(id)sender;
140
141 - (void)setShuffle;
142 - (IBAction)shuffle:(id)sender;
143
144 - (void)toggleJumpButtons;
145 - (void)togglePlaymodeButtons;
146
147 - (void)updateVolumeSlider;
148 - (void)updateControls;
149 - (void)updatePosAndTimeInFSPanel:(VLCFSPanel *)o_fspanel;
150
151 @end
152