2008-03-23 00:56:43 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* $Id$
|
|
|
|
*
|
2011-01-01 20:42:14 +00:00
|
|
|
* Copyright (c) 2007-2011 Transmission authors and contributors
|
2008-03-23 00:56:43 +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 03:36:50 +00:00
|
|
|
|
|
|
|
@class Torrent;
|
2008-03-23 00:56:43 +00:00
|
|
|
|
|
|
|
@interface GroupsController : NSObject
|
|
|
|
{
|
|
|
|
NSMutableArray * fGroups;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ (GroupsController *) groups;
|
|
|
|
|
2008-11-09 12:33:09 +00:00
|
|
|
- (NSInteger) numberOfGroups;
|
2008-03-23 00:56:43 +00:00
|
|
|
|
2008-11-09 12:33:09 +00:00
|
|
|
- (NSInteger) rowValueForIndex: (NSInteger) index;
|
|
|
|
- (NSInteger) indexForRow: (NSInteger) row;
|
2008-03-23 04:36:30 +00:00
|
|
|
|
2008-11-09 12:33:09 +00:00
|
|
|
- (NSString *) nameForIndex: (NSInteger) index;
|
|
|
|
- (void) setName: (NSString *) name forIndex: (NSInteger) index;
|
2008-03-23 00:56:43 +00:00
|
|
|
|
2008-11-09 12:33:09 +00:00
|
|
|
- (NSImage *) imageForIndex: (NSInteger) index;
|
2008-03-23 00:56:43 +00:00
|
|
|
|
2008-11-09 12:33:09 +00:00
|
|
|
- (NSColor *) colorForIndex: (NSInteger) index;
|
|
|
|
- (void) setColor: (NSColor *) color forIndex: (NSInteger) index;
|
2008-03-23 00:56:43 +00:00
|
|
|
|
2008-11-30 19:23:15 +00:00
|
|
|
- (BOOL) usesCustomDownloadLocationForIndex: (NSInteger) index;
|
|
|
|
- (void) setUsesCustomDownloadLocation: (BOOL) useCustomLocation forIndex: (NSInteger) index;
|
|
|
|
|
|
|
|
- (NSString *) customDownloadLocationForIndex: (NSInteger) index;
|
|
|
|
- (void) setCustomDownloadLocation: (NSString *) location forIndex: (NSInteger) index;
|
|
|
|
|
2008-12-08 03:26:28 +00:00
|
|
|
- (BOOL) usesAutoAssignRulesForIndex: (NSInteger) index;
|
|
|
|
- (void) setUsesAutoAssignRules: (BOOL) useAutoAssignRules forIndex: (NSInteger) index;
|
|
|
|
|
2008-12-24 17:41:45 +00:00
|
|
|
- (NSPredicate *) autoAssignRulesForIndex: (NSInteger) index;
|
|
|
|
- (void) setAutoAssignRules: (NSPredicate *) predicate forIndex: (NSInteger) index;
|
2008-12-13 17:18:28 +00:00
|
|
|
|
2008-03-26 19:51:58 +00:00
|
|
|
- (void) addNewGroup;
|
2008-11-29 20:29:54 +00:00
|
|
|
- (void) removeGroupWithRowIndex: (NSInteger) row;
|
2008-03-23 00:56:43 +00:00
|
|
|
|
2008-12-06 20:41:18 +00:00
|
|
|
- (void) moveGroupAtRow: (NSInteger) oldRow toRow: (NSInteger) newRow;
|
2008-03-23 00:56:43 +00:00
|
|
|
|
|
|
|
- (NSMenu *) groupMenuWithTarget: (id) target action: (SEL) action isSmall: (BOOL) small;
|
|
|
|
|
2008-12-08 03:26:28 +00:00
|
|
|
- (NSInteger) groupIndexForTorrent: (Torrent *) torrent;
|
2008-03-23 00:56:43 +00:00
|
|
|
@end
|