]> git.sesse.net Git - vlc/blob - modules/gui/macosx/update.h
Disable update checking per default, re-enable with --enable-update-check
[vlc] / modules / gui / macosx / update.h
1 /*****************************************************************************
2  * update.h: MacOS X Check-For-Update window
3  *****************************************************************************
4  * Copyright (C) 2005-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Felix Kühne <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 #ifdef UPDATE_CHECK
25 #import <Cocoa/Cocoa.h>
26 #import <vlc_update.h>
27
28 @interface VLCUpdate : NSObject
29 {
30     IBOutlet id o_btn_DownloadNow;
31     IBOutlet id o_btn_okay;
32     IBOutlet id o_fld_releaseNote;
33     IBOutlet id o_fld_source;
34     IBOutlet id o_fld_currentVersionAndSize;
35     IBOutlet id o_fld_status;
36     IBOutlet id o_update_window;
37     IBOutlet id o_bar_checking;
38     IBOutlet id o_chk_updateOnStartup;
39
40     NSString * o_urlOfBinary;
41     update_t * p_u;
42     intf_thread_t * p_intf;
43 }
44
45 - (IBAction)download:(id)sender;
46 - (IBAction)okay:(id)sender;
47 - (IBAction)changeCheckUpdateOnStartup:(id)sender;
48
49 - (BOOL)shouldCheckForUpdate;
50
51 - (void)showUpdateWindow;
52 - (void)initInterface;
53 - (void)checkForUpdate;
54 - (void)performDownload:(NSString *)path;
55
56 + (VLCUpdate *)sharedInstance;
57
58 @end
59 #endif