2008-01-04 04:45:31 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (c) 2008 Transmission authors and contributors
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
2008-01-04 06:31:41 +00:00
|
|
|
#import "Torrent.h"
|
2008-01-04 15:28:09 +00:00
|
|
|
#import "FileOutlineController.h"
|
2008-01-04 04:45:31 +00:00
|
|
|
|
|
|
|
@class Controller;
|
|
|
|
|
|
|
|
@interface AddWindowController : NSWindowController
|
|
|
|
{
|
|
|
|
IBOutlet NSImageView * fIconView, * fLocationImageView;
|
|
|
|
IBOutlet NSTextField * fNameField, * fStatusField, * fLocationField;
|
2008-01-04 18:10:37 +00:00
|
|
|
IBOutlet NSButton * fStartCheck, * fDeleteCheck;
|
2008-01-04 14:50:28 +00:00
|
|
|
IBOutlet NSPopUpButton * fGroupPopUp;
|
2008-01-04 04:45:31 +00:00
|
|
|
|
2008-01-04 15:28:09 +00:00
|
|
|
IBOutlet FileOutlineController * fFileController;
|
|
|
|
|
2008-01-04 04:45:31 +00:00
|
|
|
Controller * fController;
|
|
|
|
|
|
|
|
Torrent * fTorrent;
|
|
|
|
NSString * fDestination;
|
2008-01-04 06:31:41 +00:00
|
|
|
|
2008-01-04 18:10:37 +00:00
|
|
|
BOOL fDeleteTorrent, fDeleteEnable;
|
2008-01-05 22:32:34 +00:00
|
|
|
int fGroupValue;
|
2008-01-09 19:52:11 +00:00
|
|
|
|
|
|
|
NSTimer * fTimer;
|
2008-01-04 04:45:31 +00:00
|
|
|
}
|
|
|
|
|
2008-01-04 06:31:41 +00:00
|
|
|
- (id) initWithTorrent: (Torrent *) torrent destination: (NSString *) path controller: (Controller *) controller
|
|
|
|
deleteTorrent: (torrentFileState) deleteTorrent;
|
2008-01-04 04:45:31 +00:00
|
|
|
|
2008-01-05 21:31:05 +00:00
|
|
|
- (Torrent *) torrent;
|
|
|
|
|
2008-01-04 04:45:31 +00:00
|
|
|
- (void) setDestination: (id) sender;
|
|
|
|
|
|
|
|
- (void) add: (id) sender;
|
|
|
|
- (void) cancelAdd: (id) sender;
|
|
|
|
|
2008-01-09 19:52:11 +00:00
|
|
|
- (void) verifyLocalData: (id) sender;
|
|
|
|
|
2008-01-04 15:05:25 +00:00
|
|
|
- (void) updateGroupMenu: (NSNotification *) notification;
|
2008-01-05 22:32:34 +00:00
|
|
|
- (void) showGroupsWindow: (id) sender;
|
2008-01-04 14:56:29 +00:00
|
|
|
|
2008-01-04 04:45:31 +00:00
|
|
|
@end
|