transmission/macosx/Controller.h

107 lines
4.1 KiB
C
Raw Normal View History

2006-01-12 17:43:21 +00:00
/******************************************************************************
* Copyright (c) 2005 Eric Petit
*
* 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-12 17:43:21 +00:00
#include <Cocoa/Cocoa.h>
#include <transmission.h>
#include "PrefsController.h"
2006-01-12 18:33:20 +00:00
#include <Growl/Growl.h>
2006-01-12 17:43:21 +00:00
2006-01-12 18:29:20 +00:00
@class TorrentTableView;
2006-01-12 18:33:20 +00:00
@interface Controller : NSObject <GrowlApplicationBridgeDelegate>
2006-01-12 17:43:21 +00:00
{
tr_handle_t * fHandle;
int fCount;
tr_stat_t * fStat;
int fResumeOnWake[TR_MAX_TORRENT_COUNT];
2006-01-12 18:29:20 +00:00
2006-01-12 17:43:21 +00:00
NSToolbar * fToolbar;
IBOutlet PrefsController * fPrefsController;
IBOutlet NSMenuItem * fAdvancedBarItem;
2006-01-12 18:30:10 +00:00
IBOutlet NSMenuItem * fPauseResumeItem;
IBOutlet NSMenuItem * fRemoveItem;
2006-01-12 18:33:20 +00:00
IBOutlet NSMenuItem * fRevealItem;
2006-01-12 17:43:21 +00:00
IBOutlet NSWindow * fWindow;
2006-01-12 18:29:20 +00:00
IBOutlet TorrentTableView * fTableView;
2006-01-12 17:43:21 +00:00
IBOutlet NSTextField * fTotalDLField;
IBOutlet NSTextField * fTotalULField;
2006-01-12 18:29:20 +00:00
IBOutlet NSMenu * fContextMenu;
2006-01-12 17:43:21 +00:00
IBOutlet NSPanel * fInfoPanel;
IBOutlet NSTextField * fInfoTitle;
IBOutlet NSTextField * fInfoTracker;
IBOutlet NSTextField * fInfoAnnounce;
IBOutlet NSTextField * fInfoSize;
IBOutlet NSTextField * fInfoPieces;
IBOutlet NSTextField * fInfoPieceSize;
2006-01-12 18:33:20 +00:00
IBOutlet NSTextField * fInfoSeeders;
IBOutlet NSTextField * fInfoLeechers;
2006-01-12 17:43:21 +00:00
IBOutlet NSTextField * fInfoFolder;
IBOutlet NSTextField * fInfoDownloaded;
IBOutlet NSTextField * fInfoUploaded;
io_connect_t fRootPort;
NSArray * fFilenames;
NSTimer * fTimer;
}
- (void) advancedChanged: (id) sender;
- (void) openShowSheet: (id) sender;
- (void) openSheetClosed: (NSOpenPanel *) s returnCode: (int) code
contextInfo: (void *) info;
- (void) stopTorrent: (id) sender;
2006-01-12 18:33:20 +00:00
- (void) stopAllTorrents: (id) sender;
2006-01-12 18:20:48 +00:00
- (void) stopTorrentWithIndex: (int) index;
2006-01-12 17:43:21 +00:00
- (void) resumeTorrent: (id) sender;
2006-01-12 18:33:20 +00:00
- (void) resumeAllTorrents: (id) sender;
2006-01-12 18:20:48 +00:00
- (void) resumeTorrentWithIndex: (int) index;
2006-01-12 17:43:21 +00:00
- (void) removeTorrent: (id) sender;
2006-01-12 18:29:20 +00:00
- (void) removeTorrentDeleteFile: (id) sender;
- (void) removeTorrentDeleteData: (id) sender;
- (void) removeTorrentDeleteBoth: (id) sender;
- (void) removeTorrentWithIndex: (int) idx
deleteTorrent: (BOOL) deleteTorrent
deleteData: (BOOL) deleteData;
2006-01-12 17:43:21 +00:00
- (void) showInfo: (id) sender;
- (void) updateUI: (NSTimer *) timer;
- (void) sleepCallBack: (natural_t) messageType argument:
(void *) messageArgument;
2006-01-12 18:29:20 +00:00
- (NSMenu *) menuForIndex: (int) idx;
2006-01-12 17:43:21 +00:00
- (void) showMainWindow: (id) sender;
- (void) linkHomepage: (id) sender;
- (void) linkForums: (id) sender;
2006-01-12 18:33:20 +00:00
- (void) notifyGrowl: (NSString *) file folder: (NSString *) folder;
- (void) revealInFinder: (NSString *) path;
2006-01-12 17:43:21 +00:00
@end
2006-01-12 18:20:48 +00:00
#endif