You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

143 lines
4.4 KiB

/*****************************************************************************
* VLCResumeDialogController.m: MacOS X interface module
*****************************************************************************
* Copyright (C) 2015 VLC authors and VideoLAN
*
* Authors: Felix Paul Kühne <fkuehne -at- videolan -dot- org>
* David Fuhrmann <david dot fuhrmann at googlemail dot com>
*
* 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
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#import "VLCResumeDialogController.h"
#import "VLCMain.h"
#import "VLCStringUtility.h"
@interface VLCResumeDialogController()
{
int currentResumeTimeout;
CompletionBlock completionBlock;
}
@end
@implementation VLCResumeDialogController
- (id)init
{
self = [super initWithWindowNibName:@"ResumeDialog"];
return self;
}
- (void)windowDidLoad
{
[o_title_lbl setStringValue:_NS("Continue playback?")];
[o_resume_btn setTitle:_NS("Continue")];
[o_always_resume_chk setTitle:_NS("Always continue media playback")];
}
- (void)showWindowWithItem:(input_item_t *)p_item withLastPosition:(NSInteger)pos completionBlock:(CompletionBlock)block
{
NSWindow *w = [self window];
currentResumeTimeout = 10;
completionBlock = [block copy];
NSString *o_restartButtonLabel = _NS("Restart playback");
o_restartButtonLabel = [o_restartButtonLabel stringByAppendingFormat:@" (%d)", currentResumeTimeout];
[o_restart_btn setTitle:o_restartButtonLabel];
char *psz_title_name = input_item_GetTitleFbName(p_item);
NSString *o_title = toNSStr(psz_title_name);
free(psz_title_name);
NSString *labelString = [NSString stringWithFormat:_NS("Playback of \"%@\" will continue at %@"), o_title, [[VLCStringUtility sharedInstance] stringForTime:pos]];
[o_text_lbl setStringValue:labelString];
[o_always_resume_chk setState: NSOffState];
o_countdown_timer = [NSTimer scheduledTimerWithTimeInterval:1
target:self
selector:@selector(updateAlertWindow:)
userInfo:nil
repeats:YES];
[w setLevel:[[[VLCMain sharedInstance] voutController] currentStatusWindowLevel]];
[w center];
[w makeKeyAndOrderFront:nil];
}
- (void)updateAlertWindow:(NSTimer *)timer
{
--currentResumeTimeout;
if (currentResumeTimeout <= 0) {
[self buttonClicked:o_restart_btn];
[timer invalidate];
timer = nil;
}
NSString *buttonLabel = _NS("Restart playback");
buttonLabel = [buttonLabel stringByAppendingFormat:@" (%d)", currentResumeTimeout];
[o_restart_btn setTitle:buttonLabel];
}
- (IBAction)buttonClicked:(id)sender
{
enum ResumeResult resumeResult;
if (sender == o_restart_btn)
resumeResult = RESUME_RESTART;
else if (sender == o_resume_btn)
resumeResult = RESUME_NOW;
[[self window] close];
if (completionBlock) {
completionBlock(resumeResult);
completionBlock = nil;
}
}
- (IBAction)resumeSettingChanged:(id)sender
{
int newState = [sender state] == NSOnState ? 1 : 0;
msg_Dbg(getIntf(), "Changing resume setting to %i", newState);
config_PutInt(getIntf(), "macosx-continue-playback", newState);
}
- (void)updateCocoaWindowLevel:(NSInteger)i_level
{
if (self.isWindowLoaded && [self.window isVisible] && [self.window level] != i_level)
[self.window setLevel: i_level];
}
- (void)cancel
{
if (![self isWindowLoaded])
return;
if (o_countdown_timer != nil) {
[o_countdown_timer invalidate];
o_countdown_timer = nil;
}
[[self window] close];
}
@end