transmission/macosx/GroupsWindowController.m

203 lines
7.4 KiB
Mathematica
Raw Normal View History

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"
#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"
#define ADD_TAG 0
#define REMOVE_TAG 1
2007-12-17 16:06:20 +00:00
@interface GroupsWindowController (Private)
- (void) updateSelectedColor;
2007-12-17 16:06:20 +00:00
@end
@implementation GroupsWindowController
#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-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];
else
{
[fAddRemoveControl sizeToFit];
[fAddRemoveControl setLabel: @"+" forSegment: ADD_TAG];
[fAddRemoveControl setLabel: @"-" forSegment: REMOVE_TAG];
}
2007-12-17 16:06:20 +00:00
[fAddRemoveControl setEnabled: NO forSegment: REMOVE_TAG];
[fSelectedColorView addObserver: self forKeyPath: @"color" options: 0 context: NULL];
[self updateSelectedColor];
2007-12-17 16:06:20 +00:00
}
- (NSInteger) numberOfRowsInTableView: (NSTableView *) tableview
{
return [[GroupsController groups] numberOfGroups];
2007-12-17 16:06:20 +00:00
}
- (id) tableView: (NSTableView *) tableView objectValueForTableColumn: (NSTableColumn *) tableColumn row: (NSInteger) row
{
GroupsController * groupsController = [GroupsController groups];
2008-11-04 00:34:13 +00:00
NSInteger groupsIndex = [groupsController indexForRow: row];
2007-12-17 16:06:20 +00:00
NSString * identifier = [tableColumn identifier];
if ([identifier isEqualToString: @"Color"])
return [groupsController imageForIndex: groupsIndex];
2007-12-17 16:06:20 +00:00
else
return [groupsController nameForIndex: groupsIndex];
2007-12-17 16:06:20 +00:00
}
- (void) tableViewSelectionDidChange: (NSNotification *) notification
{
[self updateSelectedColor];
}
- (void) observeValueForKeyPath: (NSString *) keyPath ofObject: (id) object change: (NSDictionary *) change context: (void *) context
{
if (object == fSelectedColorView && [fTableView numberOfSelectedRows] == 1)
{
NSInteger index = [[GroupsController groups] indexForRow: [fTableView selectedRow]];
[[GroupsController groups] setColor: [fSelectedColorView color] forIndex: index];
[fTableView setNeedsDisplay: YES];
}
}
- (void) controlTextDidEndEditing: (NSNotification *) notification
{
if ([notification object] == fSelectedColorNameField)
{
NSInteger index = [[GroupsController groups] indexForRow: [fTableView selectedRow]];
[[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
dropOperation: (NSTableViewDropOperation) operation
2007-12-17 21:11:53 +00:00
{
NSPasteboard * pasteboard = [info draggingPasteboard];
if ([[pasteboard types] containsObject: GROUP_TABLE_VIEW_DATA_TYPE])
{
NSIndexSet * indexes = [NSKeyedUnarchiver unarchiveObjectWithData: [pasteboard dataForType: GROUP_TABLE_VIEW_DATA_TYPE]],
* selectedIndexes = [[GroupsController groups] moveGroupsAtRowIndexes: indexes toRow: newRow
oldSelected: [fTableView selectedRowIndexes]];
2007-12-17 21:11:53 +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
{
[[NSColorPanel sharedColorPanel] close];
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];
row = [fTableView numberOfRows]-1;
[fTableView selectRow: row byExtendingSelection: NO];
[fTableView scrollRowToVisible: row];
[[fSelectedColorNameField window] makeFirstResponder: fSelectedColorNameField];
2007-12-17 16:06:20 +00:00
break;
case REMOVE_TAG:
row = [fTableView selectedRow];
[[GroupsController groups] removeGroupWithRowIndex: row];
2007-12-17 16:06:20 +00:00
[fTableView reloadData];
NSInteger selectedRow = [fTableView selectedRow];
if (selectedRow != -1)
[fTableView scrollRowToVisible: selectedRow];
2007-12-17 16:06:20 +00:00
break;
}
}
@end
@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