Revert "transmission: update from 2.13 to 2.22"
[tomato.git] / release / src / router / transmission / macosx / BlocklistDownloaderViewController.m
bloba4e99337f24df2d5c62cae7d70d60deb1a698c70
1 /******************************************************************************
2  * $Id: BlocklistDownloaderViewController.m 11032 2010-07-21 05:13:25Z livings124 $
3  *
4  * Copyright (c) 2008-2010 Transmission authors and contributors
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the "Software"),
8  * to deal in the Software without restriction, including without limitation
9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  * and/or sell copies of the Software, and to permit persons to whom the
11  * Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  *****************************************************************************/
25 #import "BlocklistDownloaderViewController.h"
26 #import "BlocklistDownloader.h"
27 #import "PrefsController.h"
28 #import "NSStringAdditions.h"
30 @interface BlocklistDownloaderViewController (Private)
32 - (id) initWithPrefsController: (PrefsController *) prefsController;
33 - (void) startDownload;
34 - (void) failureSheetClosed: (NSAlert *) alert returnCode: (NSInteger) code contextInfo: (void *) info;
36 @end
38 @implementation BlocklistDownloaderViewController
40 + (void) downloadWithPrefsController: (PrefsController *) prefsController
42     BlocklistDownloaderViewController * downloader = [[BlocklistDownloaderViewController alloc] initWithPrefsController: prefsController];
43     [downloader startDownload];
46 - (void) awakeFromNib
48     [fButton setTitle: NSLocalizedString(@"Cancel", "Blocklist -> cancel button")];
49     
50     const CGFloat oldWidth = NSWidth([fButton frame]);
51     [fButton sizeToFit];
52     NSRect buttonFrame = [fButton frame];
53     buttonFrame.size.width += 12.0; //sizeToFit sizes a bit too small
54     buttonFrame.origin.x -= NSWidth(buttonFrame) - oldWidth;
55     [fButton setFrame: buttonFrame];
56     
57     [fProgressBar setUsesThreadedAnimation: YES];
58     [fProgressBar startAnimation: self];
61 - (void) cancelDownload: (id) sender
63     [[BlocklistDownloader downloader] cancelDownload];
66 - (void) setStatusStarting
68     [fTextField setStringValue: [NSLocalizedString(@"Connecting to site", "Blocklist -> message") stringByAppendingEllipsis]];
69     [fProgressBar setIndeterminate: YES];
72 - (void) setStatusProgressForCurrentSize: (NSUInteger) currentSize expectedSize: (long long) expectedSize
74     NSString * string = NSLocalizedString(@"Downloading blocklist", "Blocklist -> message");
75     if (expectedSize != NSURLResponseUnknownLength)
76     {
77         [fProgressBar setIndeterminate: NO];
78         
79         NSString * substring = [NSString stringWithFormat: NSLocalizedString(@"%@ of %@", "Blocklist -> message"),
80                                 [NSString stringForFileSize: currentSize], [NSString stringForFileSize: expectedSize]];
81         string = [string stringByAppendingFormat: @" (%@)",  substring];
82         [fProgressBar setDoubleValue: (double)currentSize / expectedSize];
83     }
84     else
85         string = [string stringByAppendingFormat: @" (%@)",  [NSString stringForFileSize: currentSize]];
86     
87     [fTextField setStringValue: string];
90 - (void) setStatusProcessing
92     //change to indeterminate while processing
93     [fProgressBar setIndeterminate: YES];
94     [fProgressBar startAnimation: self];
95     
96     [fTextField setStringValue: [NSLocalizedString(@"Processing blocklist", "Blocklist -> message") stringByAppendingEllipsis]];
97     [fButton setEnabled: NO];
100 - (void) setFinished
102     [NSApp endSheet: fStatusWindow];
103     [fStatusWindow orderOut: self];
104     
105     [self release];
108 - (void) setFailed: (NSString *) error
110     [NSApp endSheet: fStatusWindow];
111     [fStatusWindow orderOut: self];
112     
113     NSAlert * alert = [[[NSAlert alloc] init] autorelease];
114     [alert addButtonWithTitle: NSLocalizedString(@"OK", "Blocklist -> button")];
115     [alert setMessageText: NSLocalizedString(@"Download of the blocklist failed.", "Blocklist -> message")];
116     [alert setAlertStyle: NSWarningAlertStyle];
117     
118     [alert setInformativeText: error];
119     
120     [alert beginSheetModalForWindow: [fPrefsController window] modalDelegate: self
121         didEndSelector: @selector(failureSheetClosed:returnCode:contextInfo:) contextInfo: nil];
124 @end
126 @implementation BlocklistDownloaderViewController (Private)
128 - (id) initWithPrefsController: (PrefsController *) prefsController
130     if ((self = [super init]))
131     {
132         fPrefsController = prefsController;
133     }
134     
135     return self;
138 - (void) startDownload
140     //load window and show as sheet
141     [NSBundle loadNibNamed: @"BlocklistStatusWindow" owner: self];
142     
143     BlocklistDownloader * downloader = [BlocklistDownloader downloader];
144     [downloader setViewController: self]; //do before showing the sheet to ensure it doesn't slide out with placeholder text
145     
146     [NSApp beginSheet: fStatusWindow modalForWindow: [fPrefsController window] modalDelegate: nil didEndSelector: nil contextInfo: nil];
149 - (void) failureSheetClosed: (NSAlert *) alert returnCode: (NSInteger) code contextInfo: (void *) info
151     [[alert window] orderOut: self];
152     [self release];
155 @end