1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
|
/* FSNBrowserMatrix.m
*
* Copyright (C) 2004-2024 Free Software Foundation, Inc.
*
* Authors: Enrico Sersale
* Riccardo Mottola <rm@gnu.org>
* Date: July 2004
*
* This file is part of the GNUstep GWorkspace application
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 31 Milk Street #960789 Boston, MA 02196 USA.
*/
#include <math.h>
#import <Foundation/Foundation.h>
#import <AppKit/AppKit.h>
#import <GNUstepBase/GNUstep.h>
#import "FSNBrowserMatrix.h"
#import "FSNBrowserCell.h"
#import "FSNBrowserColumn.h"
#import "FSNIcon.h"
#import "FSNFunctions.h"
#define DOUBLE_CLICK_LIMIT 300
#define EDIT_CLICK_LIMIT 1000
@implementation FSNBrowserMatrix
- (void)dealloc
{
[super dealloc];
}
- (id)initInColumn:(FSNBrowserColumn *)col
withFrame:(NSRect)frameRect
mode:(NSMatrixMode)aMode
prototype:(FSNBrowserCell *)aCell
numberOfRows:(NSInteger)numRows
numberOfColumns:(NSInteger)numColumns
acceptDnd:(BOOL)dnd
{
self = [super initWithFrame: frameRect mode: aMode prototype: aCell
numberOfRows: numRows numberOfColumns: numColumns];
if (self)
{
column = col;
mouseFlags = 0;
dndTarget = nil;
acceptDnd = dnd;
if (acceptDnd)
{
[self registerForDraggedTypes: [NSArray arrayWithObjects:
NSFilenamesPboardType,
@"GWLSFolderPboardType",
@"GWRemoteFilenamesPboardType",
nil]];
}
editstamp = 0.0;
editIndex = -1;
}
return self;
}
- (void)visibleCellsNodes:(NSArray **)nodes
scrollTuneSpace:(float *)tspace
{
NSArray *cells = [self cells];
if (cells && [cells count])
{
NSRect vr = [self visibleRect];
float ylim = vr.origin.y + vr.size.height - [self cellSize].height;
NSMutableArray *vnodes = [NSMutableArray array];
BOOL found = NO;
NSUInteger i;
for (i = 0; i < [cells count]; i++)
{
NSRect cr = [self cellFrameAtRow: i column: 0];
if ((cr.origin.y >= vr.origin.y) && (cr.origin.y <= ylim))
{
if (found == NO) {
*tspace = cr.origin.y - vr.origin.y;
found = YES;
}
[vnodes addObject: [[cells objectAtIndex: i] node]];
}
}
if ([vnodes count])
{
*nodes = vnodes;
}
}
}
- (void)scrollToFirstPositionCell:(id)aCell withScrollTune:(float)vtune
{
NSRect vr, cr;
NSInteger row, col;
vr = [self visibleRect];
[self getRow: &row column: &col ofCell: aCell];
cr = [self cellFrameAtRow: row column: col];
cr.size.height = vr.size.height - vtune;
[self scrollRectToVisible: cr];
}
- (void)selectIconOfCell:(id)aCell
{
FSNBrowserCell *cell = (FSNBrowserCell *)aCell;
if ([cell selectIcon])
{
NSRect cellFrame;
NSInteger row, col;
[self getRow: &row column: &col ofCell: aCell];
cellFrame = [self cellFrameAtRow: row column: col];
[self setNeedsDisplayInRect: cellFrame];
}
[self unSelectIconsOfCellsDifferentFrom: cell];
}
- (void)unSelectIconsOfCellsDifferentFrom:(id)aCell
{
NSArray *cells = [self cells];
NSUInteger i = 0;
for (i = 0; i < [cells count]; i++)
{
FSNBrowserCell *c = [cells objectAtIndex: i];
if (c != aCell)
{
if ([c unselectIcon])
{
NSRect cellFrame;
NSInteger row, col;
[self getRow: &row column: &col ofCell: c];
cellFrame = [self cellFrameAtRow: row column: col];
[self setNeedsDisplayInRect: cellFrame];
}
}
}
}
- (NSUInteger)mouseFlags
{
return mouseFlags;
}
- (void)setMouseFlags:(NSUInteger)flags
{
mouseFlags = flags;
}
- (void)mouseDown:(NSEvent*)theEvent
{
int clickCount;
NSPoint lastLocation;
NSInteger row, col;
mouseFlags = [theEvent modifierFlags];
if (acceptDnd == NO)
{
[super mouseDown: theEvent];
return;
}
if (([self numberOfRows] == 0) || ([self numberOfColumns] == 0))
{
[super mouseDown: theEvent];
return;
}
[column stopCellEditing];
clickCount = [theEvent clickCount];
if (clickCount >= 2)
{
editIndex = -1;
[self sendDoubleAction];
return;
}
lastLocation = [theEvent locationInWindow];
lastLocation = [self convertPoint: lastLocation
fromView: nil];
if ([self getRow: &row column: &col forPoint: lastLocation])
{
FSNBrowserCell *cell = [[self cells] objectAtIndex: row];
NSRect rect = [self cellFrameAtRow: row column: col];
if ([cell isEnabled])
{
int sz = [cell iconSize];
NSSize size = NSMakeSize(sz, sz);
rect.size.width = size.width;
rect.size.height = size.height;
if (NSPointInRect(lastLocation, rect))
{
NSEvent *nextEvent;
BOOL startdnd = NO;
int dragdelay = 0;
editIndex = -1;
if (!([theEvent modifierFlags] & NSShiftKeyMask))
{
[self deselectAllCells];
if (editIndex != row)
{
editIndex = row;
}
}
[self selectCellAtRow: row column: col];
[self sendAction];
while (1)
{
nextEvent = [[self window] nextEventMatchingMask:
NSLeftMouseUpMask | NSLeftMouseDraggedMask];
if ([nextEvent type] == NSLeftMouseUp)
{
[[self window] postEvent: nextEvent atStart: NO];
break;
}
else if ([nextEvent type] == NSLeftMouseDragged)
{
if (dragdelay < 5)
{
dragdelay++;
}
else
{
editIndex = -1;
startdnd = YES;
break;
}
}
}
if (startdnd)
[self startExternalDragOnEvent: theEvent];
}
else
{
[super mouseDown: theEvent];
if (editIndex != row)
{
editIndex = row;
}
else
{
NSTimeInterval interval = ([theEvent timestamp] - editstamp);
if ((interval > DOUBLE_CLICK_LIMIT)
&& (interval < EDIT_CLICK_LIMIT)) {
[column setEditorForCell: cell];
}
}
}
editstamp = [theEvent timestamp];
}
}
}
- (BOOL)acceptsFirstResponder
{
return YES;
}
@end
@implementation FSNBrowserMatrix (DraggingSource)
- (void)startExternalDragOnEvent:(NSEvent *)event
{
NSArray *selectedCells = [self selectedCells];
unsigned count = [selectedCells count];
if (count) {
NSPoint dragPoint = [event locationInWindow];
NSPasteboard *pb = [NSPasteboard pasteboardWithName: NSDragPboard];
int iconSize = [[self prototype] iconSize];
NSImage *dragIcon;
[self declareAndSetShapeOnPasteboard: pb];
if (count > 1)
{
dragIcon = [[FSNodeRep sharedInstance] multipleSelectionIconOfSize: iconSize];
}
else
{
FSNBrowserCell *cell = [selectedCells objectAtIndex: 0];
FSNode *node = [cell node];
if (node && [node isValid])
{
dragIcon = [[FSNodeRep sharedInstance] iconOfSize: iconSize forNode: node];
}
else
{
return;
}
}
dragPoint = [self convertPoint: dragPoint fromView: nil];
dragPoint.x -= (iconSize / 2);
dragPoint.y += (iconSize / 2);
[self dragImage: dragIcon
at: dragPoint
offset: NSZeroSize
event: event
pasteboard: pb
source: self
slideBack: YES];
}
}
- (void)draggedImage:(NSImage *)anImage
endedAt:(NSPoint)aPoint
deposited:(BOOL)flag
{
}
- (void)declareAndSetShapeOnPasteboard:(NSPasteboard *)pb
{
NSArray *selectedCells = [self selectedCells];
NSMutableArray *selection = [NSMutableArray array];
NSArray *dndtypes;
int i;
for (i = 0; i < [selectedCells count]; i++)
{
FSNBrowserCell *cell = [selectedCells objectAtIndex: i];
FSNode *node = [cell node];
if (node && [node isValid])
{
[selection addObject: [node path]];
}
}
if ([selection count])
{
dndtypes = [NSArray arrayWithObject: NSFilenamesPboardType];
[pb declareTypes: dndtypes owner: nil];
if ([pb setPropertyList: selection forType: NSFilenamesPboardType] == NO)
{
return;
}
}
}
- (NSDragOperation)draggingSourceOperationMaskForLocal:(BOOL)flag
{
return NSDragOperationEvery;
}
@end
@implementation FSNBrowserMatrix (DraggingDestination)
- (NSDragOperation)checkReturnValueForCell:(FSNBrowserCell *)acell
withDraggingInfo:(id <NSDraggingInfo>)sender
{
if (dndTarget != acell) {
dndTarget = acell;
dragOperation = [column draggingEntered: sender inMatrixCell: dndTarget];
if (dragOperation != NSDragOperationNone)
{
[self selectIconOfCell: dndTarget];
}
else
{
[self unSelectIconsOfCellsDifferentFrom: nil];
}
}
return dragOperation;
}
- (NSDragOperation)draggingEntered:(id <NSDraggingInfo>)sender
{
NSPoint location;
NSInteger row, col;
location = [[self window] mouseLocationOutsideOfEventStream];
location = [self convertPoint: location fromView: nil];
dndTarget = nil;
if ([self getRow: &row column: &col forPoint: location])
{
dndTarget = [[self cells] objectAtIndex: row];
dragOperation = [column draggingEntered: sender inMatrixCell: dndTarget];
if (dragOperation != NSDragOperationNone)
{
[self selectIconOfCell: dndTarget];
}
else
{
[self unSelectIconsOfCellsDifferentFrom: nil];
}
if (dragOperation == NSDragOperationNone) {
dndTarget = nil;
return [column draggingEntered: sender];
}
return dragOperation;
}
return NSDragOperationNone;
}
- (NSDragOperation)draggingUpdated:(id <NSDraggingInfo>)sender
{
NSPoint location;
NSInteger row, col;
location = [[self window] mouseLocationOutsideOfEventStream];
location = [self convertPoint: location fromView: nil];
if ([self getRow: &row column: &col forPoint: location])
{
FSNBrowserCell *cell = [[self cells] objectAtIndex: row];
[self checkReturnValueForCell: cell withDraggingInfo: sender];
if (dragOperation == NSDragOperationNone)
{
dndTarget = nil;
return [column draggingUpdated: sender];
}
return dragOperation;
}
return NSDragOperationNone;
}
- (void)draggingExited:(id <NSDraggingInfo>)sender
{
[self unSelectIconsOfCellsDifferentFrom: nil];
dndTarget = nil;
}
- (BOOL)prepareForDragOperation:(id <NSDraggingInfo>)sender
{
return YES;
}
- (BOOL)performDragOperation:(id <NSDraggingInfo>)sender
{
return YES;
}
- (void)concludeDragOperation:(id <NSDraggingInfo>)sender
{
if (dndTarget)
{
[column concludeDragOperation: sender inMatrixCell: dndTarget];
[self unSelectIconsOfCellsDifferentFrom: nil];
}
else
{
[column concludeDragOperation: sender];
}
}
@end
|