transmission/macosx/Controller.h

273 lines
9.8 KiB
C
Raw Normal View History

2007-09-16 01:02:06 +00:00
/******************************************************************************
* $Id$
*
* Copyright (c) 2005-2011 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>
#import <transmission.h>
#import <Quartz/Quartz.h>
2007-09-16 01:02:06 +00:00
#import <Growl/Growl.h>
@class AddMagnetWindowController;
2009-10-11 02:22:38 +00:00
@class AddWindowController;
@class Badger;
@class DragOverlayWindow;
@class FilterBarView;
2008-11-01 22:08:02 +00:00
@class FilterButton;
2009-10-11 02:22:38 +00:00
@class InfoWindowController;
@class MessageWindowController;
@class PrefsController;
@class StatusBarController;
2009-10-11 02:22:38 +00:00
@class Torrent;
@class TorrentTableView;
@class URLSheetWindowController;
2007-09-16 01:02:06 +00:00
typedef enum
{
ADD_MANUAL,
ADD_AUTO,
ADD_SHOW_OPTIONS,
ADD_URL,
ADD_CREATED
} addType;
#warning uncomment
@interface Controller : NSObject <GrowlApplicationBridgeDelegate> //, QLPreviewPanelDataSource, QLPreviewPanelDelegate>
2007-09-16 01:02:06 +00:00
{
2009-10-11 02:22:38 +00:00
tr_session * fLib;
2007-09-16 01:02:06 +00:00
NSMutableArray * fTorrents, * fDisplayedTorrents;
PrefsController * fPrefsController;
InfoWindowController * fInfoController;
MessageWindowController * fMessageController;
NSUserDefaults * fDefaults;
2007-09-16 01:02:06 +00:00
IBOutlet NSWindow * fWindow;
DragOverlayWindow * fOverlayWindow;
IBOutlet TorrentTableView * fTableView;
io_connect_t fRootPort;
NSTimer * fTimer;
2007-09-16 01:02:06 +00:00
IBOutlet NSMenuItem * fOpenIgnoreDownloadFolder;
IBOutlet NSButton * fActionButton, * fSpeedLimitButton;
2007-12-04 21:41:06 +00:00
IBOutlet NSTextField * fTotalTorrentsField;
2007-09-16 01:02:06 +00:00
IBOutlet StatusBarController * fStatusBar;
2007-09-16 01:02:06 +00:00
IBOutlet FilterBarView * fFilterBar;
2007-12-20 04:49:06 +00:00
IBOutlet FilterButton * fNoFilterButton, * fActiveFilterButton, * fDownloadFilterButton,
* fSeedFilterButton, * fPauseFilterButton;
2007-09-16 01:02:06 +00:00
IBOutlet NSSearchField * fSearchFilterField;
IBOutlet NSMenuItem * fNextFilterItem, * fPrevFilterItem;
IBOutlet NSMenuItem * fNextInfoTabItem, * fPrevInfoTabItem;
IBOutlet NSMenu * fUploadMenu, * fDownloadMenu;
IBOutlet NSMenuItem * fUploadLimitItem, * fUploadNoLimitItem,
* fDownloadLimitItem, * fDownloadNoLimitItem;
IBOutlet NSMenu * fRatioStopMenu;
IBOutlet NSMenuItem * fCheckRatioItem, * fNoCheckRatioItem;
2007-12-19 20:46:00 +00:00
IBOutlet NSMenu * fGroupsSetMenu, * fGroupsSetContextMenu, * fGroupFilterMenu;
IBOutlet NSPopUpButton * fGroupsButton;
2007-12-17 16:06:20 +00:00
#warning change to QLPreviewPanel
id fPreviewPanel;
BOOL fQuitting;
BOOL fQuitRequested;
BOOL fPauseOnLaunch;
2007-09-16 01:02:06 +00:00
Badger * fBadger;
IBOutlet NSMenu * fDockMenu;
NSMutableArray * fAutoImportedNames;
NSTimer * fAutoImportTimer;
NSMutableDictionary * fPendingTorrentDownloads;
BOOL fSoundPlaying;
2007-09-16 01:02:06 +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
- (void) openMagnet: (NSString *) address;
- (void) askOpenMagnetConfirmed: (AddMagnetWindowController *) addController add: (BOOL) add;
- (void) invalidOpenAlert: (NSString *) filename;
- (void) invalidOpenMagnetAlert: (NSString *) address;
2007-09-16 01:02:06 +00:00
- (void) duplicateOpenAlert: (NSString *) name;
- (void) duplicateOpenMagnetAlert: (NSString *) address transferName: (NSString *) name;
2007-09-16 01:02:06 +00:00
- (void) openURL: (NSString *) urlString;
- (void) openURLShowSheet: (id) sender;
- (void) urlSheetDidEnd: (URLSheetWindowController *) controller url: (NSString *) urlString returnCode: (NSInteger) returnCode;
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
- (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;
- (void) removeTorrents: (NSArray *) torrents deleteData: (BOOL) deleteData;
2008-11-02 13:52:45 +00:00
- (void) removeSheetDidEnd: (NSWindow *) sheet returnCode: (NSInteger) returnCode
2007-09-16 01:02:06 +00:00
contextInfo: (NSDictionary *) dict;
- (void) confirmRemoveTorrents: (NSArray *) torrents deleteData: (BOOL) deleteData;
2007-09-16 01:02:06 +00:00
- (void) removeNoDelete: (id) sender;
- (void) removeDeleteData: (id) sender;
- (void) clearCompleted: (id) sender;
- (void) moveDataFilesSelected: (id) sender;
- (void) moveDataFiles: (NSArray *) torrents;
2008-11-02 13:52:45 +00:00
- (void) moveDataFileChoiceClosed: (NSOpenPanel *) panel returnCode: (NSInteger) code contextInfo: (NSArray *) torrents;
2007-09-16 01:02:06 +00:00
- (void) copyTorrentFiles: (id) sender;
- (void) copyTorrentFileForTorrents: (NSMutableArray *) torrents;
- (void) copyMagnetLinks: (id) sender;
2007-09-16 01:02:06 +00:00
- (void) revealFile: (id) sender;
- (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
- (void) showPreferenceWindow: (id) sender;
- (void) showAboutWindow: (id) sender;
- (void) showInfo: (id) sender;
- (void) resetInfo;
2007-09-16 01:02:06 +00:00
- (void) setInfoTab: (id) sender;
- (void) showMessageWindow: (id) sender;
- (void) showStatsWindow: (id) sender;
2007-09-16 01:02:06 +00:00
- (void) updateUI;
2008-03-21 20:28:04 +00:00
- (void) setBottomCountText: (BOOL) filtering;
2007-09-16 01:02:06 +00:00
- (void) updateTorrentsInQueue;
2009-10-16 23:02:55 +00:00
- (NSUInteger) numToStartFromQueue: (BOOL) downloadQueue;
2007-09-16 01:02:06 +00:00
- (void) torrentFinishedDownloading: (NSNotification *) notification;
- (void) torrentRestartedDownloading: (NSNotification *) notification;
- (void) torrentFinishedSeeding: (NSNotification *) notification;
2007-09-16 01:02:06 +00:00
- (void) updateTorrentHistory;
2008-01-30 21:55:39 +00:00
- (void) applyFilter: (id) sender;
- (void) sortTorrents;
- (void) sortTorrentsIgnoreSelected;
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) setFilter: (id) sender;
- (void) setFilterSearchType: (id) sender;
- (void) switchFilter: (id) sender;
2007-12-20 20:55:26 +00:00
- (void) setGroup: (id) sender; //used by delegate-generated menu items
2007-12-19 20:46:00 +00:00
- (void) setGroupFilter: (id) sender;
- (void) updateGroupsFilterButton;
- (void) updateGroupsFilters: (NSNotification *) notification;
2007-12-17 16:06:20 +00:00
2007-09-16 01:02:06 +00:00
- (void) toggleSpeedLimit: (id) sender;
- (void) speedLimitChanged: (id) sender;
- (void) altSpeedToggledCallbackIsLimited: (NSDictionary *) dict;
2007-09-16 01:02:06 +00:00
- (void) setLimitGlobalEnabled: (id) sender;
- (void) setQuickLimitGlobal: (id) sender;
- (void) setRatioGlobalEnabled: (id) sender;
2007-09-16 01:02:06 +00:00
- (void) setQuickRatioGlobal: (id) sender;
- (void) changeAutoImport;
- (void) checkAutoImportDirectory;
- (void) beginCreateFile: (NSNotification *) notification;
- (void) sleepCallback: (natural_t) messageType argument: (void *) messageArgument;
2007-09-16 01:02:06 +00:00
- (void) torrentTableViewSelectionDidChange: (NSNotification *) notification;
- (void) toggleSmallView: (id) sender;
- (void) togglePiecesBar: (id) sender;
- (void) toggleAvailabilityBar: (id) sender;
- (void) toggleStatusString: (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;
- (void) focusFilterField;
2007-09-16 01:02:06 +00:00
- (void) allToolbarClicked: (id) sender;
- (void) selectedToolbarClicked: (id) sender;
2007-09-16 01:02:06 +00:00
- (void) setWindowSizeToFit;
- (NSRect) sizedWindowFrame;
- (void) resizeFilterBar;
- (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;
2007-09-16 01:02:06 +00:00
- (void) linkHomepage: (id) sender;
- (void) linkForums: (id) sender;
2008-09-07 14:51:50 +00:00
- (void) linkTrac: (id) sender;
2007-09-16 01:02:06 +00:00
- (void) linkDonate: (id) sender;
- (void) rpcCallback: (tr_rpc_callback_type) type forTorrentStruct: (struct tr_torrent *) torrentStruct;
- (void) rpcAddTorrentStruct: (NSValue *) torrentStructPtr;
- (void) rpcRemoveTorrent: (Torrent *) torrent;
- (void) rpcRemoveTorrentDeleteData: (Torrent *) torrent;
- (void) rpcStartedStoppedTorrent: (Torrent *) torrent;
- (void) rpcChangedTorrent: (Torrent *) torrent;
- (void) rpcMovedTorrent: (Torrent *) torrent;
2007-09-16 01:02:06 +00:00
@end