]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/update.h
Don't crash when using libgmalloc on Leopard (closes #1501)
[vlc] / modules / gui / macosx / update.h
index 2fc6eb09012718f97c41ec02875996d20d4fcf4c..d3786295e40c4d97a298a3460962618c83a9bd58 100644 (file)
@@ -1,10 +1,11 @@
 /*****************************************************************************
  * update.h: MacOS X Check-For-Update window
  *****************************************************************************
- * Copyright (C) 2005 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
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  *****************************************************************************/
 
+#ifdef HAVE_CONFIG_H
+#   include "config.h"
+#endif
+
+#ifdef UPDATE_CHECK
 #import <Cocoa/Cocoa.h>
+#import "intf.h"
+#import <vlc_update.h>
+
 
 @interface VLCUpdate : NSObject
 {
-    IBOutlet id o_bar_progress;
-    IBOutlet id o_btn_cancel;
     IBOutlet id o_btn_DownloadNow;
     IBOutlet id o_btn_okay;
-    IBOutlet id o_fld_currentVersion;
-    IBOutlet id o_fld_dest;
-    IBOutlet id o_fld_elpTime;
     IBOutlet id o_fld_releaseNote;
-    IBOutlet id o_fld_remTime;
-    IBOutlet id o_fld_size;
-    IBOutlet id o_fld_source;
-    IBOutlet id o_fld_userVersion;
-    IBOutlet id o_lbl_currentVersion;
-    IBOutlet id o_lbl_mirror;
-    IBOutlet id o_lbl_size;
-    IBOutlet id o_lbl_userVersion;
-    IBOutlet id o_pop_mirror;
-    IBOutlet id o_progress_window;
+    IBOutlet id o_fld_currentVersion;
+    IBOutlet id o_fld_status;
     IBOutlet id o_update_window;
     IBOutlet id o_bar_checking;
-    IBOutlet id o_lbl_checkForUpdate;
-    
-    NSMutableArray * o_mirrors;
-    NSMutableDictionary * o_files;
-}
+    IBOutlet id o_chk_updateOnStartup;
 
+    update_t * p_u;
+    vlc_bool_t b_checked;
+}
 
-- (IBAction)cancel:(id)sender;
 - (IBAction)download:(id)sender;
 - (IBAction)okay:(id)sender;
+- (IBAction)changeCheckUpdateOnStartup:(id)sender;
+
+- (BOOL)shouldCheckForUpdate;
 
 - (void)showUpdateWindow;
-- (void)initStrings;
-- (void)getData;
+- (void)checkForUpdate;
+- (void)setUpToDate: (BOOL)uptodate;
+- (void)performDownload:(NSString *)path;
 
 + (VLCUpdate *)sharedInstance;
 
 @end
+#endif