2007-09-16 01:02:06 +00:00
|
|
|
/******************************************************************************
|
2019-01-11 18:36:19 +00:00
|
|
|
* Copyright (c) 2005-2019 Transmission authors and contributors
|
2007-09-16 01:02:06 +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.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
2009-10-11 23:16:46 +00:00
|
|
|
#import <Quartz/Quartz.h>
|
2018-09-30 10:37:30 +00:00
|
|
|
|
|
|
|
#include <libtransmission/transmission.h>
|
|
|
|
|
2013-01-19 05:03:00 +00:00
|
|
|
#import "VDKQueue.h"
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2010-04-12 00:55:31 +00:00
|
|
|
@class AddMagnetWindowController;
|
2009-10-11 02:22:38 +00:00
|
|
|
@class AddWindowController;
|
|
|
|
@class Badger;
|
|
|
|
@class DragOverlayWindow;
|
2011-02-20 03:58:50 +00:00
|
|
|
@class FilterBarController;
|
2009-10-11 02:22:38 +00:00
|
|
|
@class InfoWindowController;
|
|
|
|
@class MessageWindowController;
|
|
|
|
@class PrefsController;
|
2011-02-20 00:22:55 +00:00
|
|
|
@class StatusBarController;
|
2009-10-11 02:22:38 +00:00
|
|
|
@class Torrent;
|
|
|
|
@class TorrentTableView;
|
2011-02-10 00:51:25 +00:00
|
|
|
@class URLSheetWindowController;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2008-01-05 02:48:10 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2008-05-27 00:52:18 +00:00
|
|
|
ADD_MANUAL,
|
2008-05-26 21:39:30 +00:00
|
|
|
ADD_AUTO,
|
2008-01-05 02:48:10 +00:00
|
|
|
ADD_SHOW_OPTIONS,
|
|
|
|
ADD_URL,
|
|
|
|
ADD_CREATED
|
|
|
|
} addType;
|
|
|
|
|
2017-08-26 12:55:45 +00:00
|
|
|
@interface Controller : NSObject <NSURLDownloadDelegate, NSUserNotificationCenterDelegate, NSPopoverDelegate, NSSharingServiceDelegate, NSSharingServicePickerDelegate, NSSoundDelegate, NSToolbarDelegate, NSWindowDelegate, QLPreviewPanelDataSource, QLPreviewPanelDelegate, VDKQueueDelegate>
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2009-10-11 02:22:38 +00:00
|
|
|
tr_session * fLib;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
NSMutableArray * fTorrents, * fDisplayedTorrents;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
PrefsController * fPrefsController;
|
|
|
|
InfoWindowController * fInfoController;
|
2012-05-28 14:34:32 +00:00
|
|
|
MessageWindowController * fMessageController;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-12-22 19:57:12 +00:00
|
|
|
NSUserDefaults * fDefaults;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2012-03-18 14:33:50 +00:00
|
|
|
NSString * fConfigDirectory;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
IBOutlet NSWindow * fWindow;
|
|
|
|
DragOverlayWindow * fOverlayWindow;
|
|
|
|
IBOutlet TorrentTableView * fTableView;
|
2008-06-19 02:53:45 +00:00
|
|
|
|
|
|
|
io_connect_t fRootPort;
|
|
|
|
NSTimer * fTimer;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2013-01-19 05:13:00 +00:00
|
|
|
VDKQueue * fFileWatcherQueue;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
IBOutlet NSMenuItem * fOpenIgnoreDownloadFolder;
|
2011-03-10 01:36:51 +00:00
|
|
|
IBOutlet NSButton * fActionButton, * fSpeedLimitButton, * fClearCompletedButton;
|
2007-12-04 21:41:06 +00:00
|
|
|
IBOutlet NSTextField * fTotalTorrentsField;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2011-02-20 03:58:50 +00:00
|
|
|
StatusBarController * fStatusBar;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2011-02-20 03:58:50 +00:00
|
|
|
FilterBarController * fFilterBar;
|
|
|
|
IBOutlet NSMenuItem * fNextFilterItem;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
IBOutlet NSMenuItem * fNextInfoTabItem, * fPrevInfoTabItem;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2012-01-30 00:14:43 +00:00
|
|
|
IBOutlet NSMenu * fSortMenu;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2011-02-20 03:58:50 +00:00
|
|
|
IBOutlet NSMenu * fGroupsSetMenu, * fGroupsSetContextMenu;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2014-01-10 17:50:05 +00:00
|
|
|
IBOutlet NSMenu * fShareMenu, * fShareContextMenu;
|
|
|
|
IBOutlet NSMenuItem * fShareMenuItem, * fShareContextMenuItem; // remove when dropping 10.6
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2011-10-06 00:30:40 +00:00
|
|
|
QLPreviewPanel * fPreviewPanel;
|
2009-10-12 00:48:16 +00:00
|
|
|
BOOL fQuitting;
|
2011-01-15 18:44:39 +00:00
|
|
|
BOOL fQuitRequested;
|
2009-05-12 00:58:22 +00:00
|
|
|
BOOL fPauseOnLaunch;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
Badger * fBadger;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
NSMutableArray * fAutoImportedNames;
|
|
|
|
NSTimer * fAutoImportTimer;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
NSMutableDictionary * fPendingTorrentDownloads;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2012-01-08 04:11:07 +00:00
|
|
|
NSMutableSet * fAddingTransfers;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2012-03-13 03:20:09 +00:00
|
|
|
NSMutableSet * fAddWindows;
|
2012-03-13 03:39:56 +00:00
|
|
|
URLSheetWindowController * fUrlSheetController;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2011-07-27 03:38:01 +00:00
|
|
|
BOOL fGlobalPopoverShown;
|
2008-04-10 16:37:07 +00:00
|
|
|
BOOL fSoundPlaying;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2009-11-25 04:11:52 +00:00
|
|
|
- (void) openFiles: (NSArray *) filenames addType: (addType) type forcePath: (NSString *) path;
|
|
|
|
|
|
|
|
- (void) askOpenConfirmed: (AddWindowController *) addController add: (BOOL) add;
|
|
|
|
- (void) openCreatedFile: (NSNotification *) notification;
|
|
|
|
- (void) openFilesWithDict: (NSDictionary *) dictionary;
|
|
|
|
- (void) openShowSheet: (id) sender;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2010-04-12 00:55:31 +00:00
|
|
|
- (void) openMagnet: (NSString *) address;
|
|
|
|
- (void) askOpenMagnetConfirmed: (AddMagnetWindowController *) addController add: (BOOL) add;
|
|
|
|
|
2008-06-18 16:25:30 +00:00
|
|
|
- (void) invalidOpenAlert: (NSString *) filename;
|
2009-12-02 00:27:07 +00:00
|
|
|
- (void) invalidOpenMagnetAlert: (NSString *) address;
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) duplicateOpenAlert: (NSString *) name;
|
2010-02-02 01:47:22 +00:00
|
|
|
- (void) duplicateOpenMagnetAlert: (NSString *) address transferName: (NSString *) name;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2011-02-10 00:51:25 +00:00
|
|
|
- (void) openURL: (NSString *) urlString;
|
|
|
|
- (void) openURLShowSheet: (id) sender;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2008-11-02 13:52:45 +00:00
|
|
|
- (void) quitSheetDidEnd: (NSWindow *) sheet returnCode: (NSInteger) returnCode contextInfo: (void *) contextInfo;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2012-05-27 22:31:58 +00:00
|
|
|
- (tr_session *) sessionHandle;
|
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) createFile: (id) sender;
|
|
|
|
|
|
|
|
- (void) resumeSelectedTorrents: (id) sender;
|
|
|
|
- (void) resumeAllTorrents: (id) sender;
|
|
|
|
- (void) resumeTorrents: (NSArray *) torrents;
|
|
|
|
|
|
|
|
- (void) resumeSelectedTorrentsNoWait: (id) sender;
|
|
|
|
- (void) resumeWaitingTorrents: (id) sender;
|
|
|
|
- (void) resumeTorrentsNoWait: (NSArray *) torrents;
|
|
|
|
|
|
|
|
- (void) stopSelectedTorrents: (id) sender;
|
|
|
|
- (void) stopAllTorrents: (id) sender;
|
|
|
|
- (void) stopTorrents: (NSArray *) torrents;
|
|
|
|
|
2009-07-19 19:14:01 +00:00
|
|
|
- (void) removeTorrents: (NSArray *) torrents deleteData: (BOOL) deleteData;
|
2008-11-02 13:52:45 +00:00
|
|
|
- (void) removeSheetDidEnd: (NSWindow *) sheet returnCode: (NSInteger) returnCode
|
2017-08-01 10:40:39 +00:00
|
|
|
contextInfo: (void *) contextInfo;
|
2009-07-19 19:14:01 +00:00
|
|
|
- (void) confirmRemoveTorrents: (NSArray *) torrents deleteData: (BOOL) deleteData;
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) removeNoDelete: (id) sender;
|
|
|
|
- (void) removeDeleteData: (id) sender;
|
|
|
|
|
2011-02-13 02:02:13 +00:00
|
|
|
- (void) clearCompleted: (id) sender;
|
|
|
|
|
2008-03-22 17:05:48 +00:00
|
|
|
- (void) moveDataFilesSelected: (id) sender;
|
|
|
|
- (void) moveDataFiles: (NSArray *) torrents;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
|
|
|
- (void) copyTorrentFiles: (id) sender;
|
|
|
|
- (void) copyTorrentFileForTorrents: (NSMutableArray *) torrents;
|
|
|
|
|
2009-12-04 13:35:15 +00:00
|
|
|
- (void) copyMagnetLinks: (id) sender;
|
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) revealFile: (id) sender;
|
|
|
|
|
2013-01-22 00:09:48 +00:00
|
|
|
- (IBAction) renameSelected: (id) sender;
|
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) announceSelectedTorrents: (id) sender;
|
|
|
|
|
2008-02-27 19:04:38 +00:00
|
|
|
- (void) verifySelectedTorrents: (id) sender;
|
|
|
|
- (void) verifyTorrents: (NSArray *) torrents;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2014-01-09 16:23:54 +00:00
|
|
|
- (NSArray *)selectedTorrents;
|
|
|
|
|
2017-07-29 16:14:22 +00:00
|
|
|
@property (nonatomic, readonly) PrefsController * prefsController;
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) showPreferenceWindow: (id) sender;
|
|
|
|
|
|
|
|
- (void) showAboutWindow: (id) sender;
|
|
|
|
|
|
|
|
- (void) showInfo: (id) sender;
|
2008-06-26 03:35:20 +00:00
|
|
|
- (void) resetInfo;
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) setInfoTab: (id) sender;
|
|
|
|
|
2017-07-29 16:14:22 +00:00
|
|
|
@property (nonatomic, readonly) MessageWindowController * messageWindowController;
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) showMessageWindow: (id) sender;
|
2007-11-19 18:13:41 +00:00
|
|
|
- (void) showStatsWindow: (id) sender;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
|
|
|
- (void) updateUI;
|
2011-08-04 02:03:58 +00:00
|
|
|
- (void) fullUpdateUI;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2008-03-21 20:28:04 +00:00
|
|
|
- (void) setBottomCountText: (BOOL) filtering;
|
2008-02-06 23:45:44 +00:00
|
|
|
|
2012-07-25 12:49:11 +00:00
|
|
|
- (Torrent *) torrentForHash: (NSString *) hash;
|
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) torrentFinishedDownloading: (NSNotification *) notification;
|
|
|
|
- (void) torrentRestartedDownloading: (NSNotification *) notification;
|
2010-08-14 19:44:43 +00:00
|
|
|
- (void) torrentFinishedSeeding: (NSNotification *) notification;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
|
|
|
- (void) updateTorrentHistory;
|
|
|
|
|
2011-02-20 03:58:50 +00:00
|
|
|
- (void) applyFilter;
|
2008-01-23 17:22:41 +00:00
|
|
|
|
2012-01-04 05:16:07 +00:00
|
|
|
- (void) sortTorrents: (BOOL) includeQueueOrder;
|
2012-01-14 19:53:08 +00:00
|
|
|
- (void) sortTorrentsCallUpdates: (BOOL) callUpdates includeQueueOrder: (BOOL) includeQueueOrder;
|
2012-01-07 15:46:42 +00:00
|
|
|
- (void) rearrangeTorrentTableArray: (NSMutableArray *) rearrangeArray forParent: (id) parent withSortDescriptors: (NSArray *) descriptors beganTableUpdate: (BOOL *) beganTableUpdate;
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) setSort: (id) sender;
|
2007-12-17 19:47:06 +00:00
|
|
|
- (void) setSortByGroup: (id) sender;
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) setSortReverse: (id) sender;
|
2007-12-17 19:47:06 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) switchFilter: (id) sender;
|
|
|
|
|
2011-07-23 15:54:02 +00:00
|
|
|
- (IBAction) showGlobalPopover: (id) sender;
|
|
|
|
|
2007-12-20 20:55:26 +00:00
|
|
|
- (void) setGroup: (id) sender; //used by delegate-generated menu items
|
2007-12-17 16:06:20 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) toggleSpeedLimit: (id) sender;
|
2009-01-02 03:57:28 +00:00
|
|
|
- (void) speedLimitChanged: (id) sender;
|
2009-03-30 22:18:25 +00:00
|
|
|
- (void) altSpeedToggledCallbackIsLimited: (NSDictionary *) dict;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
|
|
|
- (void) changeAutoImport;
|
|
|
|
- (void) checkAutoImportDirectory;
|
|
|
|
|
|
|
|
- (void) beginCreateFile: (NSNotification *) notification;
|
|
|
|
|
2008-05-20 15:16:34 +00:00
|
|
|
- (void) sleepCallback: (natural_t) messageType argument: (void *) messageArgument;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2017-07-29 16:14:22 +00:00
|
|
|
@property (nonatomic, readonly) VDKQueue * fileWatcherQueue;
|
2013-01-19 05:03:00 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) torrentTableViewSelectionDidChange: (NSNotification *) notification;
|
|
|
|
|
|
|
|
- (void) toggleSmallView: (id) sender;
|
2007-11-04 15:01:34 +00:00
|
|
|
- (void) togglePiecesBar: (id) sender;
|
2007-11-11 16:59:32 +00:00
|
|
|
- (void) toggleAvailabilityBar: (id) sender;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
|
|
|
- (void) toggleStatusBar: (id) sender;
|
|
|
|
- (void) showStatusBar: (BOOL) show animate: (BOOL) animate;
|
|
|
|
- (void) toggleFilterBar: (id) sender;
|
|
|
|
- (void) showFilterBar: (BOOL) show animate: (BOOL) animate;
|
2008-03-16 14:24:27 +00:00
|
|
|
- (void) focusFilterField;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2007-12-06 20:25:38 +00:00
|
|
|
- (void) allToolbarClicked: (id) sender;
|
2007-12-06 17:21:42 +00:00
|
|
|
- (void) selectedToolbarClicked: (id) sender;
|
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) setWindowSizeToFit;
|
|
|
|
- (NSRect) sizedWindowFrame;
|
2011-07-18 00:48:00 +00:00
|
|
|
- (void) updateForAutoSize;
|
|
|
|
- (void) setWindowMinMaxToCurrent;
|
|
|
|
- (CGFloat) minWindowContentSizeAllowed;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2008-02-06 23:45:44 +00:00
|
|
|
- (void) updateForExpandCollape;
|
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) showMainWindow: (id) sender;
|
|
|
|
|
2008-05-21 16:28:21 +00:00
|
|
|
- (void) toggleQuickLook: (id) sender;
|
2008-05-21 15:45:27 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) linkHomepage: (id) sender;
|
|
|
|
- (void) linkForums: (id) sender;
|
2018-01-15 21:57:25 +00:00
|
|
|
- (void) linkGitHub: (id) sender;
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) linkDonate: (id) sender;
|
|
|
|
|
2008-05-20 15:16:34 +00:00
|
|
|
- (void) rpcCallback: (tr_rpc_callback_type) type forTorrentStruct: (struct tr_torrent *) torrentStruct;
|
2013-03-04 04:01:38 +00:00
|
|
|
- (void) rpcAddTorrentStruct: (struct tr_torrent *) torrentStruct;
|
2013-03-04 04:18:21 +00:00
|
|
|
- (void) rpcRemoveTorrent: (Torrent *) torrent deleteData: (BOOL) deleteData;
|
2008-06-03 17:55:43 +00:00
|
|
|
- (void) rpcStartedStoppedTorrent: (Torrent *) torrent;
|
|
|
|
- (void) rpcChangedTorrent: (Torrent *) torrent;
|
2009-10-21 22:20:43 +00:00
|
|
|
- (void) rpcMovedTorrent: (Torrent *) torrent;
|
2011-08-27 23:54:10 +00:00
|
|
|
- (void) rpcUpdateQueue;
|
2008-05-20 15:16:34 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
@end
|