]> git.sesse.net Git - vlc/blob - modules/gui/macosx/about.m
a6b42bc9edddb83c949cbdb4b4f567ef2fb835b8
[vlc] / modules / gui / macosx / about.m
1 /*****************************************************************************
2  * about.m: MacOS X About Panel
3  *****************************************************************************
4  * Copyright (C) 2001-2007 the VideoLAN team
5  * $Id$
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
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #import "intf.h"
29 #import "about.h"
30 #import <vlc_intf_strings.h>
31 #import <vlc_about.h>
32
33 #ifdef __x86_64__
34 #define PLATFORM "Intel"
35 #elif __i386__
36 #define PLATFORM "Intel"
37 #else
38 #define PLATFORM "PowerPC"
39 #endif
40
41 /*****************************************************************************
42  * VLAboutBox implementation
43  *****************************************************************************/
44 @implementation VLAboutBox
45
46 static VLAboutBox *_o_sharedInstance = nil;
47
48 + (VLAboutBox *)sharedInstance
49 {
50     return _o_sharedInstance ? _o_sharedInstance : [[self alloc] init];
51 }
52
53 - (id)init
54 {
55     if (_o_sharedInstance) {
56         [self dealloc];
57     } else {
58         _o_sharedInstance = [super init];
59     }
60  
61     return _o_sharedInstance;
62 }
63
64 /*****************************************************************************
65 * VLC About Window
66 *****************************************************************************/
67
68 - (void)showAbout
69 {
70     if(! b_isSetUp )
71     {
72         /* we want to know when VLC wants to quit to prevent a crash while scrolling our credits */
73         [[NSNotificationCenter defaultCenter] addObserver: self
74                                                  selector: @selector(VLCWillTerminate)
75                                                      name: NSApplicationWillTerminateNotification
76                                                    object: nil];
77         
78         /* Get the localized info dictionary (InfoPlist.strings) */
79         NSDictionary *o_local_dict;
80         o_local_dict = [[NSBundle mainBundle] localizedInfoDictionary];
81
82         /* Setup the copyright field */
83         [o_copyright_field setStringValue: [o_local_dict objectForKey:@"NSHumanReadableCopyright"]];
84
85         /* Set the box title */
86         [o_about_window setTitle: _NS("About VLC media player")];
87
88         /* setup the creator / revision field */
89         [o_revision_field setStringValue: 
90             [NSString stringWithFormat: _NS("Compiled by %s"), VLC_CompileBy()]];
91  
92         /* Setup the nameversion field */
93         [o_name_version_field setStringValue: [NSString stringWithFormat:@"Version %s (%s)", VLC_Version(), PLATFORM]];
94
95         /* setup the authors and thanks field */
96         [o_credits_textview setString: [NSString stringWithFormat: @"%@\n\n\n\n%@\n%@\n\n%@", 
97                                             _NS(INTF_ABOUT_MSG), 
98                                             _NS("VLC was brought to you by:"),
99                                             [NSString stringWithUTF8String: psz_authors], 
100                                             [NSString stringWithUTF8String: psz_thanks]]];
101
102         /* Setup the window */
103         [o_credits_textview setDrawsBackground: NO];
104         [o_credits_scrollview setDrawsBackground: NO];
105         [o_about_window setExcludedFromWindowsMenu:YES];
106         [o_about_window setMenu:nil];
107         [o_about_window center];
108         [o_gpl_btn setTitle: _NS("License")];
109         
110         b_isSetUp = YES;
111     }
112  
113     /* Show the window */
114     b_restart = YES;
115     [o_about_window makeKeyAndOrderFront: nil];
116 }
117
118 - (void)windowDidBecomeKey:(NSNotification *)notification
119 {
120     o_scroll_timer = [NSTimer scheduledTimerWithTimeInterval: 1/6
121                                                       target:self
122                                                     selector:@selector(scrollCredits:)
123                                                     userInfo:nil
124                                                      repeats:YES];
125 }
126
127 - (void)windowDidResignKey:(NSNotification *)notification
128 {
129     [o_scroll_timer invalidate];
130 }
131
132 - (void)scrollCredits:(NSTimer *)timer
133 {
134     if( b_restart )
135     {
136         /* Reset the starttime */
137         i_start = [NSDate timeIntervalSinceReferenceDate] + 3.0;
138         f_current = 0;
139         f_end = [o_credits_textview bounds].size.height - [o_credits_scrollview bounds].size.height;
140         b_restart = NO;
141     }
142
143     if( [NSDate timeIntervalSinceReferenceDate] >= i_start )
144     {
145         /* Scroll to the position */
146         [o_credits_textview scrollPoint:NSMakePoint( 0, f_current )];
147  
148         /* Increment the scroll position */
149         f_current += 0.005;
150  
151         /* If at end, restart at the top */
152         if( f_current >= f_end )
153         {
154             b_restart = YES;
155         }
156     }
157 }
158
159 - (void)VLCWillTerminate
160 {
161     [o_scroll_timer invalidate];
162     [[NSNotificationCenter defaultCenter] removeObserver: self];
163 }
164
165 /*****************************************************************************
166 * VLC GPL Window, action called from the about window and the help menu
167 *****************************************************************************/
168
169 - (IBAction)showGPL:(id)sender
170 {
171     [o_gpl_window setTitle: _NS("License")];
172     [o_gpl_field setString: [NSString stringWithUTF8String: psz_license]];
173     
174     [o_gpl_window center];
175     [o_gpl_window makeKeyAndOrderFront: sender];
176 }
177
178 /*****************************************************************************
179 * VLC Generic Help Window
180 *****************************************************************************/
181
182 - (void)showHelp
183 {
184     [o_help_window setTitle: _NS("VLC media player Help")];
185     [o_help_fwd_btn setToolTip: _NS("Next")];
186     [o_help_bwd_btn setToolTip: _NS("Previous")];
187     [o_help_home_btn setToolTip: _NS("Index")];
188
189     [o_help_window makeKeyAndOrderFront: self];
190     
191     [[o_help_web_view mainFrame] loadHTMLString: _NS(I_LONGHELP)
192                                         baseURL: [NSURL URLWithString:@"http://videolan.org"]];
193 }
194
195 - (IBAction)helpGoHome:(id)sender
196 {
197     [[o_help_web_view mainFrame] loadHTMLString: _NS(I_LONGHELP)
198                                         baseURL: [NSURL URLWithString:@"http://videolan.org"]];
199 }
200
201 - (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
202 {
203     /* delegate to update button states (we're the frameLoadDelegate for our help's webview)« */
204     [o_help_fwd_btn setEnabled: [o_help_web_view canGoForward]]; 
205     [o_help_bwd_btn setEnabled: [o_help_web_view canGoBack]];
206 }
207
208 @end