update.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:2k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * update.h: MacOS X Check-For-Update window
  3.  *****************************************************************************
  4.  * Copyright (C) 2005-2009 the VideoLAN team
  5.  * $Id: 046ab55420c6c6174e7fe22a425d57313f6ea7b4 $
  6.  *
  7.  * Authors: Felix Kühne <fkuehne@users.sf.net>
  8.  *          Rafaël Carré <funman@videolanorg>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. #ifdef HAVE_CONFIG_H
  25. #   include "config.h"
  26. #endif
  27. #ifdef UPDATE_CHECK
  28. #import <Cocoa/Cocoa.h>
  29. #import "intf.h"
  30. #import <vlc_update.h>
  31. @interface VLCUpdate : NSObject
  32. {
  33.     IBOutlet id o_btn_DownloadNow;
  34.     IBOutlet id o_btn_okay;
  35.     IBOutlet id o_fld_releaseNote;
  36.     IBOutlet id o_fld_currentVersion;
  37.     IBOutlet id o_fld_status;
  38.     IBOutlet id o_update_window;
  39.     IBOutlet id o_bar_checking;
  40.     IBOutlet id o_chk_updateOnStartup;
  41.     update_t * p_update;
  42.     bool b_checked;
  43. }
  44. - (IBAction)download:(id)sender;
  45. - (IBAction)okay:(id)sender;
  46. - (IBAction)changeCheckUpdateOnStartup:(id)sender;
  47. - (BOOL)shouldCheckForUpdate;
  48. - (void)showUpdateWindow;
  49. - (void)checkForUpdate;
  50. - (void)performDownload:(NSString *)path;
  51. + (VLCUpdate *)sharedInstance;
  52. @end
  53. #endif