2013-01-22 00:09:48 +00:00
|
|
|
//
|
|
|
|
// FileRenameSheetController.m
|
|
|
|
// Transmission
|
|
|
|
//
|
|
|
|
// Created by Mitchell Livingston on 1/20/13.
|
|
|
|
// Copyright (c) 2013 The Transmission Project. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "FileRenameSheetController.h"
|
|
|
|
#import "FileListNode.h"
|
|
|
|
#import "Torrent.h"
|
|
|
|
|
|
|
|
typedef void (^CompletionBlock)(BOOL);
|
|
|
|
|
2013-01-26 20:11:49 +00:00
|
|
|
@interface FileRenameSheetController ()
|
2013-01-22 00:09:48 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic) Torrent* torrent;
|
|
|
|
@property(nonatomic) FileListNode* node;
|
|
|
|
@property(nonatomic, copy) CompletionBlock completionHandler;
|
2013-01-22 00:09:48 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic, copy) NSString* originalName;
|
2013-02-08 23:26:07 +00:00
|
|
|
|
2013-01-22 00:09:48 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation FileRenameSheetController
|
2013-01-26 19:59:56 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
+ (void)presentSheetForTorrent:(Torrent*)torrent
|
|
|
|
modalForWindow:(NSWindow*)window
|
|
|
|
completionHandler:(void (^)(BOOL didRename))completionHandler
|
2013-01-22 00:09:48 +00:00
|
|
|
{
|
|
|
|
NSParameterAssert(torrent != nil);
|
|
|
|
NSParameterAssert(window != nil);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
FileRenameSheetController* renamer = [[FileRenameSheetController alloc] initWithWindowNibName:@"FileRenameSheetController"];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2013-01-22 00:09:48 +00:00
|
|
|
renamer.torrent = torrent;
|
|
|
|
renamer.completionHandler = completionHandler;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
[NSApp beginSheet:renamer.window modalForWindow:window modalDelegate:self
|
|
|
|
didEndSelector:@selector(sheetDidEnd:returnCode:contextInfo:)
|
|
|
|
contextInfo:(__bridge_retained void*)(renamer)];
|
2013-01-22 00:09:48 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
+ (void)presentSheetForFileListNode:(FileListNode*)node
|
|
|
|
modalForWindow:(NSWindow*)window
|
|
|
|
completionHandler:(void (^)(BOOL didRename))completionHandler
|
2013-01-22 00:09:48 +00:00
|
|
|
{
|
|
|
|
NSParameterAssert(node != nil);
|
|
|
|
NSParameterAssert(window != nil);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
FileRenameSheetController* renamer = [[FileRenameSheetController alloc] initWithWindowNibName:@"FileRenameSheetController"];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-07 07:27:56 +00:00
|
|
|
renamer.torrent = node.torrent;
|
2013-01-22 00:09:48 +00:00
|
|
|
renamer.node = node;
|
|
|
|
renamer.completionHandler = completionHandler;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
[NSApp beginSheet:renamer.window modalForWindow:window modalDelegate:self
|
|
|
|
didEndSelector:@selector(sheetDidEnd:returnCode:contextInfo:)
|
|
|
|
contextInfo:(__bridge_retained void*)(renamer)];
|
2013-01-22 00:09:48 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
+ (void)sheetDidEnd:(NSWindow*)sheet returnCode:(NSInteger)returnCode contextInfo:(void*)contextInfo
|
2013-01-22 00:09:48 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
FileRenameSheetController* renamer = (__bridge_transfer FileRenameSheetController*)(contextInfo);
|
2013-01-22 00:09:48 +00:00
|
|
|
NSParameterAssert([renamer isKindOfClass:[FileRenameSheetController class]]);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2013-01-22 00:09:48 +00:00
|
|
|
renamer.completionHandler(returnCode == NSOKButton);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
[sheet orderOut:self];
|
2013-01-22 00:09:48 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)windowDidLoad
|
2013-01-22 00:09:48 +00:00
|
|
|
{
|
|
|
|
[super windowDidLoad];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-07 07:27:56 +00:00
|
|
|
self.originalName = self.node.name ?: self.torrent.name;
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* label = [NSString stringWithFormat:NSLocalizedString(@"Rename the file \"%@\":", "rename sheet label"), self.originalName];
|
2021-08-07 07:27:56 +00:00
|
|
|
self.labelField.stringValue = label;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-07 07:27:56 +00:00
|
|
|
self.inputField.stringValue = self.originalName;
|
|
|
|
self.renameButton.enabled = NO;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2013-02-09 19:13:26 +00:00
|
|
|
//resize the buttons so that they're long enough and the same width
|
2021-08-15 09:41:48 +00:00
|
|
|
NSRect const oldRenameFrame = self.renameButton.frame;
|
|
|
|
NSRect const oldCancelFrame = self.cancelButton.frame;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2013-02-09 19:13:26 +00:00
|
|
|
//get the extra width of the rename button from the English xib - the width from sizeToFit is too squished
|
|
|
|
[self.renameButton sizeToFit];
|
2021-08-15 09:41:48 +00:00
|
|
|
CGFloat const extra = NSWidth(oldRenameFrame) - NSWidth(self.renameButton.frame);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-07 07:27:56 +00:00
|
|
|
self.renameButton.title = NSLocalizedString(@"Rename", "rename sheet button");
|
|
|
|
self.cancelButton.title = NSLocalizedString(@"Cancel", "rename sheet button");
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2013-02-09 19:13:26 +00:00
|
|
|
[self.renameButton sizeToFit];
|
|
|
|
[self.cancelButton sizeToFit];
|
2021-08-07 07:27:56 +00:00
|
|
|
NSRect newRenameFrame = self.renameButton.frame;
|
|
|
|
NSRect newCancelFrame = self.cancelButton.frame;
|
2013-02-09 19:13:26 +00:00
|
|
|
newRenameFrame.size.width = MAX(NSWidth(newRenameFrame), NSWidth(newCancelFrame)) + extra;
|
|
|
|
newCancelFrame.size.width = MAX(NSWidth(newRenameFrame), NSWidth(newCancelFrame)) + extra;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
CGFloat const renameWidthIncrease = NSWidth(newRenameFrame) - NSWidth(oldRenameFrame);
|
2013-02-09 19:13:26 +00:00
|
|
|
newRenameFrame.origin.x -= renameWidthIncrease;
|
2021-08-07 07:27:56 +00:00
|
|
|
self.renameButton.frame = newRenameFrame;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
CGFloat const cancelWidthIncrease = NSWidth(newCancelFrame) - NSWidth(oldCancelFrame);
|
2013-02-09 19:13:26 +00:00
|
|
|
newCancelFrame.origin.x -= renameWidthIncrease + cancelWidthIncrease;
|
2021-08-07 07:27:56 +00:00
|
|
|
self.cancelButton.frame = newCancelFrame;
|
2013-01-22 00:09:48 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (IBAction)rename:(id)sender
|
2013-01-22 00:09:48 +00:00
|
|
|
{
|
|
|
|
void (^completionHandler)(BOOL) = ^(BOOL didRename) {
|
|
|
|
if (didRename)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
|
|
|
[NSApp endSheet:self.window returnCode:NSOKButton];
|
|
|
|
}
|
2013-01-22 00:09:48 +00:00
|
|
|
else
|
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
#warning more thorough error
|
2013-01-22 00:09:48 +00:00
|
|
|
NSBeep();
|
|
|
|
}
|
|
|
|
};
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2013-01-22 00:09:48 +00:00
|
|
|
if (self.node)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
|
|
|
[self.torrent renameFileNode:self.node withName:self.inputField.stringValue completionHandler:completionHandler];
|
|
|
|
}
|
2013-01-22 00:09:48 +00:00
|
|
|
else
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
|
|
|
[self.torrent renameTorrent:self.inputField.stringValue completionHandler:completionHandler];
|
|
|
|
}
|
2013-01-22 00:09:48 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (IBAction)cancelRename:(id)sender
|
2013-01-22 00:09:48 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
[NSApp endSheet:self.window returnCode:NSCancelButton];
|
2013-01-22 00:09:48 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)controlTextDidChange:(NSNotification*)notification
|
2013-01-22 00:09:48 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
self.renameButton.enabled = ![self.inputField.stringValue isEqualToString:@""] &&
|
|
|
|
![self.inputField.stringValue isEqualToString:self.originalName];
|
2013-01-22 00:09:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|