2007-12-17 16:06:20 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* $Id$
|
|
|
|
*
|
2008-01-02 16:55:05 +00:00
|
|
|
* Copyright (c) 2007-2008 Transmission authors and contributors
|
2007-12-17 16:06:20 +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.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2008-12-01 01:44:38 +00:00
|
|
|
#import "GroupsPrefsController.h"
|
2008-03-23 00:56:43 +00:00
|
|
|
#import "GroupsController.h"
|
2007-12-17 16:06:20 +00:00
|
|
|
#import "NSApplicationAdditions.h"
|
2008-11-30 19:23:15 +00:00
|
|
|
#import "ExpandedPathToPathTransformer.h"
|
|
|
|
#import "ExpandedPathToIconTransformer.h"
|
2007-12-17 16:06:20 +00:00
|
|
|
|
2007-12-17 21:11:53 +00:00
|
|
|
#define GROUP_TABLE_VIEW_DATA_TYPE @"GroupTableViewDataType"
|
|
|
|
|
2008-06-02 17:26:02 +00:00
|
|
|
#define ADD_TAG 0
|
|
|
|
#define REMOVE_TAG 1
|
2007-12-17 16:06:20 +00:00
|
|
|
|
2008-12-13 17:18:28 +00:00
|
|
|
#define RULES_ALL_TAG 0
|
|
|
|
#define RULES_ANY_TAG 1
|
|
|
|
|
2008-12-01 01:44:38 +00:00
|
|
|
@interface GroupsPrefsController (Private)
|
2007-12-17 16:06:20 +00:00
|
|
|
|
2008-12-08 03:55:08 +00:00
|
|
|
- (void) updateSelectedGroup;
|
2007-12-17 16:06:20 +00:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
2008-12-01 01:44:38 +00:00
|
|
|
@implementation GroupsPrefsController
|
2007-12-17 16:06:20 +00:00
|
|
|
|
|
|
|
- (void) awakeFromNib
|
|
|
|
{
|
2007-12-17 21:11:53 +00:00
|
|
|
[fTableView registerForDraggedTypes: [NSArray arrayWithObject: GROUP_TABLE_VIEW_DATA_TYPE]];
|
|
|
|
|
2008-12-01 01:44:38 +00:00
|
|
|
if (![NSApp isOnLeopardOrBetter])
|
2007-12-18 03:18:32 +00:00
|
|
|
{
|
2008-06-03 15:27:03 +00:00
|
|
|
[fAddRemoveControl sizeToFit];
|
|
|
|
[fAddRemoveControl setLabel: @"+" forSegment: ADD_TAG];
|
|
|
|
[fAddRemoveControl setLabel: @"-" forSegment: REMOVE_TAG];
|
2008-12-08 03:26:28 +00:00
|
|
|
[fGroupRulesPrefsContainer setHidden: YES]; //get rid of container when 10.5-only
|
2007-12-18 03:18:32 +00:00
|
|
|
}
|
2008-12-01 01:44:38 +00:00
|
|
|
|
2008-12-08 23:38:01 +00:00
|
|
|
[fRulesSheetOKButton setStringValue: NSLocalizedString(@"OK", "Groups -> rule editor -> button")];
|
|
|
|
[fRulesSheetCancelButton setStringValue: NSLocalizedString(@"Cancel", "Groups -> rule editor -> button")];
|
2008-12-13 17:18:28 +00:00
|
|
|
[fRulesSheetDescriptionField setStringValue: NSLocalizedString(@"criteria must be met to assign a transfer on add.",
|
|
|
|
"Groups -> rule editor -> button (All/Any criteria must....)")];
|
|
|
|
|
|
|
|
[[fRulesAllAnyButton itemAtIndex: [fRulesAllAnyButton indexOfItemWithTag: RULES_ALL_TAG]] setTitle:
|
|
|
|
NSLocalizedString(@"All", "Groups -> rule editor -> all/any")];
|
|
|
|
[[fRulesAllAnyButton itemAtIndex: [fRulesAllAnyButton indexOfItemWithTag: RULES_ANY_TAG]] setTitle:
|
|
|
|
NSLocalizedString(@"Any", "Groups -> rule editor -> all/any")];
|
2008-12-08 23:38:01 +00:00
|
|
|
|
2008-11-29 20:03:18 +00:00
|
|
|
[fSelectedColorView addObserver: self forKeyPath: @"color" options: 0 context: NULL];
|
2008-11-29 21:29:06 +00:00
|
|
|
|
2008-12-08 03:55:08 +00:00
|
|
|
[self updateSelectedGroup];
|
2007-12-17 16:06:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (NSInteger) numberOfRowsInTableView: (NSTableView *) tableview
|
|
|
|
{
|
2008-03-23 00:56:43 +00:00
|
|
|
return [[GroupsController groups] numberOfGroups];
|
2007-12-17 16:06:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (id) tableView: (NSTableView *) tableView objectValueForTableColumn: (NSTableColumn *) tableColumn row: (NSInteger) row
|
|
|
|
{
|
2008-03-24 23:06:04 +00:00
|
|
|
GroupsController * groupsController = [GroupsController groups];
|
2008-11-04 00:34:13 +00:00
|
|
|
NSInteger groupsIndex = [groupsController indexForRow: row];
|
2008-03-24 23:06:04 +00:00
|
|
|
|
2007-12-17 16:06:20 +00:00
|
|
|
NSString * identifier = [tableColumn identifier];
|
|
|
|
if ([identifier isEqualToString: @"Color"])
|
2008-05-31 02:38:44 +00:00
|
|
|
return [groupsController imageForIndex: groupsIndex];
|
2007-12-17 16:06:20 +00:00
|
|
|
else
|
2008-03-24 23:06:04 +00:00
|
|
|
return [groupsController nameForIndex: groupsIndex];
|
2007-12-17 16:06:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) tableViewSelectionDidChange: (NSNotification *) notification
|
2008-11-29 20:03:18 +00:00
|
|
|
{
|
2008-12-08 03:55:08 +00:00
|
|
|
[self updateSelectedGroup];
|
2008-11-29 20:03:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) observeValueForKeyPath: (NSString *) keyPath ofObject: (id) object change: (NSDictionary *) change context: (void *) context
|
|
|
|
{
|
|
|
|
if (object == fSelectedColorView && [fTableView numberOfSelectedRows] == 1)
|
|
|
|
{
|
2008-11-29 20:29:54 +00:00
|
|
|
NSInteger index = [[GroupsController groups] indexForRow: [fTableView selectedRow]];
|
2008-11-29 20:03:18 +00:00
|
|
|
[[GroupsController groups] setColor: [fSelectedColorView color] forIndex: index];
|
|
|
|
[fTableView setNeedsDisplay: YES];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) controlTextDidEndEditing: (NSNotification *) notification
|
|
|
|
{
|
|
|
|
if ([notification object] == fSelectedColorNameField)
|
|
|
|
{
|
2008-11-29 20:29:54 +00:00
|
|
|
NSInteger index = [[GroupsController groups] indexForRow: [fTableView selectedRow]];
|
2008-11-29 20:03:18 +00:00
|
|
|
[[GroupsController groups] setName: [fSelectedColorNameField stringValue] forIndex: index];
|
|
|
|
[fTableView setNeedsDisplay: YES];
|
|
|
|
}
|
2007-12-17 16:06:20 +00:00
|
|
|
}
|
|
|
|
|
2007-12-17 21:11:53 +00:00
|
|
|
- (BOOL) tableView: (NSTableView *) tableView writeRowsWithIndexes: (NSIndexSet *) rowIndexes toPasteboard: (NSPasteboard *) pboard
|
|
|
|
{
|
|
|
|
[pboard declareTypes: [NSArray arrayWithObject: GROUP_TABLE_VIEW_DATA_TYPE] owner: self];
|
|
|
|
[pboard setData: [NSKeyedArchiver archivedDataWithRootObject: rowIndexes] forType: GROUP_TABLE_VIEW_DATA_TYPE];
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSDragOperation) tableView: (NSTableView *) tableView validateDrop: (id <NSDraggingInfo>) info
|
2008-11-04 00:34:13 +00:00
|
|
|
proposedRow: (NSInteger) row proposedDropOperation: (NSTableViewDropOperation) operation
|
2007-12-17 21:11:53 +00:00
|
|
|
{
|
|
|
|
NSPasteboard * pasteboard = [info draggingPasteboard];
|
|
|
|
if ([[pasteboard types] containsObject: GROUP_TABLE_VIEW_DATA_TYPE])
|
|
|
|
{
|
|
|
|
[fTableView setDropRow: row dropOperation: NSTableViewDropAbove];
|
|
|
|
return NSDragOperationGeneric;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NSDragOperationNone;
|
|
|
|
}
|
|
|
|
|
2008-11-04 00:34:13 +00:00
|
|
|
- (BOOL) tableView: (NSTableView *) tableView acceptDrop: (id <NSDraggingInfo>) info row: (NSInteger) newRow
|
2008-03-23 00:56:43 +00:00
|
|
|
dropOperation: (NSTableViewDropOperation) operation
|
2007-12-17 21:11:53 +00:00
|
|
|
{
|
|
|
|
NSPasteboard * pasteboard = [info draggingPasteboard];
|
|
|
|
if ([[pasteboard types] containsObject: GROUP_TABLE_VIEW_DATA_TYPE])
|
|
|
|
{
|
2008-12-06 20:41:18 +00:00
|
|
|
NSIndexSet * indexes = [NSKeyedUnarchiver unarchiveObjectWithData: [pasteboard dataForType: GROUP_TABLE_VIEW_DATA_TYPE]];
|
|
|
|
NSInteger oldRow = [indexes firstIndex], selectedRow = [fTableView selectedRow];
|
2007-12-17 21:11:53 +00:00
|
|
|
|
2008-12-06 20:41:18 +00:00
|
|
|
[[GroupsController groups] moveGroupAtRow: oldRow toRow: newRow];
|
|
|
|
|
|
|
|
if (oldRow < newRow)
|
|
|
|
newRow--;
|
|
|
|
|
|
|
|
if (selectedRow == oldRow)
|
|
|
|
selectedRow = newRow;
|
|
|
|
else if (selectedRow > oldRow && selectedRow <= newRow)
|
|
|
|
selectedRow--;
|
|
|
|
else if (selectedRow < oldRow && selectedRow >= newRow)
|
|
|
|
selectedRow++;
|
|
|
|
else;
|
|
|
|
|
|
|
|
[fTableView selectRow: selectedRow byExtendingSelection: NO];
|
2007-12-17 21:11:53 +00:00
|
|
|
[fTableView reloadData];
|
|
|
|
}
|
|
|
|
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2007-12-17 16:06:20 +00:00
|
|
|
- (void) addRemoveGroup: (id) sender
|
|
|
|
{
|
2008-11-29 21:46:34 +00:00
|
|
|
[[NSColorPanel sharedColorPanel] close];
|
|
|
|
|
2008-11-29 21:03:47 +00:00
|
|
|
NSInteger row;
|
|
|
|
|
2007-12-17 16:06:20 +00:00
|
|
|
switch ([[sender cell] tagForSegment: [sender selectedSegment]])
|
|
|
|
{
|
|
|
|
case ADD_TAG:
|
2008-03-26 19:51:58 +00:00
|
|
|
[[GroupsController groups] addNewGroup];
|
2007-12-17 16:06:20 +00:00
|
|
|
|
|
|
|
[fTableView reloadData];
|
|
|
|
|
2008-11-29 21:03:47 +00:00
|
|
|
row = [fTableView numberOfRows]-1;
|
2008-11-29 21:29:06 +00:00
|
|
|
[fTableView selectRow: row byExtendingSelection: NO];
|
2008-11-29 21:03:47 +00:00
|
|
|
[fTableView scrollRowToVisible: row];
|
|
|
|
|
2008-11-29 22:14:40 +00:00
|
|
|
[[fSelectedColorNameField window] makeFirstResponder: fSelectedColorNameField];
|
|
|
|
|
2007-12-17 16:06:20 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case REMOVE_TAG:
|
2008-11-29 20:29:54 +00:00
|
|
|
row = [fTableView selectedRow];
|
2008-11-29 21:29:06 +00:00
|
|
|
[[GroupsController groups] removeGroupWithRowIndex: row];
|
|
|
|
|
2007-12-17 16:06:20 +00:00
|
|
|
[fTableView reloadData];
|
|
|
|
|
2008-11-29 22:14:40 +00:00
|
|
|
NSInteger selectedRow = [fTableView selectedRow];
|
|
|
|
if (selectedRow != -1)
|
|
|
|
[fTableView scrollRowToVisible: selectedRow];
|
2008-11-29 21:29:06 +00:00
|
|
|
|
2007-12-17 16:06:20 +00:00
|
|
|
break;
|
|
|
|
}
|
2008-12-08 03:55:08 +00:00
|
|
|
|
|
|
|
[self updateSelectedGroup];
|
2007-12-17 16:06:20 +00:00
|
|
|
}
|
|
|
|
|
2008-11-30 19:23:15 +00:00
|
|
|
- (void) customDownloadLocationSheetShow: (id) sender
|
|
|
|
{
|
|
|
|
NSOpenPanel * panel = [NSOpenPanel openPanel];
|
|
|
|
|
|
|
|
[panel setPrompt: NSLocalizedString(@"Select", "Preferences -> Open panel prompt")];
|
|
|
|
[panel setAllowsMultipleSelection: NO];
|
|
|
|
[panel setCanChooseFiles: NO];
|
|
|
|
[panel setCanChooseDirectories: YES];
|
|
|
|
[panel setCanCreateDirectories: YES];
|
|
|
|
|
|
|
|
[panel beginSheetForDirectory: nil file: nil types: nil
|
|
|
|
modalForWindow: [fCustomLocationPopUp window] modalDelegate: self didEndSelector:
|
|
|
|
@selector(customDownloadLocationSheetClosed:returnCode:contextInfo:) contextInfo: nil];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction) toggleUseCustomDownloadLocation: (id) sender
|
|
|
|
{
|
|
|
|
NSInteger index = [[GroupsController groups] indexForRow: [fTableView selectedRow]];
|
|
|
|
if ([fCustomLocationEnableCheck state] == NSOnState)
|
|
|
|
{
|
|
|
|
if ([[GroupsController groups] customDownloadLocationForIndex: index])
|
|
|
|
[[GroupsController groups] setUsesCustomDownloadLocation: YES forIndex: index];
|
|
|
|
else
|
|
|
|
[self customDownloadLocationSheetShow: nil];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
[[GroupsController groups] setUsesCustomDownloadLocation: NO forIndex: index];
|
|
|
|
|
|
|
|
[fCustomLocationPopUp setEnabled: ([fCustomLocationEnableCheck state] == NSOnState)];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) customDownloadLocationSheetClosed: (NSOpenPanel *) openPanel returnCode: (int) code contextInfo: (void *) info
|
|
|
|
{
|
|
|
|
NSInteger index = [[GroupsController groups] indexForRow: [fTableView selectedRow]];
|
|
|
|
if (code == NSOKButton)
|
|
|
|
{
|
2008-12-08 23:38:01 +00:00
|
|
|
NSString * path = [[openPanel filenames] objectAtIndex: 0];
|
2008-11-30 19:23:15 +00:00
|
|
|
[[GroupsController groups] setCustomDownloadLocation: path forIndex: index];
|
|
|
|
[[GroupsController groups] setUsesCustomDownloadLocation: YES forIndex: index];
|
2008-12-08 04:11:08 +00:00
|
|
|
[self updateSelectedGroup]; //update the popup's icon/title
|
2008-11-30 19:23:15 +00:00
|
|
|
}
|
2008-12-08 23:38:01 +00:00
|
|
|
else
|
2008-11-30 19:23:15 +00:00
|
|
|
{
|
2008-12-08 23:38:01 +00:00
|
|
|
if (![[GroupsController groups] customDownloadLocationForIndex: index])
|
|
|
|
{
|
|
|
|
[[GroupsController groups] setUsesCustomDownloadLocation: NO forIndex: index];
|
|
|
|
[fCustomLocationEnableCheck setState: NSOffState];
|
|
|
|
[fCustomLocationPopUp setEnabled: NO];
|
|
|
|
}
|
2008-11-30 19:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[fCustomLocationPopUp selectItemAtIndex: 0];
|
|
|
|
}
|
|
|
|
|
2008-12-08 03:26:28 +00:00
|
|
|
#pragma mark -
|
|
|
|
#pragma mark Rule editor
|
|
|
|
|
|
|
|
- (IBAction) toggleUseAutoAssignRules: (id) sender;
|
|
|
|
{
|
|
|
|
NSInteger index = [[GroupsController groups] indexForRow: [fTableView selectedRow]];
|
|
|
|
if ([fAutoAssignRulesEnableCheck state] == NSOnState)
|
|
|
|
{
|
|
|
|
if ([[GroupsController groups] autoAssignRulesForIndex: index])
|
|
|
|
[[GroupsController groups] setUsesAutoAssignRules: YES forIndex: index];
|
|
|
|
else
|
|
|
|
[self orderFrontRulesSheet: nil];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
[[GroupsController groups] setUsesAutoAssignRules: NO forIndex: index];
|
|
|
|
|
|
|
|
[fAutoAssignRulesEditButton setEnabled: [fAutoAssignRulesEnableCheck state] == NSOnState];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction) orderFrontRulesSheet: (id) sender;
|
|
|
|
{
|
|
|
|
if (!fGroupRulesSheetWindow)
|
|
|
|
[NSBundle loadNibNamed: @"GroupRules" owner: self];
|
|
|
|
|
|
|
|
[fRuleEditor removeRowsAtIndexes: [NSIndexSet indexSetWithIndexesInRange: NSMakeRange(0, [fRuleEditor numberOfRows])]
|
|
|
|
includeSubrows: YES];
|
|
|
|
|
2008-12-13 17:18:28 +00:00
|
|
|
const NSInteger index = [[GroupsController groups] indexForRow: [fTableView selectedRow]];
|
2008-12-08 03:26:28 +00:00
|
|
|
NSArray * rules = [[GroupsController groups] autoAssignRulesForIndex: index];
|
|
|
|
if (rules)
|
|
|
|
{
|
2008-12-09 01:01:29 +00:00
|
|
|
for (NSInteger i = 0; i < [rules count]; i++)
|
2008-12-08 03:26:28 +00:00
|
|
|
{
|
|
|
|
[fRuleEditor addRow: nil];
|
2008-12-09 01:01:29 +00:00
|
|
|
[fRuleEditor setCriteria: [rules objectAtIndex: i] andDisplayValues: [NSArray array] forRowAtIndex: i];
|
2008-12-08 03:26:28 +00:00
|
|
|
}
|
|
|
|
}
|
2008-12-13 17:18:28 +00:00
|
|
|
|
2008-12-08 03:26:28 +00:00
|
|
|
if ([fRuleEditor numberOfRows] == 0)
|
|
|
|
[fRuleEditor addRow: nil];
|
2008-12-13 17:18:28 +00:00
|
|
|
|
|
|
|
[fRulesAllAnyButton selectItemWithTag: [[GroupsController groups] rulesNeedAllForIndex: index] ? RULES_ALL_TAG : RULES_ANY_TAG];
|
|
|
|
|
2008-12-09 00:51:08 +00:00
|
|
|
[NSApp beginSheet: fGroupRulesSheetWindow modalForWindow: [fTableView window] modalDelegate: nil didEndSelector: NULL
|
|
|
|
contextInfo: NULL];
|
2008-12-08 03:26:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction) cancelRules: (id) sender;
|
|
|
|
{
|
|
|
|
[fGroupRulesSheetWindow orderOut: nil];
|
|
|
|
[NSApp endSheet: fGroupRulesSheetWindow];
|
|
|
|
|
|
|
|
NSInteger index = [[GroupsController groups] indexForRow: [fTableView selectedRow]];
|
|
|
|
if (![[GroupsController groups] autoAssignRulesForIndex: index])
|
|
|
|
{
|
|
|
|
[[GroupsController groups] setUsesAutoAssignRules: NO forIndex: index];
|
|
|
|
[fAutoAssignRulesEnableCheck setState: NO];
|
|
|
|
[fAutoAssignRulesEditButton setEnabled: NO];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction) saveRules: (id) sender;
|
|
|
|
{
|
|
|
|
[fGroupRulesSheetWindow orderOut: nil];
|
|
|
|
[NSApp endSheet: fGroupRulesSheetWindow];
|
|
|
|
|
|
|
|
NSInteger index = [[GroupsController groups] indexForRow: [fTableView selectedRow]];
|
2008-12-13 17:18:28 +00:00
|
|
|
[[GroupsController groups] setRulesNeedAllForIndex: [[fRulesAllAnyButton selectedItem] tag] == RULES_ALL_TAG forIndex: index];
|
2008-12-08 03:26:28 +00:00
|
|
|
[[GroupsController groups] setUsesAutoAssignRules: YES forIndex: index];
|
|
|
|
|
|
|
|
NSMutableArray * rules = [NSMutableArray arrayWithCapacity: [fRuleEditor numberOfRows]];
|
|
|
|
for (NSInteger index = 0; index < [fRuleEditor numberOfRows]; ++index)
|
|
|
|
{
|
|
|
|
NSString * string = [[[fRuleEditor displayValuesForRow: index] objectAtIndex: 2] stringValue];
|
|
|
|
if (string && [string length] > 0)
|
|
|
|
{
|
|
|
|
NSMutableArray * rule = [[[fRuleEditor criteriaForRow: index] mutableCopy] autorelease];
|
|
|
|
[rule replaceObjectAtIndex: 2 withObject: string];
|
|
|
|
[rules addObject: rule];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
[[GroupsController groups] setAutoAssignRules: rules forIndex: index];
|
|
|
|
[fAutoAssignRulesEnableCheck setState: [[GroupsController groups] usesAutoAssignRulesForIndex: index]];
|
|
|
|
[fAutoAssignRulesEditButton setEnabled: [fAutoAssignRulesEnableCheck state] == NSOnState];
|
|
|
|
}
|
|
|
|
|
|
|
|
static NSString * torrentTitleCriteria = @"title";
|
|
|
|
static NSString * trackerURLCriteria = @"tracker";
|
|
|
|
static NSString * startsWithCriteria = @"begins";
|
|
|
|
static NSString * containsCriteria = @"contains";
|
|
|
|
static NSString * endsWithCriteria = @"ends";
|
|
|
|
|
|
|
|
- (NSInteger) ruleEditor: (NSRuleEditor *) editor numberOfChildrenForCriterion: (id) criterion withRowType: (NSRuleEditorRowType) rowType
|
|
|
|
{
|
|
|
|
if (!criterion)
|
|
|
|
return 2;
|
|
|
|
else if ([criterion isEqualToString: torrentTitleCriteria] || [criterion isEqualToString: trackerURLCriteria])
|
|
|
|
return 3;
|
|
|
|
else if ([criterion isEqualToString: startsWithCriteria] || [criterion isEqualToString: containsCriteria]
|
|
|
|
|| [criterion isEqualToString: endsWithCriteria])
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id) ruleEditor: (NSRuleEditor *) editor child: (NSInteger) index forCriterion: (id) criterion
|
|
|
|
withRowType: (NSRuleEditorRowType) rowType
|
|
|
|
{
|
|
|
|
if (criterion == nil)
|
|
|
|
return [[NSArray arrayWithObjects: torrentTitleCriteria, trackerURLCriteria, nil] objectAtIndex: index];
|
|
|
|
else if ([criterion isEqualToString: torrentTitleCriteria] || [criterion isEqualToString: trackerURLCriteria])
|
|
|
|
return [[NSArray arrayWithObjects: startsWithCriteria, containsCriteria, endsWithCriteria, nil] objectAtIndex: index];
|
|
|
|
else
|
|
|
|
return @"";
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id) ruleEditor: (NSRuleEditor *) editor displayValueForCriterion: (id) criterion inRow: (NSInteger) row
|
|
|
|
{
|
|
|
|
if ([criterion isEqualToString: torrentTitleCriteria])
|
|
|
|
return NSLocalizedString(@"Torrent Title", "Groups -> rule editor");
|
|
|
|
else if ([criterion isEqualToString: trackerURLCriteria])
|
|
|
|
return NSLocalizedString(@"Tracker URL", "Groups -> rule editor");
|
|
|
|
else if ([criterion isEqualToString: startsWithCriteria])
|
|
|
|
return NSLocalizedString(@"Starts With", "Groups -> rule editor");
|
|
|
|
else if ([criterion isEqualToString: containsCriteria])
|
|
|
|
return NSLocalizedString(@"Contains", "Groups -> rule editor");
|
|
|
|
else if ([criterion isEqualToString: endsWithCriteria])
|
|
|
|
return NSLocalizedString(@"Ends With", "Groups -> rule editor");
|
|
|
|
else
|
|
|
|
{
|
|
|
|
NSTextField * field = [[NSTextField alloc] initWithFrame: NSMakeRect(0, 0, 130, 22)];
|
|
|
|
[field setStringValue: criterion];
|
|
|
|
return [field autorelease];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) ruleEditorRowsDidChange: (NSNotification *) notification
|
|
|
|
{
|
|
|
|
CGFloat rowHeight = [fRuleEditor rowHeight];
|
|
|
|
NSInteger numberOfRows = [fRuleEditor numberOfRows];
|
|
|
|
CGFloat ruleEditorHeight = numberOfRows * rowHeight;
|
|
|
|
CGFloat heightDifference = ruleEditorHeight - [fRuleEditor frame].size.height;
|
|
|
|
NSRect windowFrame = [fRuleEditor window].frame;
|
|
|
|
windowFrame.size.height += heightDifference;
|
|
|
|
windowFrame.origin.y -= heightDifference;
|
|
|
|
[fRuleEditor.window setFrame: windowFrame display: YES animate: YES];
|
|
|
|
}
|
|
|
|
|
2007-12-17 16:06:20 +00:00
|
|
|
@end
|
2008-11-29 21:29:06 +00:00
|
|
|
|
2008-12-01 01:44:38 +00:00
|
|
|
@implementation GroupsPrefsController (Private)
|
2008-11-29 21:29:06 +00:00
|
|
|
|
2008-12-08 03:55:08 +00:00
|
|
|
- (void) updateSelectedGroup
|
2008-11-29 21:29:06 +00:00
|
|
|
{
|
|
|
|
[fAddRemoveControl setEnabled: [fTableView numberOfSelectedRows] > 0 forSegment: REMOVE_TAG];
|
|
|
|
if ([fTableView numberOfSelectedRows] == 1)
|
|
|
|
{
|
|
|
|
NSInteger index = [[GroupsController groups] indexForRow: [fTableView selectedRow]];
|
|
|
|
[fSelectedColorView setColor: [[GroupsController groups] colorForIndex: index]];
|
|
|
|
[fSelectedColorView setEnabled: YES];
|
|
|
|
[fSelectedColorNameField setStringValue: [[GroupsController groups] nameForIndex: index]];
|
|
|
|
[fSelectedColorNameField setEnabled: YES];
|
2008-11-30 19:23:15 +00:00
|
|
|
[fCustomLocationEnableCheck setState: [[GroupsController groups] usesCustomDownloadLocationForIndex: index]];
|
2008-12-06 20:41:18 +00:00
|
|
|
[fCustomLocationEnableCheck setEnabled: YES];
|
|
|
|
[fCustomLocationPopUp setEnabled: [fCustomLocationEnableCheck state] == NSOnState];
|
2008-11-30 19:23:15 +00:00
|
|
|
if ([[GroupsController groups] customDownloadLocationForIndex: index])
|
|
|
|
{
|
|
|
|
NSString * location = [[GroupsController groups] customDownloadLocationForIndex: index];
|
|
|
|
ExpandedPathToPathTransformer * pathTransformer = [[[ExpandedPathToPathTransformer alloc] init] autorelease];
|
|
|
|
[[fCustomLocationPopUp itemAtIndex: 0] setTitle: [pathTransformer transformedValue: location]];
|
|
|
|
ExpandedPathToIconTransformer * iconTransformer = [[[ExpandedPathToIconTransformer alloc] init] autorelease];
|
|
|
|
[[fCustomLocationPopUp itemAtIndex: 0] setImage: [iconTransformer transformedValue: location]];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
[[fCustomLocationPopUp itemAtIndex: 0] setTitle: @""];
|
|
|
|
[[fCustomLocationPopUp itemAtIndex: 0] setImage: nil];
|
|
|
|
}
|
2008-12-08 03:26:28 +00:00
|
|
|
|
|
|
|
[fAutoAssignRulesEnableCheck setState: [[GroupsController groups] usesAutoAssignRulesForIndex: index]];
|
|
|
|
[fAutoAssignRulesEnableCheck setEnabled: YES];
|
|
|
|
[fAutoAssignRulesEditButton setEnabled: ([fAutoAssignRulesEnableCheck state] == NSOnState)];
|
2008-11-29 21:29:06 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
[fSelectedColorView setColor: [NSColor whiteColor]];
|
|
|
|
[fSelectedColorView setEnabled: NO];
|
|
|
|
[fSelectedColorNameField setStringValue: @""];
|
|
|
|
[fSelectedColorNameField setEnabled: NO];
|
2008-11-30 19:23:15 +00:00
|
|
|
[fCustomLocationEnableCheck setEnabled: NO];
|
|
|
|
[fCustomLocationPopUp setEnabled: NO];
|
2008-12-08 03:26:28 +00:00
|
|
|
[fAutoAssignRulesEnableCheck setEnabled: NO];
|
|
|
|
[fAutoAssignRulesEditButton setEnabled: NO];
|
2008-11-29 21:29:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|