]> git.sesse.net Git - vlc/blob - modules/gui/macosx/controls.h
macosx: copyright fixes
[vlc] / modules / gui / macosx / controls.h
1 /*****************************************************************************
2  * controls.h: MacOS X interface module
3  *****************************************************************************
4  * Copyright (C) 2002-2011 VLC authors and VideoLAN
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 Paul 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 /*****************************************************************************
28  * VLCControls interface
29  *****************************************************************************/
30 @interface VLCControls : NSObject
31 {
32     IBOutlet id o_main;
33
34     IBOutlet id o_specificTime_cancel_btn;
35     IBOutlet id o_specificTime_enter_fld;
36     IBOutlet id o_specificTime_goTo_lbl;
37     IBOutlet id o_specificTime_ok_btn;
38     IBOutlet id o_specificTime_win;
39     IBOutlet id o_specificTime_sec_lbl;
40     IBOutlet id o_specificTime_stepper;
41     IBOutlet id o_specificTime_mi;
42 }
43 - (IBAction)play:(id)sender;
44 - (IBAction)stop:(id)sender;
45
46 - (IBAction)prev:(id)sender;
47 - (IBAction)next:(id)sender;
48 - (IBAction)random:(id)sender;
49 - (IBAction)repeat:(id)sender;
50 - (IBAction)loop:(id)sender;
51 - (IBAction)quitAfterPlayback:(id)sender;
52
53 - (IBAction)forward:(id)sender;
54 - (IBAction)backward:(id)sender;
55
56 - (IBAction)volumeUp:(id)sender;
57 - (IBAction)volumeDown:(id)sender;
58 - (IBAction)mute:(id)sender;
59 - (IBAction)volumeSliderUpdated:(id)sender;
60
61 - (IBAction)showPosition: (id)sender;
62
63 - (IBAction)telxTransparent:(id)sender;
64 - (IBAction)telxNavLink:(id)sender;
65 - (IBAction)lockVideosAspectRatio:(id)sender;
66 - (IBAction)addSubtitleFile:(id)sender;
67
68 - (BOOL)keyEvent:(NSEvent *)o_event;
69 - (void)scrollWheel: (NSEvent *)theEvent;
70
71 - (IBAction)goToSpecificTime:(id)sender;
72 @end
73