]> git.sesse.net Git - vlc/blob - modules/gui/macosx/about.h
Make the playlist info window a new object
[vlc] / modules / gui / macosx / about.h
1 /*****************************************************************************
2  * about.h: MacOS X About Panel
3  *****************************************************************************
4  * Copyright (C) 2001-2003 VideoLAN
5  * $Id$
6  *
7  * Authors: Derk-Jan Hartman <thedj@users.sourceforge.net>
8  * 
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  * 
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * VLAboutBox interface 
26  *****************************************************************************/
27 @interface VLAboutBox : NSObject
28 {
29     IBOutlet id o_about_window;
30     IBOutlet id o_name_version_field;
31     IBOutlet id o_copyright_field;
32     IBOutlet id o_credits_textview;
33     IBOutlet id o_credits_scrollview;
34     
35     NSTimer *o_scroll_timer;
36     float f_current;
37     float f_end;
38     NSTimeInterval i_start;
39     BOOL b_restart;
40     
41     NSString *o_credits_path;
42     NSString *o_credits;
43     NSString *o_thanks;
44     NSString *o_name_version;
45     NSString *o_copyright;
46     NSDictionary *o_info_dict;
47     CFBundleRef localInfoBundle;
48     NSDictionary *o_local_dict;
49 }
50
51 + (VLAboutBox *)sharedInstance;
52 - (IBAction)showPanel:(id)sender;
53
54 @end