transmission/macosx/PrefsController.h

78 lines
3.1 KiB
C
Raw Normal View History

2006-01-12 17:43:21 +00:00
/******************************************************************************
* $Id$
*
* 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.
*****************************************************************************/
#import <Cocoa/Cocoa.h>
#import <transmission.h>
#import <Sparkle/Sparkle.h>
2006-01-12 17:43:21 +00:00
@interface PrefsController : NSWindowController
2006-01-12 17:43:21 +00:00
{
tr_handle_t * fHandle;
2006-01-12 18:57:23 +00:00
NSToolbar * fToolbar;
IBOutlet NSView * fGeneralView, * fTransfersView, * fNetworkView;
2006-01-12 18:57:23 +00:00
IBOutlet NSPopUpButton * fFolderPopUp;
IBOutlet NSButton * fQuitCheck, * fRemoveCheck,
* fBadgeDownloadRateCheck, * fBadgeUploadRateCheck,
* fAutoStartCheck, * fCopyTorrentCheck, * fDeleteOriginalTorrentCheck;
2006-01-29 22:01:08 +00:00
IBOutlet NSPopUpButton * fUpdatePopUp;
2006-01-29 19:47:54 +00:00
IBOutlet NSTextField * fPortField, * fUploadField, * fDownloadField;
IBOutlet NSButton * fUploadCheck, * fDownloadCheck;
IBOutlet NSButton * fRatioCheck;
IBOutlet NSTextField * fRatioField;
2006-01-12 18:57:23 +00:00
IBOutlet SUUpdater * fUpdater;
2006-01-12 17:43:21 +00:00
2006-01-12 18:57:23 +00:00
NSString * fDownloadFolder;
NSUserDefaults * fDefaults;
2006-01-12 17:43:21 +00:00
}
2006-01-12 18:57:23 +00:00
- (void) setPrefsWindow: (tr_handle_t *) handle;
- (void) setShowMessage: (id) sender;
2006-01-29 19:47:54 +00:00
- (void) setBadge: (id) sender;
2006-01-29 22:01:08 +00:00
- (void) setUpdate: (id) sender;
- (void) checkUpdate;
- (void) setAutoStart: (id) sender;
- (void) setMoveTorrent: (id) sender;
2006-01-12 18:57:23 +00:00
- (void) setDownloadLocation: (id) sender;
- (void) folderSheetShow: (id) sender;
2006-01-12 17:43:21 +00:00
2006-01-29 19:47:54 +00:00
- (void) setPort: (id) sender;
- (void) setLimit: (id) sender;
- (void) setLimitCheck: (id) sender;
- (void) setLimitEnabled: (BOOL) enable type: (NSString *) type;
- (void) setQuickLimit: (int) limit type: (NSString *) type;
2006-01-29 19:47:54 +00:00
- (void) setRatio: (id) sender;
- (void) setRatioCheck: (id) sender;
- (void) setRatioEnabled: (BOOL) enable;
- (void) setQuickRatio: (float) ratioLimit;
2006-01-12 17:43:21 +00:00
@end