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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * about.h: MacOS X About Panel
  3.  *****************************************************************************
  4.  * Copyright (C) 2001-2007 the VideoLAN team
  5.  * $Id: b04355f7eda1742f9053111e6708c9a12e0bfc63 $
  6.  *
  7.  * Authors: Derk-Jan Hartman <thedj@users.sourceforge.net>
  8.  *          Felix Paul Kühne <fkuehne -at- videolan.org>
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #import <WebKit/WebKit.h> //we need to be here, because we're using a WebView object below
  25. /*****************************************************************************
  26.  * VLAboutBox interface
  27.  *****************************************************************************/
  28. @interface VLAboutBox : NSObject
  29. {
  30.     /* main about panel and stuff related to its views */
  31.     IBOutlet id o_about_window;
  32.     IBOutlet id o_name_version_field;
  33.     IBOutlet id o_revision_field;
  34.     IBOutlet id o_copyright_field;
  35.     IBOutlet id o_credits_textview;
  36.     IBOutlet id o_credits_scrollview;
  37.     IBOutlet id o_gpl_btn;
  38.     IBOutlet id o_name_field;
  39.     NSTimer *o_scroll_timer;
  40.     float f_current;
  41.     float f_end;
  42.     NSTimeInterval i_start;
  43.     BOOL b_restart;
  44.     BOOL b_isSetUp;
  45.     
  46.     /* generic help window */
  47.     IBOutlet id o_help_window;
  48.     IBOutlet WebView *o_help_web_view; //we may _not_ use id here because of method name collisions
  49.     IBOutlet id o_help_bwd_btn;
  50.     IBOutlet id o_help_fwd_btn;
  51.     IBOutlet id o_help_home_btn;
  52.     /* licence window */
  53.     IBOutlet id o_gpl_window;
  54.     IBOutlet id o_gpl_field;
  55. }
  56. + (VLAboutBox *)sharedInstance;
  57. - (void)showAbout;
  58. - (void)VLCWillTerminate;
  59. - (void)showHelp;
  60. - (IBAction)showGPL:(id)sender;
  61. - (IBAction)helpGoHome:(id)sender;
  62. @end