]> git.sesse.net Git - vlc/blob - modules/gui/macosx/update.h
ab47b2bb059f8e309fe69c8a7de127373ac715f7
[vlc] / modules / gui / macosx / update.h
1 /*****************************************************************************
2  * update.h: MacOS X Check-For-Update window
3  *****************************************************************************
4  * Copyright (C) 2005-2006 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 #import <vlc_update.h>
26
27 @interface VLCUpdate : NSObject
28 {
29     IBOutlet id o_btn_DownloadNow;
30     IBOutlet id o_btn_okay;
31     IBOutlet id o_fld_releaseNote;
32     IBOutlet id o_fld_source;
33     IBOutlet id o_fld_currentVersionAndSize;
34     IBOutlet id o_fld_status;
35     IBOutlet id o_update_window;
36     IBOutlet id o_bar_checking;
37
38     NSString * o_hashOfOurBinary;
39     NSString * o_urlOfBinary;
40     update_t * p_u;
41     intf_thread_t * p_intf;
42 }
43
44 - (IBAction)download:(id)sender;
45 - (IBAction)okay:(id)sender;
46
47 - (void)showUpdateWindow;
48 - (void)initStrings;
49 - (void)checkForUpdate;
50 - (void)performDownload:(NSString *)path;
51
52 + (VLCUpdate *)sharedInstance;
53
54 @end