]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/update.h
* coding style fixes (please don't do [NSString string], but use an empty constant...
[vlc] / modules / gui / macosx / update.h
index ab47b2bb059f8e309fe69c8a7de127373ac715f7..b3cf1654a60e39b4d449597accea872e8a086567 100644 (file)
@@ -1,10 +1,11 @@
 /*****************************************************************************
  * update.h: MacOS X Check-For-Update window
  *****************************************************************************
- * Copyright (C) 2005-2006 the VideoLAN team
+ * Copyright © 2005-2008 the VideoLAN team
  * $Id$
  *
- * Authors: Felix K\9fhne <fkuehne@users.sf.net>
+ * Authors: Felix Kühne <fkuehne@users.sf.net>
+ *          Rafaël Carré <funman@videolanorg>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -21,7 +22,9 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  *****************************************************************************/
 
+#ifdef UPDATE_CHECK
 #import <Cocoa/Cocoa.h>
+#import "intf.h"
 #import <vlc_update.h>
 
 @interface VLCUpdate : NSObject
     IBOutlet id o_btn_DownloadNow;
     IBOutlet id o_btn_okay;
     IBOutlet id o_fld_releaseNote;
-    IBOutlet id o_fld_source;
-    IBOutlet id o_fld_currentVersionAndSize;
+    IBOutlet id o_fld_currentVersion;
     IBOutlet id o_fld_status;
     IBOutlet id o_update_window;
     IBOutlet id o_bar_checking;
+    IBOutlet id o_chk_updateOnStartup;
 
-    NSString * o_hashOfOurBinary;
-    NSString * o_urlOfBinary;
     update_t * p_u;
-    intf_thread_t * p_intf;
+    vlc_bool_t b_checked;
 }
 
 - (IBAction)download:(id)sender;
 - (IBAction)okay:(id)sender;
+- (IBAction)changeCheckUpdateOnStartup:(id)sender;
+
+- (BOOL)shouldCheckForUpdate;
 
 - (void)showUpdateWindow;
-- (void)initStrings;
 - (void)checkForUpdate;
+- (void)setUpToDate: (BOOL)uptodate;
 - (void)performDownload:(NSString *)path;
 
 + (VLCUpdate *)sharedInstance;
 
 @end
+#endif