mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 21:17:03 +00:00
414 lines
14 KiB
Plaintext
414 lines
14 KiB
Plaintext
|
|
@import <Foundation/CPObject.j>
|
|
|
|
@import <Foundation/CPIndexSet.j>
|
|
@import <AppKit/CPTableColumn.j>
|
|
@import <AppKit/CPTableView.j>
|
|
|
|
tableTestDragType = @"CPTableViewTestDragType";
|
|
CPLogRegister(CPLogConsole);
|
|
|
|
@implementation AppController : CPObject
|
|
{
|
|
CPTableView tableView;
|
|
CPTableView tableView2;
|
|
CPImage iconImage;
|
|
CPArray dataSet1;
|
|
CPArray dataSet2;
|
|
}
|
|
|
|
- (void)applicationDidFinishLaunching:(CPNotification)aNotification
|
|
{
|
|
dataSet1 = [],
|
|
dataSet2 = [];
|
|
|
|
for(var i = 1; i < 5; i++)
|
|
{
|
|
dataSet1[i - 1] = i;
|
|
dataSet2[i - 1] = i + 10;
|
|
}
|
|
|
|
var window1 = [[CPWindow alloc] initWithContentRect:CGRectMake(50, 50, 500, 400) styleMask:CPTitledWindowMask],
|
|
view = [window1 contentView];
|
|
|
|
[view setBackgroundColor:[CPColor whiteColor]];
|
|
//[view enterFullScreenMode:nil withOptions:nil];
|
|
|
|
tableView = [[CPTableView alloc] initWithFrame:CGRectMake(0.0, 0.0, 500.0, 500.0)];//[view bounds]];
|
|
|
|
[tableView setAllowsMultipleSelection:YES];
|
|
[tableView setAllowsColumnSelection:YES];
|
|
[tableView setUsesAlternatingRowBackgroundColors:YES];
|
|
[tableView setAlternatingRowBackgroundColors:[[CPColor whiteColor], [CPColor colorWithHexString:@"e4e7ff"], [CPColor colorWithHexString:@"f4e7ff"]]];
|
|
[tableView setGridStyleMask:CPTableViewSolidHorizontalGridLineMask | CPTableViewSolidVerticalGridLineMask];
|
|
|
|
// [tableView setBackgroundColor:[CPColor blueColor]];
|
|
|
|
var iconView = [[CPImageView alloc] initWithFrame:CGRectMake(16,16,0,0)];
|
|
|
|
[iconView setImageScaling:CPScaleNone];
|
|
|
|
var iconColumn = [[CPTableColumn alloc] initWithIdentifier:"icons"];
|
|
|
|
[iconColumn setWidth:32.0];
|
|
[iconColumn setMinWidth:32.0];
|
|
[iconColumn setDataView:iconView];
|
|
|
|
[tableView addTableColumn:iconColumn];
|
|
[tableView setVerticalMotionCanBeginDrag:YES];
|
|
|
|
iconImage = [[CPImage alloc] initWithContentsOfFile:"http://cappuccino.org/images/favicon.png" size:CGSizeMake(16,16)];
|
|
|
|
// [textDataView setFrameSize:CGSizeMake(200,32)];
|
|
// [textDataView setValue:CGInsetMake(9.0, 7.0, 5.0, 8.0) forThemeAttribute:@"content-inset"];
|
|
//[textDataView setValue:CGInsetMake(9.0, 7.0, 5.0, 8.0) forThemeAttribute:@"content-inset"];
|
|
//[textDataView setValue:CGInsetMake(4.0, 4.0, 3.0, 4.0) forThemeAttribute:@"bezel-inset"];
|
|
// [textDataView setValue:CGInsetMake(2, 0, 0, 0) forThemeAttribute:@"focus-inset"];
|
|
// [textDataView setValue:CGInsetMake(0, 0, 0, 0) forThemeAttribute:@"focus-inset" inState:CPThemeStateBezeled|CPThemeStateEditing];
|
|
|
|
//[textDataView setValue:CGSizeMake(1,1) forThemeAttribute:@"text-shadow-offset"];
|
|
//[textDataView setValue:[CPColor blackColor] forThemeAttribute:@"text-shadow-color" inState:CPThemeStateHighlighted];
|
|
|
|
// [textDataView setBackgroundColor:[[CPColor redColor] colorWithAlphaComponent:0.5]];
|
|
|
|
for (var i = 1; i <= 2; i++)
|
|
{
|
|
var column = [[CPTableColumn alloc] initWithIdentifier:String(i)];
|
|
|
|
[[column headerView] setStringValue:"Number "+i];
|
|
|
|
[column setWidth:200.0];
|
|
[column setMinWidth:150.0];
|
|
|
|
[column setEditable:YES];
|
|
[tableView addTableColumn:column];
|
|
}
|
|
|
|
//[tableView selectColumnIndexes:[CPIndexSet indexSetWithIndexesInRange:CPMakeRange(0,2)] byExtendingSelection:YES];
|
|
|
|
// [tableView setColumnAutoresizingStyle:CPTableViewUniformColumnAutoresizingStyle];
|
|
|
|
var scrollView = [[CPScrollView alloc] initWithFrame:CGRectMake(0, 0, CGRectGetWidth([view bounds]), CGRectGetHeight([view bounds]))];
|
|
[tableView setRowHeight:22.0];
|
|
[scrollView setDocumentView:tableView];
|
|
[scrollView setAutoresizingMask:CPViewWidthSizable | CPViewHeightSizable];
|
|
|
|
[view addSubview:scrollView];
|
|
|
|
[scrollView setAutohidesScrollers:YES];
|
|
|
|
[tableView setDelegate:self];
|
|
[tableView setDataSource:self];
|
|
[tableView setVerticalMotionCanBeginDrag:NO];
|
|
[tableView setDraggingDestinationFeedbackStyle:CPTableViewDropOn];
|
|
[tableView registerForDraggedTypes:[CPArray arrayWithObject:tableTestDragType]];
|
|
|
|
//[tableView scrollColumnToVisible:7];
|
|
//[tableView scrollRowToVisible:100];
|
|
|
|
//[tableView sizeLastColumnToFit];
|
|
[window1 orderFront:self];
|
|
[self newWindow];
|
|
}
|
|
|
|
- (void)newWindow
|
|
{
|
|
|
|
var window2 = [[CPWindow alloc] initWithContentRect:CGRectMake(450, 50, 500, 400) styleMask:CPTitledWindowMask | CPResizableWindowMask];
|
|
|
|
tableView2 = [[CPTableView alloc] initWithFrame:CGRectMake(0.0, 0.0, 500.0, 500.0)];//[view bounds]];
|
|
|
|
[tableView2 setAllowsMultipleSelection:YES];
|
|
[tableView2 setUsesAlternatingRowBackgroundColors:YES];
|
|
[tableView2 setGridStyleMask:CPTableViewSolidHorizontalGridLineMask | CPTableViewSolidVerticalGridLineMask];
|
|
|
|
// [tableView setBackgroundColor:[CPColor blueColor]];
|
|
|
|
var iconView = [[CPImageView alloc] initWithFrame:CGRectMake(16,16,0,0)];
|
|
|
|
[iconView setImageScaling:CPScaleNone];
|
|
|
|
var iconColumn = [[CPTableColumn alloc] initWithIdentifier:"icons"];
|
|
|
|
[iconColumn setWidth:32.0];
|
|
[iconColumn setMinWidth:32.0];
|
|
[iconColumn setDataView:iconView];
|
|
|
|
[tableView2 addTableColumn:iconColumn];
|
|
|
|
iconImage = [[CPImage alloc] initWithContentsOfFile:"http://cappuccino.org/images/favicon.png" size:CGSizeMake(16,16)];
|
|
|
|
var textDataView = [CPTextField new];
|
|
// [textDataView setFrameSize:CGSizeMake(200,32)];
|
|
// [textDataView setValue:CGInsetMake(9.0, 7.0, 5.0, 8.0) forThemeAttribute:@"content-inset"];
|
|
//[textDataView setValue:CGInsetMake(9.0, 7.0, 5.0, 8.0) forThemeAttribute:@"content-inset"];
|
|
//[textDataView setValue:CGInsetMake(4.0, 4.0, 3.0, 4.0) forThemeAttribute:@"bezel-inset"];
|
|
// [textDataView setValue:CGInsetMake(2, 0, 0, 0) forThemeAttribute:@"focus-inset"];
|
|
// [textDataView setValue:CGInsetMake(0, 0, 0, 0) forThemeAttribute:@"focus-inset" inState:CPThemeStateBezeled|CPThemeStateEditing];
|
|
|
|
[textDataView setValue:[CPColor whiteColor] forThemeAttribute:@"text-color" inState:CPThemeStateHighlighted];
|
|
[textDataView setValue:[CPFont systemFontOfSize:12] forThemeAttribute:@"font" inState:CPThemeStateHighlighted];
|
|
|
|
//[textDataView setValue:CGSizeMake(1,1) forThemeAttribute:@"text-shadow-offset"];
|
|
//[textDataView setValue:[CPColor blackColor] forThemeAttribute:@"text-shadow-color" inState:CPThemeStateHighlighted];
|
|
|
|
// [textDataView setBackgroundColor:[[CPColor redColor] colorWithAlphaComponent:0.5]];
|
|
|
|
for (var i = 1; i <= 3; i++)
|
|
{
|
|
var column = [[CPTableColumn alloc] initWithIdentifier:String(i)];
|
|
|
|
[[column headerView] setStringValue:"Number "+i];
|
|
|
|
[column setWidth:200.0];
|
|
[column setMinWidth:150.0];
|
|
|
|
[column setDataView:textDataView];
|
|
[column setEditable:YES];
|
|
[tableView2 addTableColumn:column];
|
|
}
|
|
|
|
//[tableView selectColumnIndexes:[CPIndexSet indexSetWithIndexesInRange:CPMakeRange(0,2)] byExtendingSelection:YES];
|
|
|
|
[tableView2 setColumnAutoresizingStyle:CPTableViewUniformColumnAutoresizingStyle];
|
|
|
|
var scrollView = [[CPScrollView alloc] initWithFrame:[[window2 contentView] bounds]];
|
|
[tableView2 setRowHeight:32.0];
|
|
[scrollView setDocumentView:tableView2];
|
|
[scrollView setAutoresizingMask:CPViewWidthSizable | CPViewHeightSizable];
|
|
|
|
[[window2 contentView] addSubview:scrollView];
|
|
|
|
[scrollView setAutohidesScrollers:YES];
|
|
|
|
[tableView2 setDelegate:self];
|
|
[tableView2 setDataSource:self];
|
|
|
|
[tableView2 setVerticalMotionCanBeginDrag:NO];
|
|
[tableView2 registerForDraggedTypes:[CPArray arrayWithObject:tableTestDragType]];
|
|
[tableView2 setDraggingDestinationFeedbackStyle:CPTableViewDropAbove];
|
|
|
|
[window2 orderFront:self];
|
|
}
|
|
|
|
- (int)numberOfRowsInTableView:(CPTableView)atableView
|
|
{
|
|
if(atableView === tableView)
|
|
return dataSet1.length;
|
|
else if(atableView === tableView2)
|
|
return dataSet2.length;
|
|
}
|
|
|
|
- (id)tableView:(CPTableView)atableView objectValueForTableColumn:(CPTableColumn)tableColumn row:(int)row
|
|
{
|
|
|
|
if(atableView === tableView)
|
|
{
|
|
if ([tableColumn identifier] === "icons")
|
|
return iconImage;
|
|
else
|
|
return String(dataSet1[row]);
|
|
}
|
|
else if(atableView === tableView2)
|
|
{
|
|
if ([tableColumn identifier] === "icons")
|
|
return iconImage;
|
|
else
|
|
return String(dataSet2[row]);
|
|
}
|
|
}
|
|
|
|
// - (id)tableView:(CPTableView)tableView heightOfRow:(int)row
|
|
// {
|
|
// return 50;
|
|
// }
|
|
|
|
//- (void)tableViewSelectionIsChanging:(CPNotification)aNotification
|
|
//{
|
|
// CPLog.debug(@"changing! %@", [aNotification description]);
|
|
//}
|
|
//
|
|
//- (void)tableViewSelectionDidChange:(CPNotification)aNotification
|
|
//{
|
|
// CPLog.debug(@"did change! %@", [aNotification description]);
|
|
//}
|
|
|
|
- (BOOL)tableView:(CPTableView)aTableView shouldSelectRow:(int)rowIndex
|
|
{
|
|
//CPLog.debug(@"shouldSelectRow %d", rowIndex);
|
|
//for (var i = 2, sqrt = SQRT(rowIndex+1); i <= sqrt; i++)
|
|
// if ((rowIndex+1) % i === 0)
|
|
//return false;
|
|
// if(rowIndex % 2 == 1)
|
|
// return true;
|
|
// else
|
|
return YES;
|
|
}
|
|
|
|
- (BOOL)selectionShouldChangeInTableView:(CPTableView)aTableView
|
|
{
|
|
//CPLog.debug(@"selectionShouldChangeInTableView");
|
|
return YES;
|
|
}
|
|
|
|
- (void)tableViewSelectionDidChange:(id)notification
|
|
{
|
|
CPLogConsole(_cmd + [notification description]);
|
|
}
|
|
|
|
- (void)tableViewSelectionIsChanging:(id)notification
|
|
{
|
|
CPLogConsole(_cmd + [notification description]);
|
|
}
|
|
|
|
- (void)tableViewColumnDidResize:(id)notification
|
|
{
|
|
CPLogConsole(_cmd + [notification description]);
|
|
}
|
|
|
|
//- (CPIndexSet)tableView:(CPTableView)tableView selectionIndexesForProposedSelection:(CPIndexSet)proposedSelectionIndexes
|
|
//{
|
|
// CPLog.debug(@"selectionIndexesForProposedSelection %@", [proposedSelectionIndexes description]);
|
|
// return proposedSelectionIndexes;
|
|
//}
|
|
|
|
|
|
- (BOOL)tableView:(CPTableView)aTableView shouldEditTableColumn:(CPTableColumn)tableColumn row:(int)row
|
|
{
|
|
return NO;
|
|
}
|
|
|
|
- (void)tableView:(CPTableView)aTableView willDisplayView:(CPView)aView forTableColumn:(CPTableColumn)tableColumn row:(int)row
|
|
{
|
|
CPLogConsole(_cmd + " column: " + [tableColumn identifier] + " row:" + row)
|
|
}
|
|
|
|
- (void)tableView:(CPTableView)aTableView setObjectValue:(id)aValue forTableColumn:(CPTableColumn)tableColumn row:(int)row
|
|
{
|
|
|
|
}
|
|
|
|
- (BOOL)tableView:(CPTableView)aTableView writeRowsWithIndexes:(CPIndexSet)rowIndexes toPasteboard:(CPPasteboard)pboard
|
|
{
|
|
var data = [rowIndexes, [aTableView UID]];
|
|
|
|
var encodedData = [CPKeyedArchiver archivedDataWithRootObject:data];
|
|
[pboard declareTypes:[CPArray arrayWithObject:tableTestDragType] owner:self];
|
|
[pboard setData:encodedData forType:tableTestDragType];
|
|
|
|
return YES;
|
|
}
|
|
|
|
- (CPDragOperation)tableView:(CPTableView)aTableView
|
|
validateDrop:(id)info
|
|
proposedRow:(CPInteger)row
|
|
proposedDropOperation:(CPTableViewDropOperation)operation
|
|
{
|
|
// console.log([aTableView rectOfRow:0]);
|
|
//console.log(row)
|
|
|
|
CPLog.debug(@"proposed row: %i", row);
|
|
|
|
[[aTableView window] orderFront:nil];
|
|
|
|
if(aTableView === tableView)
|
|
{
|
|
// This is actually the behavior in Cocoa
|
|
if (row >= [aTableView numberOfRows])
|
|
row = [aTableView numberOfRows] - 1;
|
|
|
|
[aTableView setDropRow:row dropOperation:CPTableViewDropOn];
|
|
}
|
|
|
|
else
|
|
[aTableView setDropRow:row dropOperation:CPTableViewDropAbove];
|
|
|
|
return CPDragOperationMove;
|
|
}
|
|
|
|
- (BOOL)tableView:(CPTableView)aTableView acceptDrop:(id)info row:(int)row dropOperation:(CPTableViewDropOperation)operation
|
|
{
|
|
var pboard = [info draggingPasteboard],
|
|
rowData = [pboard dataForType:tableTestDragType],
|
|
tables = [tableView, tableView2],
|
|
dataSets = [dataSet1, dataSet2];
|
|
|
|
rowData = [CPKeyedUnarchiver unarchiveObjectWithData:rowData];
|
|
|
|
var sourceIndexes = rowData[0],
|
|
sourceTableUID = rowData[1];
|
|
|
|
var index = (aTableView == tableView) ? 1 : 0;
|
|
|
|
var destinationTable = tables[1 - index],
|
|
sourceTable = tables[index],
|
|
destinationDataSet = dataSets[1 - index],
|
|
sourceDataSet = dataSets[index];
|
|
|
|
if(operation | CPDragOperationMove)
|
|
{
|
|
if (sourceTableUID == [aTableView UID])
|
|
{
|
|
[destinationDataSet moveIndexes:sourceIndexes toIndex:row];
|
|
[destinationTable reloadData];
|
|
var destIndexes = [CPIndexSet indexSetWithIndexesInRange:CPMakeRange(row, [sourceIndexes count])];
|
|
[destinationTable selectRowIndexes:destIndexes byExtendingSelection:NO];
|
|
}
|
|
else
|
|
{
|
|
var destIndexes = [CPIndexSet indexSetWithIndexesInRange:CPMakeRange(row, [sourceIndexes count])];
|
|
var sourceObjects = [sourceDataSet objectsAtIndexes:sourceIndexes];
|
|
|
|
[destinationDataSet insertObjects:sourceObjects atIndexes:destIndexes];
|
|
[destinationTable reloadData];
|
|
[destinationTable selectRowIndexes:destIndexes byExtendingSelection:NO];
|
|
|
|
[sourceDataSet removeObjectsAtIndexes:sourceIndexes];
|
|
[sourceTable reloadData];
|
|
[sourceTable selectRowIndexes:[CPIndexSet indexSet] byExtendingSelection:NO];
|
|
}
|
|
}
|
|
|
|
return YES;
|
|
}
|
|
|
|
- (void)tableView:(CPTableView)aTableView didEndDraggedImage:(CPImage)anImage atPosition:(CGPoint)aPoint operation:(CPDragOperation)anOperation
|
|
{
|
|
//for convenience
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation CPArray (MoveIndexes)
|
|
|
|
- (void)moveIndexes:(CPIndexSet)indexes toIndex:(int)insertIndex
|
|
{
|
|
var aboveCount = 0,
|
|
object,
|
|
removeIndex;
|
|
|
|
var index = [indexes lastIndex];
|
|
|
|
while (index != CPNotFound)
|
|
{
|
|
if (index >= insertIndex)
|
|
{
|
|
removeIndex = index + aboveCount;
|
|
aboveCount ++;
|
|
}
|
|
else
|
|
{
|
|
removeIndex = index;
|
|
insertIndex --;
|
|
}
|
|
|
|
object = [self objectAtIndex:removeIndex];
|
|
[self removeObjectAtIndex:removeIndex];
|
|
[self insertObject:object atIndex:insertIndex];
|
|
|
|
index = [indexes indexLessThanIndex:index];
|
|
}
|
|
}
|
|
|
|
@end
|