/* GWViewerIconsPath.h * * Copyright (C) 2004 Free Software Foundation, Inc. * * Author: Enrico Sersale * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02111 USA. */ #ifndef GWVIEWER_ICONS_PATH_H #define GWVIEWER_ICONS_PATH_H #include #include #include "FSNodeRep.h" @class GWViewerPathsScroll; @class FSNIcon; @class FSNIconNameEditor; @interface GWViewerIconsPath : NSView { NSMutableArray *icons; FSNIconNameEditor *nameEditor; FSNIcon *editIcon; int iconSize; int labelTextSize; NSFont *labelFont; int iconPosition; FSNInfoType infoType; NSString *extInfoType; int visibleIcons; int firstVisibleIcon; int lastVisibleIcon; int shift; NSSize gridSize; BOOL ownScroller; NSColor *backColor; NSColor *textColor; NSColor *disabledTextColor; FSNodeRep *fsnodeRep; id viewer; } - (id)initWithFrame:(NSRect)frameRect visibleIcons:(int)vicns forViewer:(id)vwr ownsScroller:(BOOL)ownscr; - (void)setOwnsScroller:(BOOL)ownscr; - (void)showPathComponents:(NSArray *)components selection:(NSArray *)selection; - (void)setSelectableIconsRange:(NSRange)range; - (int)firstVisibleIcon; - (int)lastVisibleIcon; - (id)lastIcon; - (void)updateLastIcon; - (void)calculateGridSize; - (void)tile; - (void)gwviewerPathsScroll:(GWViewerPathsScroll *)sender scrollViewScrolled:(NSClipView *)clip hitPart:(NSScrollerPart)hitpart; @end @interface GWViewerIconsPath (NodeRepContainer) - (FSNode *)baseNode; - (id)repOfSubnode:(FSNode *)anode; - (id)repOfSubnodePath:(NSString *)apath; - (id)addRepForSubnode:(FSNode *)anode; - (id)addRepForSubnodePath:(NSString *)apath; - (void)removeRep:(id)arep; - (void)repSelected:(id)arep; - (void)unselectOtherReps:(id)arep; - (NSArray *)selectedNodes; - (NSArray *)selectedPaths; - (void)checkLockedReps; - (FSNSelectionMask)selectionMask; - (void)openSelectionInNewViewer:(BOOL)newv; - (void)restoreLastSelection; - (NSColor *)backgroundColor; - (NSColor *)textColor; - (NSColor *)disabledTextColor; - (NSDragOperation)draggingUpdated:(id )sender; @end @interface GWViewerIconsPath (IconNameEditing) - (void)updateNameEditor; - (void)setNameEditorForRep:(id)arep; - (void)stopRepNameEditing; - (BOOL)canStartRepNameEditing; - (void)controlTextDidChange:(NSNotification *)aNotification; - (void)controlTextDidEndEditing:(NSNotification *)aNotification; @end @interface GWViewerPathsScroll : NSScrollView { id delegate; } - (void)setDelegate:(id)anObject; - (id)delegate; @end @interface NSObject(GWViewerPathsScrollDelegateMethods) - (void)gwviewerPathsScroll:(GWViewerPathsScroll *)sender scrollViewScrolled:(NSClipView *)clip hitPart:(NSScrollerPart)hitpart; @end #endif // GWVIEWER_ICONS_PATH_H