mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 12:01:16 +00:00
21 lines
395 B
C
21 lines
395 B
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
|