]> git.sesse.net Git - vlc/blob - modules/gui/macosx/update.h
* finally use the iTunes volumeslider knob that we have had since 0.7.0 but which...
[vlc] / modules / gui / macosx / update.h
1 /*****************************************************************************
2  * update.h: MacOS X Check-For-Update window
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Felix K\9fhne <fkuehne@users.sf.net>
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #import <Cocoa/Cocoa.h>
25
26 @interface VLCUpdate : NSObject
27 {
28     IBOutlet id o_bar_progress;
29     IBOutlet id o_btn_cancel;
30     IBOutlet id o_btn_DownloadNow;
31     IBOutlet id o_btn_okay;
32     IBOutlet id o_fld_currentVersion;
33     IBOutlet id o_fld_dest;
34     IBOutlet id o_fld_elpTime;
35     IBOutlet id o_fld_releasedOn;
36     IBOutlet id o_fld_releaseNote;
37     IBOutlet id o_fld_remTime;
38     IBOutlet id o_fld_size;
39     IBOutlet id o_fld_source;
40     IBOutlet id o_fld_userVersion;
41     IBOutlet id o_lbl_currentVersion;
42     IBOutlet id o_lbl_mirror;
43     IBOutlet id o_lbl_releasedOn;
44     IBOutlet id o_lbl_size;
45     IBOutlet id o_lbl_userVersion;
46     IBOutlet id o_pop_mirror;
47     IBOutlet id o_progress_window;
48     IBOutlet id o_update_window;
49     IBOutlet id o_bar_checking;
50     IBOutlet id o_lbl_checkForUpdate;
51 }
52
53
54 - (IBAction)cancel:(id)sender;
55 - (IBAction)download:(id)sender;
56 - (IBAction)okay:(id)sender;
57
58 - (void)showUpdateWindow;
59 - (void)initStrings;
60
61 + (VLCUpdate *)sharedInstance;
62
63 @end