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-20 01:13:21 +00:00
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import <transmission.h>
|
2006-01-12 17:43:21 +00:00
|
|
|
|
|
|
|
@interface PrefsController : NSObject
|
|
|
|
|
|
|
|
{
|
|
|
|
tr_handle_t * fHandle;
|
2006-01-12 18:57:23 +00:00
|
|
|
|
|
|
|
IBOutlet NSPanel * fPrefsWindow;
|
|
|
|
NSToolbar * fToolbar;
|
|
|
|
IBOutlet NSView * fGeneralView;
|
|
|
|
IBOutlet NSView * fNetworkView;
|
|
|
|
IBOutlet NSView * fBlankView;
|
|
|
|
|
|
|
|
IBOutlet NSPopUpButton * fFolderPopUp;
|
2006-01-29 19:47:54 +00:00
|
|
|
IBOutlet NSButton * fQuitCheck;
|
|
|
|
IBOutlet NSButton * fRemoveCheck;
|
|
|
|
IBOutlet NSButton * fBadgeDownloadRateCheck;
|
|
|
|
IBOutlet NSButton * fBadgeUploadRateCheck;
|
2006-01-29 22:01:08 +00:00
|
|
|
IBOutlet NSPopUpButton * fUpdatePopUp;
|
2006-01-29 19:47:54 +00:00
|
|
|
|
2006-01-12 18:57:23 +00:00
|
|
|
IBOutlet NSTextField * fPortField;
|
|
|
|
IBOutlet NSButton * fUploadCheck;
|
|
|
|
IBOutlet NSTextField * fUploadField;
|
2006-04-07 14:22:27 +00:00
|
|
|
IBOutlet NSButton * fDownloadCheck;
|
|
|
|
IBOutlet NSTextField * fDownloadField;
|
2006-01-12 18:57:23 +00:00
|
|
|
|
|
|
|
IBOutlet NSWindow * fWindow;
|
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) setQuitMessage: (id) sender;
|
2006-01-29 19:47:54 +00:00
|
|
|
- (void) setRemoveMessage: (id) sender;
|
|
|
|
- (void) setBadge: (id) sender;
|
2006-01-29 22:01:08 +00:00
|
|
|
- (void) setUpdate: (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;
|
2006-04-07 14:22:27 +00:00
|
|
|
- (void) setLimitCheck: (id) sender;
|
|
|
|
- (void) setLimit: (id) sender;
|
2006-01-29 19:47:54 +00:00
|
|
|
|
2006-01-12 17:43:21 +00:00
|
|
|
@end
|