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.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#import "GroupsWindowController.h"
|
2008-03-23 00:56:43 +00:00
|
|
|
#import "GroupsController.h"
|
2007-12-17 16:06:20 +00:00
|
|
|
#import "NSApplicationAdditions.h"
|
|
|
|
|
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
|
|
|
|
|
|
|
@interface GroupsWindowController (Private)
|
|
|
|
|
2008-11-29 20:03:18 +00:00
|
|
|
- (void) updateSelectedColor;
|
2007-12-17 16:06:20 +00:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation GroupsWindowController
|
|
|
|
|
2008-11-29 21:03:47 +00:00
|
|
|
#warning should this still be a window controller?
|
2007-12-17 16:06:20 +00:00
|
|
|
- (void) awakeFromNib
|
|
|
|
{
|
2008-03-26 18:40:41 +00:00
|
|
|
[[[fTableView tableColumnWithIdentifier: @"Button"] dataCell] setTitle: NSLocalizedString(@"Color", "Groups -> color button")];
|
2007-12-23 19:21:02 +00:00
|
|
|
|
2007-12-17 21:11:53 +00:00
|
|
|
[fTableView registerForDraggedTypes: [NSArray arrayWithObject: GROUP_TABLE_VIEW_DATA_TYPE]];
|
|
|
|
|
2007-12-17 16:06:20 +00:00
|
|
|
if ([NSApp isOnLeopardOrBetter])
|
|
|
|
[[self window] setContentBorderThickness: [[fTableView enclosingScrollView] frame].origin.y forEdge: NSMinYEdge];
|
2007-12-18 03:18:32 +00:00
|
|
|
else
|
|
|
|
{
|
2008-06-03 15:27:03 +00:00
|
|
|
[fAddRemoveControl sizeToFit];
|
|
|
|
[fAddRemoveControl setLabel: @"+" forSegment: ADD_TAG];
|
|
|
|
[fAddRemoveControl setLabel: @"-" forSegment: REMOVE_TAG];
|
2007-12-18 03:18:32 +00:00
|
|
|
}
|
2008-11-29 20:03:18 +00:00
|
|
|
|
2007-12-17 16:06:20 +00:00
|
|
|
[fAddRemoveControl setEnabled: NO forSegment: REMOVE_TAG];
|
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
|
|
|
|
|
|
|
if ([fTableView numberOfRows] > 0)
|
|
|
|
[fTableView selectRow: 0 byExtendingSelection: NO];
|
|
|
|
else
|
|
|
|
[self updateSelectedColor]; //make sure all fields are disabled
|
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
|
|
|
{
|
|
|
|
[self updateSelectedColor];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (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-03-23 00:56:43 +00:00
|
|
|
NSIndexSet * indexes = [NSKeyedUnarchiver unarchiveObjectWithData: [pasteboard dataForType: GROUP_TABLE_VIEW_DATA_TYPE]],
|
2008-03-24 23:06:04 +00:00
|
|
|
* selectedIndexes = [[GroupsController groups] moveGroupsAtRowIndexes: indexes toRow: newRow
|
2008-03-23 00:56:43 +00:00
|
|
|
oldSelected: [fTableView selectedRowIndexes]];
|
2007-12-17 21:11:53 +00:00
|
|
|
|
2008-03-23 00:56:43 +00:00
|
|
|
[fTableView selectRowIndexes: selectedIndexes 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];
|
|
|
|
|
2007-12-17 16:06:20 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case REMOVE_TAG:
|
2008-11-29 20:29:54 +00:00
|
|
|
#warning refactor in color picker (fCurrentColorIndex) code)
|
2008-03-23 04:36:30 +00:00
|
|
|
//close color picker if corresponding row is removed
|
2008-11-29 20:29:54 +00:00
|
|
|
row = [fTableView selectedRow];
|
2008-03-23 04:36:30 +00:00
|
|
|
if ([[NSColorPanel sharedColorPanel] isVisible]
|
2008-11-29 20:29:54 +00:00
|
|
|
&& row == [[GroupsController groups] rowValueForIndex: fCurrentColorIndex])
|
2008-03-23 04:36:30 +00:00
|
|
|
[[NSColorPanel sharedColorPanel] close];
|
2007-12-17 16:06:20 +00:00
|
|
|
|
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 21:29:06 +00:00
|
|
|
//select the next row
|
|
|
|
if (row == [fTableView numberOfRows])
|
|
|
|
row--;
|
|
|
|
if (row >= 0)
|
|
|
|
[fTableView selectRow: row byExtendingSelection: NO];
|
|
|
|
|
2007-12-17 16:06:20 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
2008-11-29 21:29:06 +00:00
|
|
|
|
|
|
|
@implementation GroupsWindowController (Private)
|
|
|
|
|
|
|
|
- (void) updateSelectedColor
|
|
|
|
{
|
|
|
|
[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];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
[fSelectedColorView setColor: [NSColor whiteColor]];
|
|
|
|
[fSelectedColorView setEnabled: NO];
|
|
|
|
[fSelectedColorNameField setStringValue: @""];
|
|
|
|
[fSelectedColorNameField setEnabled: NO];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|