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 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979
|
/* GWDesktopManager.m
*
* Copyright (C) 2005-2021 Free Software Foundation, Inc.
*
* Authors: Enrico Sersale <enrico@imago.ro>
* Riccardo Mottola <rm@gnu.org>
*
* Date: January 2005
*
* 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.
*/
#import <AppKit/AppKit.h>
#import "GWDesktopManager.h"
#import "GWDesktopWindow.h"
#import "GWDesktopView.h"
#import "Dock.h"
#import "FSNFunctions.h"
#import "GWorkspace.h"
#import "GWViewersManager.h"
#import "TShelf/TShelfWin.h"
#import "Thumbnailer/GWThumbnailer.h"
#define RESV_MARGIN 10
static GWDesktopManager *desktopManager = nil;
@implementation GWDesktopManager
+ (GWDesktopManager *)desktopManager
{
if (desktopManager == nil)
{
desktopManager = [[GWDesktopManager alloc] init];
}
return desktopManager;
}
- (void)dealloc
{
[[ws notificationCenter] removeObserver: self];
[nc removeObserver: self];
RELEASE (dskNode);
RELEASE (win);
RELEASE (dock);
RELEASE (mpointWatcher);
[super dealloc];
}
- (id)init
{
self = [super init];
if (self) {
NSUserDefaults *defaults;
id defentry;
NSString *path;
id window = nil;
fm = [NSFileManager defaultManager];
nc = [NSNotificationCenter defaultCenter];
ws = [NSWorkspace sharedWorkspace];
gworkspace = [GWorkspace gworkspace];
fsnodeRep = [FSNodeRep sharedInstance];
mpointWatcher = [[MPointWatcher alloc] initForManager: self];
[self checkDesktopDirs];
path = [NSHomeDirectory() stringByAppendingPathComponent: @"Desktop"];
ASSIGN (dskNode, [FSNode nodeWithPath: path]);
defaults = [NSUserDefaults standardUserDefaults];
singleClickLaunch = [defaults boolForKey: @"singleclicklaunch"];
defentry = [defaults objectForKey: @"dockposition"];
dockPosition = defentry ? [defentry intValue] : DockPositionRight;
[self setReservedFrames];
usexbundle = [defaults boolForKey: @"xbundle"];
if (usexbundle) {
window = [self loadXWinBundle];
[window retain];
}
if (window == nil) {
usexbundle = NO;
window = [GWDesktopWindow new];
}
[window setDelegate: self];
desktopView = [[GWDesktopView alloc] initForManager: self];
[(NSWindow *)window setContentView: desktopView];
RELEASE (desktopView);
win = RETAIN (window);
RELEASE (window);
hidedock = [defaults boolForKey: @"hidedock"];
dock = [[Dock alloc] initForManager: self];
[nc addObserver: self
selector: @selector(fileSystemWillChange:)
name: @"GWFileSystemWillChangeNotification"
object: nil];
[nc addObserver: self
selector: @selector(fileSystemDidChange:)
name: @"GWFileSystemDidChangeNotification"
object: nil];
[nc addObserver: self
selector: @selector(watcherNotification:)
name: @"GWFileWatcherFileDidChangeNotification"
object: nil];
[[ws notificationCenter] addObserver: self
selector: @selector(newVolumeMounted:)
name: NSWorkspaceDidMountNotification
object: nil];
[[ws notificationCenter] addObserver: self
selector: @selector(mountedVolumeWillUnmount:)
name: NSWorkspaceWillUnmountNotification
object: nil];
[[ws notificationCenter] addObserver: self
selector: @selector(mountedVolumeDidUnmount:)
name: NSWorkspaceDidUnmountNotification
object: nil];
[self setContextHelp];
}
return self;
}
- (void)activateDesktop
{
[win activate];
[desktopView showMountedVolumes];
[desktopView showContentsOfNode: dskNode];
[self addWatcherForPath: [dskNode path]];
if ((hidedock == NO) && ([dock superview] == nil)) {
[desktopView addSubview: dock];
[dock tile];
}
[mpointWatcher startWatching];
}
- (void)deactivateDesktop
{
[win deactivate];
[self removeWatcherForPath: [dskNode path]];
[mpointWatcher stopWatching];
}
- (BOOL)isActive
{
return [win isVisible];
}
- (void)checkDesktopDirs
{
NSString *path;
BOOL isdir;
path = [NSHomeDirectory() stringByAppendingPathComponent: @"Desktop"];
if (([fm fileExistsAtPath: path isDirectory: &isdir] && isdir) == NO) {
NSString *hiddenNames = @".gwsort\n.gwdir\n.hidden\n";
if ([fm createDirectoryAtPath: path attributes: nil] == NO) {
NSRunAlertPanel(NSLocalizedString(@"error", @""),
NSLocalizedString(@"Can't create the Desktop directory!", @""),
NSLocalizedString(@"OK", @""), nil, nil);
[NSApp terminate: self];
}
[hiddenNames writeToFile: [path stringByAppendingPathComponent: @".hidden"]
atomically: YES];
}
path = [NSHomeDirectory() stringByAppendingPathComponent: @".Trash"];
if ([fm fileExistsAtPath: path isDirectory: &isdir] == NO) {
if ([fm createDirectoryAtPath: path attributes: nil] == NO) {
NSLog(@"Can't create the Recycler directory! Quitting now.");
[NSApp terminate: self];
}
}
}
- (void)setUsesXBundle:(BOOL)value
{
usexbundle = value;
if ([self isActive]) {
id window = nil;
BOOL changed = NO;
if (usexbundle) {
if ([win isKindOfClass: [GWDesktopWindow class]]) {
window = [self loadXWinBundle];
changed = (window != nil);
}
} else {
if ([win isKindOfClass: [GWDesktopWindow class]] == NO) {
window = [GWDesktopWindow new];
changed = YES;
}
}
if (changed) {
RETAIN (desktopView);
[desktopView removeFromSuperview];
[win close];
DESTROY (win);
[window setDelegate: self];
[(NSWindow *)window setContentView: desktopView];
RELEASE (desktopView);
win = RETAIN (window);
RELEASE (window);
[win activate];
}
}
}
- (BOOL)usesXBundle
{
return usexbundle;
}
- (id)loadXWinBundle
{
NSEnumerator *enumerator;
NSString *bpath;
NSBundle *bundle;
enumerator = [NSSearchPathForDirectoriesInDomains
(NSLibraryDirectory, NSAllDomainsMask, YES) objectEnumerator];
while ((bpath = [enumerator nextObject]) != nil)
{
bpath = [bpath stringByAppendingPathComponent: @"Bundles"];
bpath = [bpath stringByAppendingPathComponent: @"XDesktopWindow.bundle"];
bundle = [NSBundle bundleWithPath: bpath];
if (bundle) {
id pC;
pC = [[[bundle principalClass] alloc] init];
[pC autorelease];
return pC;
}
}
return nil;
}
- (BOOL)hasWindow:(id)awindow
{
return (win && (win == awindow));
}
- (id)desktopView
{
return desktopView;
}
- (BOOL)singleClickLaunch
{
return singleClickLaunch;
}
- (void)setSingleClickLaunch:(BOOL)value
{
singleClickLaunch = value;
[dock setSingleClickLaunch:singleClickLaunch];
}
- (Dock *)dock
{
return dock;
}
- (DockPosition)dockPosition
{
return dockPosition;
}
- (void)setDockPosition:(DockPosition)pos
{
dockPosition = pos;
[dock setPosition: pos];
[self setReservedFrames];
[desktopView dockPositionDidChange];
}
- (void)setDockActive:(BOOL)value
{
hidedock = !value;
if (hidedock && [dock superview]) {
[dock removeFromSuperview];
[desktopView setNeedsDisplayInRect: dockReservedFrame];
} else if ([dock superview] == nil) {
[desktopView addSubview: dock];
[dock tile];
[desktopView setNeedsDisplayInRect: dockReservedFrame];
}
}
- (BOOL)dockActive
{
return !hidedock;
}
- (void)setReservedFrames
{
NSRect screenFrame = [[NSScreen mainScreen] frame];
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSString *menuStyle = [defaults objectForKey: @"NSMenuInterfaceStyle"];
macmenuReservedFrame = NSZeroRect;
if (menuStyle && [menuStyle isEqual: @"NSMacintoshInterfaceStyle"]) {
macmenuReservedFrame.size.width = screenFrame.size.width;
macmenuReservedFrame.size.height = 25;
macmenuReservedFrame.origin.x = 0;
macmenuReservedFrame.origin.y = screenFrame.size.height - 25;
}
dockReservedFrame.size.height = screenFrame.size.height;
dockReservedFrame.size.width = 64 + RESV_MARGIN;
dockReservedFrame.origin.x = 0;
dockReservedFrame.origin.y = 0;
if (dockPosition == DockPositionRight) {
dockReservedFrame.origin.x = screenFrame.size.width - 64 - RESV_MARGIN;
}
tshelfReservedFrame = NSMakeRect(0, 0, screenFrame.size.width, 106 + RESV_MARGIN);
tshelfActivateFrame = NSMakeRect(0, 0, screenFrame.size.width, 20);
}
- (NSRect)macmenuReservedFrame
{
return macmenuReservedFrame;
}
- (NSRect)dockReservedFrame
{
return dockReservedFrame;
}
- (NSRect)tshelfReservedFrame
{
return tshelfReservedFrame;
}
- (NSRect)tshelfActivateFrame
{
return tshelfActivateFrame;
}
- (NSImage *)tabbedShelfBackground
{
return [desktopView tshelfBackground];
}
- (void)mouseEnteredTShelfActivateFrame
{
[[gworkspace tabbedShelf] animateShowing];
}
- (void)mouseExitedTShelfActiveFrame
{
[[gworkspace tabbedShelf] animateHiding];
}
- (void)deselectAllIcons
{
[desktopView unselectOtherReps: nil];
[desktopView selectionDidChange];
[desktopView stopRepNameEditing];
}
- (void)addWatcherForPath:(NSString *)path
{
[gworkspace addWatcherForPath: path];
}
- (void)removeWatcherForPath:(NSString *)path
{
[gworkspace removeWatcherForPath: path];
}
- (void)showRootViewer
{
[gworkspace newViewerAtPath: path_separator()];
}
- (BOOL)selectFile:(NSString *)fullPath
inFileViewerRootedAtPath:(NSString *)rootFullpath
{
return [gworkspace selectFile: fullPath inFileViewerRootedAtPath: rootFullpath];
}
- (void)performFileOperation:(NSDictionary *)opinfo
{
[gworkspace performFileOperation: opinfo];
}
- (NSString *)trashPath
{
return [gworkspace trashPath];
}
- (void)moveToTrash
{
[gworkspace moveToTrash];
}
- (void)checkNewRemovableMedia
{
NS_DURING
{
[NSThread detachNewThreadSelector: @selector(mountRemovableMedia)
toTarget: [GWMounter class]
withObject: nil];
}
NS_HANDLER
{
NSLog(@"Error! A fatal error occurred while detaching the thread.");
}
NS_ENDHANDLER
}
- (void)makeThumbnails:(id)sender
{
NSString *path;
path = [dskNode path];
path = [path stringByResolvingSymlinksInPath];
if (path)
{
Thumbnailer *t;
t = [Thumbnailer sharedThumbnailer];
[t makeThumbnails:path];
[t release];
}
}
- (void)removeThumbnails:(id)sender
{
NSString *path;
path = [dskNode path];
path = [path stringByResolvingSymlinksInPath];
if (path)
{
Thumbnailer *t;
t = [Thumbnailer sharedThumbnailer];
[t removeThumbnails:path];
[t release];
}
}
- (void)fileSystemWillChange:(NSNotification *)notif
{
NSDictionary *opinfo = (NSDictionary *)[notif object];
if ([dskNode involvedByFileOperation: opinfo]) {
[[self desktopView] nodeContentsWillChange: opinfo];
}
}
- (void)fileSystemDidChange:(NSNotification *)notif
{
NSDictionary *opinfo = (NSDictionary *)[notif object];
if ([dskNode isValid] == NO) {
NSRunAlertPanel(nil,
NSLocalizedString(@"The Desktop directory has been deleted! Quitting now!", @""),
NSLocalizedString(@"OK", @""),
nil,
nil);
[NSApp terminate: self];
}
/* update the desktop view, but only if it is visible */
if ([self isActive] && [dskNode involvedByFileOperation: opinfo])
{
[[self desktopView] nodeContentsDidChange: opinfo];
}
if ([self dockActive])
{
[dock nodeContentsDidChange: opinfo];
}
}
- (void)watcherNotification:(NSNotification *)notif
{
NSDictionary *info = (NSDictionary *)[notif object];
NSString *path = [info objectForKey: @"path"];
NSString *event = [info objectForKey: @"event"];
if ([path isEqual: [dskNode path]])
{
if ([event isEqual: @"GWWatchedPathDeleted"])
{
NSRunAlertPanel(nil,
NSLocalizedString(@"The Desktop directory has been deleted! Quitting now!", @""),
NSLocalizedString(@"OK", @""),
nil,
nil);
[NSApp terminate: self];
}
/* update the desktop view, but only if active */
else if ([self isActive])
{
[[self desktopView] watchedPathChanged: info];
}
}
/* update the dock, if active */
if ([self dockActive])
[dock watchedPathChanged: info];
}
- (void)thumbnailsDidChangeInPaths:(NSArray *)paths
{
[[self desktopView] updateIcons];
}
- (void)removableMediaPathsDidChange
{
[[self desktopView] showMountedVolumes];
[mpointWatcher startWatching];
}
- (void)hideDotsFileDidChange:(BOOL)hide
{
[[self desktopView] reloadFromNode: dskNode];
}
- (void)hiddenFilesDidChange:(NSArray *)paths
{
[[self desktopView] reloadFromNode: dskNode];
}
- (void)newVolumeMounted:(NSNotification *)notif
{
if (win && [win isVisible]) {
NSDictionary *dict = [notif userInfo];
NSString *volpath = [dict objectForKey: @"NSDevicePath"];
[[self desktopView] newVolumeMountedAtPath: volpath];
}
}
- (void)mountedVolumeWillUnmount:(NSNotification *)notif
{
if (win && [win isVisible]) {
NSDictionary *dict = [notif userInfo];
NSString *volpath = [dict objectForKey: @"NSDevicePath"];
[fsnodeRep lockPaths: [NSArray arrayWithObject: volpath]];
[[self desktopView] workspaceWillUnmountVolumeAtPath: volpath];
}
}
- (void)mountedVolumeDidUnmount:(NSNotification *)notif
{
if (win && [win isVisible]) {
NSDictionary *dict = [notif userInfo];
NSString *volpath = [dict objectForKey: @"NSDevicePath"];
[fsnodeRep unlockPaths: [NSArray arrayWithObject: volpath]];
[[self desktopView] workspaceDidUnmountVolumeAtPath: volpath];
}
}
- (void)unlockVolumeAtPath:(NSString *)volpath
{
[fsnodeRep unlockPaths: [NSArray arrayWithObject: volpath]];
[[self desktopView] unlockVolumeAtPath: volpath];
}
- (void)mountedVolumesDidChange
{
[[self desktopView] showMountedVolumes];
}
- (void)updateDefaults
{
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
[defaults setObject: [NSNumber numberWithInt: dockPosition]
forKey: @"dockposition"];
[defaults setBool: singleClickLaunch forKey: @"singleclicklaunch"];
[defaults setBool: usexbundle forKey: @"xbundle"];
[defaults setBool: hidedock forKey: @"hidedock"];
[dock updateDefaults];
[desktopView updateDefaults];
}
- (void)setContextHelp
{
NSHelpManager *manager = [NSHelpManager sharedHelpManager];
NSString *help;
help = @"Desktop.rtfd";
[manager setContextHelp: (NSAttributedString *)help
withObject: [self desktopView]];
help = @"Dock.rtfd";
[manager setContextHelp: (NSAttributedString *)help withObject: dock];
help = @"Recycler.rtfd";
[manager setContextHelp: (NSAttributedString *)help
withObject: [dock trashIcon]];
}
@end
//
// GWDesktopWindow Delegate Methods
//
@implementation GWDesktopManager (GWDesktopWindowDelegateMethods)
- (BOOL)validateItem:(id)menuItem
{
if ([self isActive]) {
SEL action = [menuItem action];
if (sel_isEqual(action, @selector(duplicateFiles:))
|| sel_isEqual(action, @selector(recycleFiles:))
|| sel_isEqual(action, @selector(deleteFiles:))) {
return ([[desktopView selectedNodes] count] > 0);
} else if (sel_isEqual(action, @selector(openSelection:))) {
NSArray *selection = [desktopView selectedNodes];
return (selection && [selection count]
&& ([selection isEqual: [NSArray arrayWithObject: dskNode]] == NO));
} else if (sel_isEqual(action, @selector(openWith:))) {
NSArray *selection = [desktopView selectedNodes];
BOOL canopen = YES;
int i;
if (selection && [selection count]
&& ([selection isEqual: [NSArray arrayWithObject: dskNode]] == NO)) {
for (i = 0; i < [selection count]; i++) {
FSNode *node = [selection objectAtIndex: i];
if (([node isPlain] == NO)
&& (([node isPackage] == NO) || [node isApplication])) {
canopen = NO;
break;
}
}
} else {
canopen = NO;
}
return canopen;
} else if (sel_isEqual(action, @selector(openSelectionAsFolder:))) {
NSArray *selection = [desktopView selectedNodes];
if (selection && ([selection count] == 1)) {
return [[selection objectAtIndex: 0] isDirectory];
}
return NO;
}
return YES;
}
return NO;
}
- (void)openSelectionInNewViewer:(BOOL)newv
{
NSArray *selreps = [desktopView selectedReps];
NSUInteger i;
for (i = 0; i < [selreps count]; i++) {
FSNode *node = [[selreps objectAtIndex: i] node];
if ([node hasValidPath]) {
NS_DURING
{
if ([node isDirectory]) {
if ([node isPackage]) {
if ([node isApplication] == NO) {
[gworkspace openFile: [node path]];
} else {
[ws launchApplication: [node path]];
}
} else {
[gworkspace newViewerAtPath: [node path]];
}
} else if ([node isPlain]) {
[gworkspace openFile: [node path]];
}
}
NS_HANDLER
{
NSRunAlertPanel(NSLocalizedString(@"error", @""),
[NSString stringWithFormat: @"%@ %@!",
NSLocalizedString(@"Can't open ", @""), [node name]],
NSLocalizedString(@"OK", @""),
nil,
nil);
}
NS_ENDHANDLER
} else {
NSRunAlertPanel(NSLocalizedString(@"error", @""),
[NSString stringWithFormat: @"%@ %@!",
NSLocalizedString(@"Can't open ", @""), [node name]],
NSLocalizedString(@"OK", @""),
nil,
nil);
}
}
}
- (void)openSelectionAsFolder
{
NSArray *selnodes = [desktopView selectedNodes];
unsigned i;
for (i = 0; i < [selnodes count]; i++) {
FSNode *node = [selnodes objectAtIndex: i];
if ([node isDirectory]) {
[gworkspace newViewerAtPath: [node path]];
} else if ([node isPlain]) {
[gworkspace openFile: [node path]];
}
}
}
- (void)openSelectionWith
{
[gworkspace openSelectedPathsWith];
}
- (void)newFolder
{
[gworkspace newObjectAtPath: [dskNode path] isDirectory: YES];
}
- (void)newFile
{
[gworkspace newObjectAtPath: [dskNode path] isDirectory: NO];
}
- (void)duplicateFiles
{
if ([[desktopView selectedNodes] count]) {
[gworkspace duplicateFiles];
}
}
- (void)recycleFiles
{
if ([[desktopView selectedNodes] count]) {
[gworkspace moveToTrash];
}
}
- (void)emptyTrash
{
[gworkspace emptyRecycler: nil];
}
- (void)deleteFiles
{
if ([[desktopView selectedNodes] count]) {
[gworkspace deleteFiles];
}
}
- (void)setShownType:(id)sender
{
NSString *title = [sender title];
FSNInfoType type = FSNInfoNameType;
if ([title isEqual: NSLocalizedString(@"Name", @"")]) {
type = FSNInfoNameType;
} else if ([title isEqual: NSLocalizedString(@"Type", @"")]) {
type = FSNInfoKindType;
} else if ([title isEqual: NSLocalizedString(@"Size", @"")]) {
type = FSNInfoSizeType;
} else if ([title isEqual: NSLocalizedString(@"Modification date", @"")]) {
type = FSNInfoDateType;
} else if ([title isEqual: NSLocalizedString(@"Owner", @"")]) {
type = FSNInfoOwnerType;
} else {
type = FSNInfoNameType;
}
[desktopView setShowType: type];
}
- (void)setExtendedShownType:(id)sender
{
[desktopView setExtendedShowType: [sender title]];
}
- (void)setIconsSize:(id)sender
{
[desktopView setIconSize: [[sender title] intValue]];
}
- (void)setIconsPosition:(id)sender
{
NSString *title = [sender title];
if ([title isEqual: NSLocalizedString(@"Left", @"")]) {
[desktopView setIconPosition: NSImageLeft];
} else {
[desktopView setIconPosition: NSImageAbove];
}
}
- (void)setLabelSize:(id)sender
{
[desktopView setLabelTextSize: [[sender title] intValue]];
}
- (void)selectAllInViewer
{
[desktopView selectAll];
}
- (void)showTerminal
{
[gworkspace startXTermOnDirectory: [dskNode path]];
}
@end
@implementation MPointWatcher
- (void)dealloc
{
if (timer && [timer isValid])
{
[timer invalidate];
}
RELEASE (mountedRemovableVolumes);
[super dealloc];
}
- (id)initForManager:(GWDesktopManager *)mngr
{
self = [super init];
if (self)
{
manager = mngr;
active = NO;
fm = [NSFileManager defaultManager];
timer = [NSTimer scheduledTimerWithTimeInterval: 1.5
target: self
selector: @selector(watchMountPoints:)
userInfo: nil
repeats: YES];
}
return self;
}
- (void)startWatching
{
[mountedRemovableVolumes release];
mountedRemovableVolumes = [[NSWorkspace sharedWorkspace] mountedRemovableMedia];
[mountedRemovableVolumes retain];
active = YES;
}
- (void)stopWatching
{
active = NO;
[mountedRemovableVolumes release];
mountedRemovableVolumes = nil;
}
- (void)watchMountPoints:(id)sender
{
if (active)
{
BOOL removed = NO;
BOOL added = NO;
NSUInteger i;
NSArray *newVolumes = [[NSWorkspace sharedWorkspace] mountedRemovableMedia];
for (i = 0; i < [mountedRemovableVolumes count]; i++)
{
NSString *vol;
vol = [mountedRemovableVolumes objectAtIndex:i];
if (![newVolumes containsObject:vol])
removed |= YES;
}
for (i = 0; i < [newVolumes count]; i++)
{
NSString *vol;
vol = [newVolumes objectAtIndex:i];
if (![mountedRemovableVolumes containsObject:vol])
added |= YES;
}
if (added || removed)
[manager mountedVolumesDidChange];
[mountedRemovableVolumes release];
mountedRemovableVolumes = newVolumes;
[mountedRemovableVolumes retain];
}
}
@end
@implementation GWMounter
+ (void)mountRemovableMedia
{
CREATE_AUTORELEASE_POOL(pool);
[[NSWorkspace sharedWorkspace] mountNewRemovableMedia];
RELEASE (pool);
}
@end
|