]> git.sesse.net Git - vlc/blob - modules/gui/macosx/misc.h
6855c056156c4d85df94342c494684cbd204ed89
[vlc] / modules / gui / macosx / misc.h
1 /*****************************************************************************
2  * misc.h: code not specific to vlc
3  *****************************************************************************
4  * Copyright (C) 2003-2012 VLC authors and VideoLAN
5  * $Id$
6  *
7  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
8  *          Felix Paul Kühne <fkuehne at videolan dot org>
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 /*****************************************************************************
29  * NSSound (VLCAdditions)
30  *
31  * added code to change the system volume, needed for the apple remote code
32  * this is simplified code, which won't let you set the exact volume
33  * (that's what the audio output is for after all), but just the system volume
34  * in steps of 1/16 (matching the default AR or volume key implementation).
35  *****************************************************************************/
36
37 @interface NSSound (VLCAdditions)
38 + (float)systemVolumeForChannel:(int)channel;
39 + (bool)setSystemVolume:(float)volume forChannel:(int)channel;
40 + (void)increaseSystemVolume;
41 + (void)decreaseSystemVolume;
42 @end
43
44 /*****************************************************************************
45  * NSAnimation (VLCAddition)
46  *****************************************************************************/
47
48 @interface NSAnimation (VLCAdditions)
49 @property (readwrite) void * userInfo;
50
51 @end
52
53 /*****************************************************************************
54  * NSScreen (VLCAdditions)
55  *
56  *  Missing extension to NSScreen
57  *****************************************************************************/
58
59 @interface NSScreen (VLCAdditions)
60
61 + (NSScreen *)screenWithDisplayID: (CGDirectDisplayID)displayID;
62 - (BOOL)hasMenuBar;
63 - (BOOL)hasDock;
64 - (BOOL)isScreen: (NSScreen*)screen;
65 - (CGDirectDisplayID)displayID;
66 - (void)blackoutOtherScreens;
67 + (void)unblackoutScreens;
68
69 - (void)setFullscreenPresentationOptions;
70 - (void)setNonFullscreenPresentationOptions;
71 @end
72
73
74 /*****************************************************************************
75  * VLBrushedMetalImageView
76  *****************************************************************************/
77
78 @interface VLBrushedMetalImageView : NSImageView
79
80 @end
81
82
83 /*****************************************************************************
84  * MPSlider
85  *****************************************************************************/
86
87 @interface MPSlider : NSSlider
88
89 @end
90
91 /*****************************************************************************
92  * ProgressView
93  *****************************************************************************/
94
95 @interface VLCProgressView : NSView
96
97 - (void)scrollWheel:(NSEvent *)o_event;
98
99 @end
100
101
102 /*****************************************************************************
103  * TimeLineSlider
104  *****************************************************************************/
105
106 @interface TimeLineSlider : NSSlider
107 {
108     NSImage *o_knob_img;
109     NSRect img_rect;
110     BOOL b_dark;
111 }
112 @property (readonly) CGFloat knobPosition;
113
114 - (void)drawRect:(NSRect)rect;
115 - (void)drawKnobInRect:(NSRect)knobRect;
116
117 @end
118
119 /*****************************************************************************
120  * VLCVolumeSliderCommon
121  *****************************************************************************/
122
123 @interface VLCVolumeSliderCommon : NSSlider
124
125 - (void)scrollWheel:(NSEvent *)o_event;
126
127 @end
128
129 /*****************************************************************************
130  * ITSlider
131  *****************************************************************************/
132
133 @interface ITSlider : VLCVolumeSliderCommon
134 {
135     NSImage *img;
136     NSRect image_rect;
137 }
138
139 - (void)drawRect:(NSRect)rect;
140 - (void)drawKnobInRect:(NSRect)knobRect;
141
142 @end
143
144 /*****************************************************************************
145  * VLCTimeField interface
146  *****************************************************************************
147  * we need the implementation to catch our click-event in the controller window
148  *****************************************************************************/
149
150 @interface VLCTimeField : NSTextField
151 {
152     NSShadow * o_string_shadow;
153     NSTextAlignment textAlignment;
154
155     NSString *o_remaining_identifier;
156     BOOL b_time_remaining;
157 }
158 @property (readonly) BOOL timeRemaining;
159
160 -(id)initWithFrame:(NSRect)frameRect;
161
162 - (void)setRemainingIdentifier:(NSString *)o_string;
163
164 @end
165
166 /*****************************************************************************
167  * VLCMainWindowSplitView interface
168  *****************************************************************************/
169 @interface VLCMainWindowSplitView : NSSplitView
170
171 @end
172
173 /*****************************************************************************
174  * VLCThreePartImageView interface
175  *****************************************************************************/
176 @interface VLCThreePartImageView : NSView
177 {
178     NSImage * o_left_img;
179     NSImage * o_middle_img;
180     NSImage * o_right_img;
181 }
182
183 - (void)setImagesLeft:(NSImage *)left middle: (NSImage *)middle right:(NSImage *)right;
184 @end
185
186 /*****************************************************************************
187  * VLCThreePartDropView interface
188  *****************************************************************************/
189 @interface VLCThreePartDropView : VLCThreePartImageView
190
191 @end