]> git.sesse.net Git - vlc/blob - modules/gui/macosx/ConvertAndSave.h
macosx: added UI stub for a new Convert & Save panel (refs #5900)
[vlc] / modules / gui / macosx / ConvertAndSave.h
1 /*****************************************************************************
2  * ConvertAndSave.h: MacOS X interface module
3  *****************************************************************************
4  * Copyright (C) 2012 Felix Paul Kühne
5  * $Id$
6  *
7  * Authors: Felix Paul Kühne <fkuehne -at- videolan -dot- org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #import <Cocoa/Cocoa.h>
25
26 @interface VLCConvertAndSave : NSObject
27 {
28     IBOutlet id o_window;
29     IBOutlet id o_cancel_btn;
30     IBOutlet id o_ok_btn;
31
32     IBOutlet id o_drop_lbl;
33     IBOutlet id o_drop_image_view;
34     IBOutlet id o_drop_btn;
35
36     IBOutlet id o_profile_lbl;
37     IBOutlet id o_profile_pop;
38     IBOutlet id o_profile_btn;
39
40     IBOutlet id o_destination_lbl;
41     IBOutlet id o_destination_btn;
42     IBOutlet id o_destination_icon_view;
43     IBOutlet id o_destination_filename_lbl;
44     IBOutlet id o_destination_filename_stub_lbl;
45
46     IBOutlet id o_dropin_view;
47     IBOutlet id o_dropin_icon_view;
48     IBOutlet id o_dropin_media_lbl;
49 }
50 + (VLCConvertAndSave *)sharedInstance;
51
52 - (IBAction)toggleWindow;
53
54 - (IBAction)windowButtonAction:(id)sender;
55 - (IBAction)openMedia:(id)sender;
56 - (IBAction)profileSelection:(id)sender;
57 - (IBAction)customizeProfile:(id)sender;
58 - (IBAction)chooseDestination:(id)sender;
59
60 @end