Commit 5ea28c6c authored by Felix Paul Kühne's avatar Felix Paul Kühne

* display the GPL in a separate window linked in the About window and the Help...

* display the GPL in a separate window linked in the About window and the Help menu. Code cleanup (faster and less memory consuming).
parent 5f5fe279
......@@ -3,6 +3,7 @@
{CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
{CLASS = MPSlider; LANGUAGE = ObjC; SUPERCLASS = NSSlider; },
{
ACTIONS = {showGPL = id; };
CLASS = VLAboutBox;
LANGUAGE = ObjC;
OUTLETS = {
......@@ -10,8 +11,12 @@
"o_copyright_field" = id;
"o_credits_scrollview" = id;
"o_credits_textview" = id;
"o_gpl_btn" = id;
"o_gpl_field" = id;
"o_gpl_window" = id;
"o_help_web_view" = id;
"o_help_window" = id;
"o_name_field" = id;
"o_name_version_field" = id;
"o_revision_field" = id;
};
......
......@@ -10,10 +10,11 @@
<array/>
<key>IBOpenObjects</key>
<array>
<integer>1345</integer>
<integer>2239</integer>
<integer>1345</integer>
<integer>2245</integer>
</array>
<key>IBSystem Version</key>
<string>8R3032</string>
<string>8S2167</string>
</dict>
</plist>
......@@ -206,6 +206,7 @@
openWebsite = id;
showBookmarks = id;
showExtended = id;
showLicense = id;
showMessagesPanel = id;
showSFilters = id;
showWizard = id;
......@@ -234,6 +235,7 @@
"o_dmi_stop" = id;
"o_embedded_window" = id;
"o_info" = id;
"o_license_mi" = id;
"o_main_pgbar" = id;
"o_messages" = id;
"o_mi_about" = id;
......
......@@ -26,11 +26,11 @@
<key>IBOpenObjects</key>
<array>
<integer>21</integer>
<integer>2416</integer>
<integer>2769</integer>
<integer>2730</integer>
<integer>1789</integer>
<integer>2416</integer>
<integer>29</integer>
<integer>1789</integer>
<integer>2730</integer>
</array>
<key>IBSystem Version</key>
<string>8S2167</string>
......
/*****************************************************************************
* about.h: MacOS X About Panel
*****************************************************************************
* Copyright (C) 2001-2005 the VideoLAN team
* Copyright (C) 2001-2007 the VideoLAN team
* $Id$
*
* Authors: Derk-Jan Hartman <thedj@users.sourceforge.net>
* Felix Paul Khne <fkuehne -at- videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
......@@ -33,28 +34,28 @@
IBOutlet id o_copyright_field;
IBOutlet id o_credits_textview;
IBOutlet id o_credits_scrollview;
IBOutlet id o_gpl_btn;
IBOutlet id o_name_field;
NSTimer *o_scroll_timer;
float f_current;
float f_end;
NSTimeInterval i_start;
BOOL b_restart;
BOOL b_isSetUp;
NSString *o_credits_path;
NSString *o_credits;
NSString *o_thanks;
NSString *o_copyright;
NSDictionary *o_info_dict;
CFBundleRef localInfoBundle;
NSDictionary *o_local_dict;
/* generic help window */
IBOutlet id o_help_window;
IBOutlet id o_help_web_view;
/* licence window */
IBOutlet id o_gpl_window;
IBOutlet id o_gpl_field;
}
+ (VLAboutBox *)sharedInstance;
- (void)showAbout;
- (void)showHelp;
- (IBAction)showGPL:(id)sender;
@end
......@@ -5,6 +5,7 @@
* $Id$
*
* Authors: Derk-Jan Hartman <thedj@users.sourceforge.net>
* Felix Paul Khne <fkuehne -at- videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
......@@ -67,21 +68,15 @@ static VLAboutBox *_o_sharedInstance = nil;
- (void)showAbout
{
if (!o_credits_path)
if(! b_isSetUp )
{
NSString *o_name;
NSString *o_version;
NSDictionary *o_local_dict;
/* Get the info dictionary (Info.plist) */
o_info_dict = [[NSBundle mainBundle] infoDictionary];
/* Get the localized info dictionary (InfoPlist.strings) */
localInfoBundle = CFBundleGetMainBundle();
o_local_dict = (NSDictionary *)
CFBundleGetLocalInfoDictionary( localInfoBundle );
o_local_dict = [[NSBundle mainBundle] localizedInfoDictionary];
/* Setup the name field */
o_name = [o_local_dict objectForKey:@"CFBundleName"];
o_name_field = [o_local_dict objectForKey:@"CFBundleName"];
/* Set the about box title */
[o_about_window setTitle:_NS("About VLC media player")];
......@@ -106,8 +101,7 @@ static VLAboutBox *_o_sharedInstance = nil;
[NSString stringWithUTF8String: psz_thanks]]];
/* Setup the copyright field */
o_copyright = [o_local_dict objectForKey:@"NSHumanReadableCopyright"];
[o_copyright_field setStringValue:o_copyright];
[o_copyright_field setStringValue: [o_local_dict objectForKey:@"NSHumanReadableCopyright"]];
/* Setup the window */
[o_credits_textview setDrawsBackground: NO];
......@@ -115,20 +109,23 @@ static VLAboutBox *_o_sharedInstance = nil;
[o_about_window setExcludedFromWindowsMenu:YES];
[o_about_window setMenu:nil];
[o_about_window center];
[o_gpl_btn setTitle: _NS("License")];
b_isSetUp = YES;
}
/* Show the window */
b_restart = YES;
[o_about_window makeKeyAndOrderFront:nil];
[o_about_window makeKeyAndOrderFront: nil];
}
- (void)windowDidBecomeKey:(NSNotification *)notification
{
o_scroll_timer = [NSTimer scheduledTimerWithTimeInterval:1/6
target:self
selector:@selector(scrollCredits:)
userInfo:nil
repeats:YES];
o_scroll_timer = [NSTimer scheduledTimerWithTimeInterval: 1/6
target:self
selector:@selector(scrollCredits:)
userInfo:nil
repeats:YES];
}
- (void)windowDidResignKey:(NSNotification *)notification
......@@ -138,7 +135,7 @@ static VLAboutBox *_o_sharedInstance = nil;
- (void)scrollCredits:(NSTimer *)timer
{
if (b_restart)
if( b_restart )
{
/* Reset the starttime */
i_start = [NSDate timeIntervalSinceReferenceDate] + 3.0;
......@@ -147,7 +144,7 @@ static VLAboutBox *_o_sharedInstance = nil;
b_restart = NO;
}
if ([NSDate timeIntervalSinceReferenceDate] >= i_start)
if( [NSDate timeIntervalSinceReferenceDate] >= i_start )
{
/* Scroll to the position */
[o_credits_textview scrollPoint:NSMakePoint( 0, f_current )];
......@@ -156,13 +153,26 @@ static VLAboutBox *_o_sharedInstance = nil;
f_current += 0.005;
/* If at end, restart at the top */
if ( f_current >= f_end )
if( f_current >= f_end )
{
b_restart = YES;
}
}
}
/*****************************************************************************
* VLC GPL Window, action called from the about window and the help menu
*****************************************************************************/
- (IBAction)showGPL:(id)sender
{
[o_gpl_window setTitle: _NS("License")];
[o_gpl_field setString: [NSString stringWithUTF8String: psz_license]];
[o_gpl_window center];
[o_gpl_window makeKeyAndOrderFront: sender];
}
/*****************************************************************************
* VLC Generic Help Window
*****************************************************************************/
......
......@@ -256,6 +256,7 @@ struct intf_sys_t
IBOutlet id o_mi_help;
IBOutlet id o_mi_readme;
IBOutlet id o_mi_documentation;
IBOutlet id o_mi_license;
IBOutlet id o_mi_website;
IBOutlet id o_mi_donation;
IBOutlet id o_mi_forum;
......@@ -346,6 +347,7 @@ struct intf_sys_t
- (IBAction)showSFilters:(id)sender;
- (IBAction)viewAbout:(id)sender;
- (IBAction)showLicense:(id)sender;
- (IBAction)viewPreferences:(id)sender;
- (IBAction)checkForUpdate:(id)sender;
- (IBAction)viewHelp:(id)sender;
......
......@@ -669,6 +669,7 @@ static VLCMain *_o_sharedMainInstance = nil;
[o_mu_help setTitle: _NS("Help")];
[o_mi_help setTitle: _NS("VLC media player Help...")];
[o_mi_readme setTitle: _NS("ReadMe / FAQ...")];
[o_mi_license setTitle: _NS("License")];
[o_mi_documentation setTitle: _NS("Online Documentation...")];
[o_mi_website setTitle: _NS("VideoLAN Website...")];
[o_mi_donation setTitle: _NS("Make a donation...")];
......@@ -1878,25 +1879,27 @@ static VLCMain *_o_sharedMainInstance = nil;
}
if ( !nib_bookmarks_loaded )
{
nib_bookmarks_loaded = [NSBundle loadNibNamed:@"Bookmarks" owner:self];
[o_bookmarks showBookmarks];
} else {
[o_bookmarks showBookmarks];
}
[o_bookmarks showBookmarks];
}
- (IBAction)viewAbout:(id)sender
{
if( !nib_about_loaded )
{
nib_about_loaded = [NSBundle loadNibNamed:@"About" owner:self];
[o_about showAbout];
} else {
[o_about showAbout];
}
[o_about showAbout];
}
- (IBAction)showLicense:(id)sender
{
if( !nib_about_loaded )
nib_about_loaded = [NSBundle loadNibNamed:@"About" owner:self];
[o_about showGPL: sender];
}
- (IBAction)viewPreferences:(id)sender
{
/* GRUIIIIIIIK */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment