2006-01-12 17:43:21 +00:00
|
|
|
/******************************************************************************
|
2006-05-29 21:21:23 +00:00
|
|
|
* $Id$
|
|
|
|
*
|
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-05-25 12:22:19 +00:00
|
|
|
#import "InfoWindowController.h"
|
2006-01-20 01:51:07 +00:00
|
|
|
#import "Badger.h"
|
2006-06-06 18:05:57 +00:00
|
|
|
#import "SmoothAquaView.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-05-25 12:22:19 +00:00
|
|
|
|
2006-06-06 18:05:57 +00:00
|
|
|
PrefsController * fPrefsController;
|
|
|
|
NSUserDefaults * fDefaults;
|
2006-05-25 12:22:19 +00:00
|
|
|
InfoWindowController * fInfoController;
|
2006-01-12 18:57:23 +00:00
|
|
|
|
|
|
|
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;
|
2006-06-06 18:05:57 +00:00
|
|
|
NSToolbar * fToolbar;
|
|
|
|
|
|
|
|
IBOutlet NSMenuItem * fAdvancedBarItem;
|
|
|
|
IBOutlet NSButton * fActionButton;
|
|
|
|
|
|
|
|
IBOutlet SmoothAquaView * fStatusBar;
|
|
|
|
BOOL fStatusBarVisible;
|
2006-01-12 18:57:23 +00:00
|
|
|
IBOutlet NSTextField * fTotalDLField;
|
|
|
|
IBOutlet NSTextField * fTotalULField;
|
2006-05-01 00:15:18 +00:00
|
|
|
IBOutlet NSTextField * fTotalTorrentsField;
|
2006-05-25 12:22:19 +00:00
|
|
|
|
|
|
|
NSString * fSortType;
|
2006-06-06 18:05:57 +00:00
|
|
|
IBOutlet NSMenuItem * fNameSortItem, * fStateSortItem,
|
|
|
|
* fProgressSortItem, * fDateSortItem;
|
|
|
|
|
|
|
|
IBOutlet NSMenuItem * fNextInfoTabItem, * fPrevInfoTabItem;
|
|
|
|
|
|
|
|
IBOutlet NSMenu * fUploadMenu, * fDownloadMenu;
|
|
|
|
IBOutlet NSMenuItem * fUploadLimitItem, * fUploadNoLimitItem,
|
|
|
|
* fDownloadLimitItem, * fDownloadNoLimitItem,
|
|
|
|
* fRatioSetItem, * fRatioNotSetItem;
|
2006-01-12 18:57:23 +00:00
|
|
|
|
|
|
|
io_connect_t fRootPort;
|
|
|
|
NSTimer * fTimer;
|
|
|
|
|
|
|
|
BOOL fHasGrowl;
|
2006-06-06 18:05:57 +00:00
|
|
|
Badger * fBadger;
|
|
|
|
BOOL fUpdateInProgress;
|
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;
|
|
|
|
|
2006-05-25 12:22:19 +00:00
|
|
|
- (void) quitSheetDidEnd: (NSWindow *) sheet returnCode: (int) returnCode
|
|
|
|
contextInfo: (void *) contextInfo;
|
|
|
|
|
|
|
|
- (NSArray *) torrentsAtIndexes: (NSIndexSet *) indexSet;
|
|
|
|
- (void) torrentNumberChanged;
|
|
|
|
|
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
|
|
|
|
2006-06-15 02:07:50 +00:00
|
|
|
- (void) removeWithIndex: (NSIndexSet *) indexSet
|
|
|
|
deleteData: (BOOL) deleteData deleteTorrent: (BOOL) deleteData;
|
2006-05-25 12:22:19 +00:00
|
|
|
- (void) removeSheetDidEnd: (NSWindow *) sheet returnCode: (int) returnCode
|
|
|
|
contextInfo: (NSDictionary *) dict;
|
2006-06-15 02:07:50 +00:00
|
|
|
- (void) confirmRemove: (NSArray *) torrents
|
|
|
|
deleteData: (BOOL) deleteData deleteTorrent: (BOOL) deleteTorrent;
|
|
|
|
- (void) removeNoDelete: (id) sender;
|
|
|
|
- (void) removeDeleteData: (id) sender;
|
|
|
|
- (void) removeDeleteTorrent: (id) sender;
|
|
|
|
- (void) removeDeleteBoth: (id) sender;
|
2006-05-25 12:22:19 +00:00
|
|
|
|
2006-06-10 23:06:30 +00:00
|
|
|
- (void) copyTorrentFile: (id) sender;
|
2006-06-11 00:16:31 +00:00
|
|
|
- (void) copyTorrentFileForTorrents: (NSMutableArray *) torrents;
|
|
|
|
- (void) saveTorrentCopySheetClosed: (NSSavePanel *) panel returnCode: (int) code
|
|
|
|
contextInfo: (NSMutableArray *) torrents;
|
2006-06-10 23:06:30 +00:00
|
|
|
|
2006-06-06 18:05:57 +00:00
|
|
|
- (void) revealFile: (id) sender;
|
|
|
|
|
|
|
|
- (void) showPreferenceWindow: (id) sender;
|
2006-01-12 17:43:21 +00:00
|
|
|
|
2006-06-06 18:05:57 +00:00
|
|
|
- (void) showInfo: (id) sender;
|
|
|
|
- (void) setInfoTab: (id) sender;
|
|
|
|
|
|
|
|
- (void) updateUI: (NSTimer *) timer;
|
2006-02-08 19:05:42 +00:00
|
|
|
- (void) updateTorrentHistory;
|
2006-05-25 12:22:19 +00:00
|
|
|
|
|
|
|
- (void) sortTorrents;
|
|
|
|
- (void) setSort: (id) sender;
|
|
|
|
|
2006-06-06 18:05:57 +00:00
|
|
|
- (void) setLimitGlobalEnabled: (id) sender;
|
|
|
|
- (void) setQuickLimitGlobal: (id) sender;
|
|
|
|
- (void) limitGlobalChange: (NSNotification *) notification;
|
|
|
|
|
|
|
|
- (void) setRatioGlobalEnabled: (id) sender;
|
|
|
|
- (void) setQuickRatioGlobal: (id) sender;
|
|
|
|
- (void) ratioGlobalChange: (NSNotification *) notification;
|
|
|
|
- (void) ratioSingleChange: (NSNotification *) notification;
|
|
|
|
|
2006-06-23 15:06:27 +00:00
|
|
|
- (void) checkWaitingForFinished: (NSNotification *) notification;
|
|
|
|
|
2006-06-06 18:05:57 +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-05-01 00:15:18 +00:00
|
|
|
- (void) toggleStatusBar: (id) sender;
|
2006-06-06 18:05:57 +00:00
|
|
|
- (void) showStatusBar: (BOOL) show animate: (BOOL) animate;
|
2006-01-12 18:57:23 +00:00
|
|
|
|
|
|
|
- (void) showMainWindow: (id) sender;
|
|
|
|
- (void) linkHomepage: (id) sender;
|
|
|
|
- (void) linkForums: (id) sender;
|
2006-06-19 23:07:28 +00:00
|
|
|
|
2006-01-12 18:57:23 +00:00
|
|
|
- (void) notifyGrowl: (NSString *) file;
|
2006-06-19 23:07:28 +00:00
|
|
|
- (void) growlRegister;
|
2006-01-12 17:43:21 +00:00
|
|
|
|
2006-06-06 18:05:57 +00:00
|
|
|
- (void) checkUpdate: (id) sender;
|
|
|
|
- (void) prepareForUpdate: (NSNotification *) notification;
|
2006-01-29 22:01:08 +00:00
|
|
|
|
2006-01-12 17:43:21 +00:00
|
|
|
@end
|
2006-01-12 18:20:48 +00:00
|
|
|
|
|
|
|
#endif
|