apps-gorm/GormPalettesManager.h
Richard Frith-MacDonald b24b1706c8 Gorm source
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@5409 72102866-910b-0410-8b05-ffd578937521
1999-12-08 15:04:57 +00:00

20 lines
395 B
Objective-C

#ifndef GORMPALETTESMANAGER_H
#define GORMPALETTESMANAGER_H
@interface GormPalettesManager : NSObject
{
NSPanel *panel;
NSMatrix *selectionView;
NSView *dragView;
NSMutableArray *bundles;
NSMutableArray *palettes;
int current;
}
- (void) loadPalette: (NSString*)path;
- (id) openPalette: (id) sender;
- (NSPanel*) panel;
- (void) setCurrentPalette: (id)anObject;
@end
#endif