mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 12:01:16 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@5415 72102866-910b-0410-8b05-ffd578937521
21 lines
549 B
Objective-C
21 lines
549 B
Objective-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
|