00001 /***************************************************************************** 00002 * about.h: MacOS X About Panel 00003 ***************************************************************************** 00004 * Copyright (C) 2001-2005 the VideoLAN team 00005 * $Id: about.h 12527 2005-09-12 19:11:43Z fkuehne $ 00006 * 00007 * Authors: Derk-Jan Hartman <[email protected]> 00008 * 00009 * This program is free software; you can redistribute it and/or modify 00010 * it under the terms of the GNU General Public License as published by 00011 * the Free Software Foundation; either version 2 of the License, or 00012 * (at your option) any later version. 00013 * 00014 * This program is distributed in the hope that it will be useful, 00015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 * GNU General Public License for more details. 00018 * 00019 * You should have received a copy of the GNU General Public License 00020 * along with this program; if not, write to the Free Software 00021 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 00022 *****************************************************************************/ 00023 00024 /***************************************************************************** 00025 * VLAboutBox interface 00026 *****************************************************************************/ 00027 @interface VLAboutBox : NSObject 00028 { 00029 IBOutlet id o_about_window; 00030 IBOutlet id o_name_version_field; 00031 IBOutlet id o_revision_field; 00032 IBOutlet id o_copyright_field; 00033 IBOutlet id o_credits_textview; 00034 IBOutlet id o_credits_scrollview; 00035 00036 NSTimer *o_scroll_timer; 00037 float f_current; 00038 float f_end; 00039 NSTimeInterval i_start; 00040 BOOL b_restart; 00041 00042 NSString *o_credits_path; 00043 NSString *o_credits; 00044 NSString *o_thanks; 00045 NSString *o_name_version; 00046 NSString *o_copyright; 00047 NSDictionary *o_info_dict; 00048 CFBundleRef localInfoBundle; 00049 NSDictionary *o_local_dict; 00050 } 00051 00052 + (VLAboutBox *)sharedInstance; 00053 - (void)showPanel; 00054 00055 @end