2006-01-12 17:43:21 +00:00
|
|
|
/******************************************************************************
|
2006-03-23 12:39:39 +00:00
|
|
|
* Copyright (c) 2005-2006 Transmission authors and contributors
|
2006-01-12 17:43:21 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2006-01-12 18:20:48 +00:00
|
|
|
#ifndef CONTROLLER_H
|
|
|
|
#define CONTROLLER_H
|
|
|
|
|
2006-01-20 01:13:21 +00:00
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import <transmission.h>
|
|
|
|
#import "PrefsController.h"
|
2006-01-20 01:51:07 +00:00
|
|
|
#import "Badger.h"
|
2006-01-12 17:43:21 +00:00
|
|
|
|
2006-01-12 18:29:20 +00:00
|
|
|
@class TorrentTableView;
|
|
|
|
|
2006-01-12 18:40:47 +00:00
|
|
|
@interface Controller : NSObject
|
2006-01-12 17:43:21 +00:00
|
|
|
{
|
2006-03-23 12:39:39 +00:00
|
|
|
tr_handle_t * fLib;
|
2006-04-05 13:52:00 +00:00
|
|
|
int fCompleted;
|
2006-03-23 12:39:39 +00:00
|
|
|
NSMutableArray * fTorrents;
|
2006-01-12 18:57:23 +00:00
|
|
|
|
|
|
|
NSToolbar * fToolbar;
|
|
|
|
|
|
|
|
IBOutlet NSMenuItem * fAdvancedBarItem;
|
|
|
|
IBOutlet NSMenuItem * fPauseResumeItem;
|
|
|
|
IBOutlet NSMenuItem * fRemoveItem;
|
|
|
|
IBOutlet NSMenuItem * fRemoveTorrentItem;
|
|
|
|
IBOutlet NSMenuItem * fRemoveDataItem;
|
|
|
|
IBOutlet NSMenuItem * fRemoveBothItem;
|
|
|
|
IBOutlet NSMenuItem * fRevealItem;
|
|
|
|
IBOutlet NSMenuItem * fShowHideToolbar;
|
|
|
|
|
|
|
|
IBOutlet NSWindow * fWindow;
|
2006-02-07 05:02:45 +00:00
|
|
|
IBOutlet NSScrollView * fScrollView;
|
2006-01-12 18:57:23 +00:00
|
|
|
IBOutlet TorrentTableView * fTableView;
|
|
|
|
IBOutlet NSTextField * fTotalDLField;
|
|
|
|
IBOutlet NSTextField * fTotalULField;
|
|
|
|
|
|
|
|
IBOutlet NSPanel * fInfoPanel;
|
2006-03-27 15:09:29 +00:00
|
|
|
IBOutlet NSImageView * fInfoImageView;
|
|
|
|
IBOutlet NSTextField * fInfoName;
|
|
|
|
IBOutlet NSTextField * fInfoSize;
|
2006-01-12 18:57:23 +00:00
|
|
|
IBOutlet NSTextField * fInfoTracker;
|
|
|
|
IBOutlet NSTextField * fInfoAnnounce;
|
|
|
|
IBOutlet NSTextField * fInfoPieceSize;
|
2006-03-27 15:09:29 +00:00
|
|
|
IBOutlet NSTextField * fInfoPieces;
|
|
|
|
IBOutlet NSTextField * fInfoHash1;
|
|
|
|
IBOutlet NSTextField * fInfoHash2;
|
2006-01-12 18:57:23 +00:00
|
|
|
IBOutlet NSTextField * fInfoSeeders;
|
|
|
|
IBOutlet NSTextField * fInfoLeechers;
|
|
|
|
IBOutlet NSTextField * fInfoDownloaded;
|
|
|
|
IBOutlet NSTextField * fInfoUploaded;
|
2006-03-28 11:17:42 +00:00
|
|
|
NSImage * fAppIcon;
|
2006-01-12 18:57:23 +00:00
|
|
|
|
|
|
|
io_connect_t fRootPort;
|
|
|
|
NSTimer * fTimer;
|
2006-01-29 22:01:08 +00:00
|
|
|
NSTimer * fUpdateTimer;
|
2006-01-12 18:57:23 +00:00
|
|
|
|
|
|
|
IBOutlet NSPanel * fPrefsWindow;
|
|
|
|
IBOutlet PrefsController * fPrefsController;
|
|
|
|
NSUserDefaults * fDefaults;
|
|
|
|
|
|
|
|
BOOL fHasGrowl;
|
2006-01-20 01:51:07 +00:00
|
|
|
Badger * fBadger;
|
2006-01-29 22:01:08 +00:00
|
|
|
BOOL fCheckIsAutomatic;
|
2006-01-12 17:43:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) advancedChanged: (id) sender;
|
|
|
|
- (void) openShowSheet: (id) sender;
|
|
|
|
- (void) openSheetClosed: (NSOpenPanel *) s returnCode: (int) code
|
2006-01-12 18:57:23 +00:00
|
|
|
contextInfo: (void *) info;
|
|
|
|
|
|
|
|
- (void) quitSheetDidEnd: (NSWindow *)sheet returnCode:(int)returnCode
|
2006-04-07 13:09:19 +00:00
|
|
|
contextInfo:(void *)contextInfo;
|
2006-01-12 18:57:23 +00:00
|
|
|
|
|
|
|
- (void) resumeTorrent: (id) sender;
|
|
|
|
- (void) resumeAllTorrents: (id) sender;
|
2006-04-07 13:09:19 +00:00
|
|
|
- (void) resumeTorrentWithIndex: (NSIndexSet *) indexSet;
|
|
|
|
- (void) stopTorrent: (id) sender;
|
|
|
|
- (void) stopAllTorrents: (id) sender;
|
|
|
|
- (void) stopTorrentWithIndex: (NSIndexSet *) indexSet;
|
2006-01-12 18:57:23 +00:00
|
|
|
|
|
|
|
- (void) removeTorrent: (id) sender;
|
|
|
|
- (void) removeTorrentDeleteFile: (id) sender;
|
|
|
|
- (void) removeTorrentDeleteData: (id) sender;
|
|
|
|
- (void) removeTorrentDeleteBoth: (id) sender;
|
2006-04-07 13:09:19 +00:00
|
|
|
- (void) removeTorrentWithIndex: (NSIndexSet *) indexSet
|
2006-01-12 18:57:23 +00:00
|
|
|
deleteTorrent: (BOOL) deleteTorrent
|
|
|
|
deleteData: (BOOL) deleteData;
|
|
|
|
|
|
|
|
- (void) removeSheetDidEnd:(NSWindow *)sheet returnCode:(int)returnCode
|
2006-04-07 13:09:19 +00:00
|
|
|
contextInfo:(NSDictionary *)dict;
|
|
|
|
- (void) confirmRemoveTorrentWithIndex: (NSIndexSet *) indexSet
|
2006-01-12 18:57:23 +00:00
|
|
|
deleteTorrent: (BOOL) deleteTorrent
|
|
|
|
deleteData: (BOOL) deleteData;
|
|
|
|
|
2006-01-12 17:43:21 +00:00
|
|
|
- (void) showInfo: (id) sender;
|
|
|
|
|
|
|
|
- (void) updateUI: (NSTimer *) timer;
|
2006-02-08 19:05:42 +00:00
|
|
|
- (void) updateTorrentHistory;
|
2006-01-12 17:43:21 +00:00
|
|
|
- (void) sleepCallBack: (natural_t) messageType argument:
|
2006-01-12 18:57:23 +00:00
|
|
|
(void *) messageArgument;
|
2006-01-12 18:29:20 +00:00
|
|
|
|
2006-01-12 18:54:46 +00:00
|
|
|
- (void) runCustomizationPalette: (id) sender;
|
|
|
|
- (void) showHideToolbar: (id) sender;
|
|
|
|
|
2006-01-12 18:57:23 +00:00
|
|
|
- (void) showPreferenceWindow: (id) sender;
|
|
|
|
|
|
|
|
- (void) showMainWindow: (id) sender;
|
|
|
|
- (void) linkHomepage: (id) sender;
|
|
|
|
- (void) linkForums: (id) sender;
|
|
|
|
- (void) notifyGrowl: (NSString *) file;
|
|
|
|
- (void) revealFromMenu: (id) sender;
|
|
|
|
- (void) growlRegister: (id) sender;
|
2006-01-12 17:43:21 +00:00
|
|
|
|
2006-01-29 22:01:08 +00:00
|
|
|
- (void) checkForUpdate: (id) sender;
|
|
|
|
- (void) checkForUpdateTimer: (NSTimer *) timer;
|
|
|
|
- (void) checkForUpdateAuto: (BOOL) automatic;
|
|
|
|
|
2006-01-12 17:43:21 +00:00
|
|
|
@end
|
2006-01-12 18:20:48 +00:00
|
|
|
|
|
|
|
#endif
|