/* Fiend.h * * Copyright (C) 2003 Free Software Foundation, Inc. * * Author: Enrico Sersale * Date: August 2001 * * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02111 USA. */ #ifndef FIEND_H #define FIEND_H #include @class NSString; @class NSArray; @class NSNotification; @class NSWindow; @class NSImage; @class NSMutableArray; @class NSTextFieldCell; @class NSButton; @class FiendLeaf; @class GWorkspace; @interface Fiend : NSView { NSWindow *myWin; NSImage *tile; NSImage *leftArr; NSImage *rightArr; NSMutableDictionary *layers; NSString *currentName; NSMutableArray *leavesPlaces; NSMutableArray *freePositions; NSCountedSet *watchedPaths; NSTextFieldCell *namelabel; NSButton *ffButt, *rewButt; BOOL leaveshidden; BOOL isDragTarget; GWorkspace *gw; } - (void)activate; - (NSWindow *)myWin; - (NSPoint)positionOfLeaf:(id)aleaf; - (BOOL)dissolveLeaf:(id)aleaf; - (void)addLayer; - (void)removeCurrentLayer; - (void)renameCurrentLayer; - (void)goToLayerNamed:(NSString *)lname; - (void)switchLayer:(id)sender; - (void)draggedFiendLeaf:(FiendLeaf *)leaf atPoint:(NSPoint)location mouseUp:(BOOL)mouseup; - (void)findFreePositions; - (NSArray *)positionsAroundLeafAtPosX:(int)posx posY:(int)posy; - (void)orderFrontLeaves; - (void)hide; - (void)verifyDraggingExited:(id)sender; - (void)removeInvalidLeaf:(FiendLeaf *)leaf; - (void)checkIconsAfterDotsFilesChange; - (void)checkIconsAfterHidingOfPaths:(NSArray *)paths; - (void)fileSystemDidChange:(NSNotification *)notification; - (void)watcherNotification:(NSNotification *)notification; - (void)updateDefaults; @end @interface Fiend (DraggingDestination) - (NSDragOperation)draggingEntered:(id )sender; - (NSDragOperation)draggingUpdated:(id )sender; - (void)draggingExited:(id )sender; - (BOOL)prepareForDragOperation:(id )sender; - (BOOL)performDragOperation:(id )sender; - (void)concludeDragOperation:(id )sender; @end #endif // FIEND_H