mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 12:01:16 +00:00
22 lines
549 B
C
22 lines
549 B
C
|
#ifndef GORMRESOURCESMANAGER_H
|
||
|
#define GORMRESOURCESMANAGER_H
|
||
|
|
||
|
@interface GormResourcesManager : NSObject
|
||
|
{
|
||
|
NSWindow *window;
|
||
|
NSMatrix *selectionView;
|
||
|
NSScrollView *scrollView;
|
||
|
id objectsView;
|
||
|
id<IBDocuments> document;
|
||
|
}
|
||
|
+ (GormResourcesManager*) newManagerForDocument: (id<IBDocuments>)doc;
|
||
|
- (void) addObject: (id)anObject;
|
||
|
- (id<IBDocuments>) document;
|
||
|
- (void) removeObject: (id)anObject;
|
||
|
- (NSWindow*) window;
|
||
|
- (BOOL) windowShouldClose: (NSWindow*)aWindow;
|
||
|
- (void) windowWillClose: (NSNotification*)aNotification;
|
||
|
@end
|
||
|
|
||
|
#endif
|