mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 20:11:20 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@16111 72102866-910b-0410-8b05-ffd578937521
20 lines
439 B
Objective-C
20 lines
439 B
Objective-C
#ifndef INCLUDED_GormPalettesManager_h
|
|
#define INCLUDED_GormPalettesManager_h
|
|
|
|
@interface GormPalettesManager : NSObject
|
|
{
|
|
NSPanel *panel;
|
|
NSMatrix *selectionView;
|
|
NSView *dragView;
|
|
NSMutableArray *bundles;
|
|
NSMutableArray *palettes;
|
|
int current;
|
|
BOOL hiddenDuringTest;
|
|
}
|
|
- (void) loadPalette: (NSString*)path;
|
|
- (id) openPalette: (id) sender;
|
|
- (NSPanel*) panel;
|
|
- (void) setCurrentPalette: (id)anObject;
|
|
@end
|
|
|
|
#endif
|