]> git.sesse.net Git - vlc/blob - modules/gui/macosx/update.h
Implemented the retrieval of the versions, files and mirrors. Both the size and the...
[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_releaseNote;
36     IBOutlet id o_fld_remTime;
37     IBOutlet id o_fld_size;
38     IBOutlet id o_fld_source;
39     IBOutlet id o_fld_userVersion;
40     IBOutlet id o_lbl_currentVersion;
41     IBOutlet id o_lbl_mirror;
42     IBOutlet id o_lbl_size;
43     IBOutlet id o_lbl_userVersion;
44     IBOutlet id o_pop_mirror;
45     IBOutlet id o_progress_window;
46     IBOutlet id o_update_window;
47     IBOutlet id o_bar_checking;
48     IBOutlet id o_lbl_checkForUpdate;
49     
50     NSMutableArray * o_mirrors;
51     NSMutableDictionary * o_files;
52 }
53
54
55 - (IBAction)cancel:(id)sender;
56 - (IBAction)download:(id)sender;
57 - (IBAction)okay:(id)sender;
58
59 - (void)showUpdateWindow;
60 - (void)initStrings;
61 - (void)getData;
62
63 + (VLCUpdate *)sharedInstance;
64
65 @end