apps-gorm/GormPrivate.h
Richard Frith-MacDonald 01100bd4b6 Removed GormResourcesManager
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@5511 72102866-910b-0410-8b05-ffd578937521
1999-12-14 19:55:18 +00:00

42 lines
1.1 KiB
Objective-C

#ifndef GORMPRIVATE_H
#define GORMPRIVATE_H
@class GormDocument;
@class GormInspectorsManager;
@class GormPalettesManager;
#include "Gorm.h"
#include "GormDocument.h"
#include "GormInspectorsManager.h"
#include "GormPalettesManager.h"
@interface Gorm : NSApplication <IB>
{
id infoPanel;
GormInspectorsManager *inspectorsManager;
GormPalettesManager *palettesManager;
id<IBSelectionOwners> selectionOwner;
id<IBDocuments> activeDocument;
NSMutableArray *documents;
}
- (id<IBDocuments>) activeDocument;
- (void) handleNotification: (NSNotification*)aNotification;
- (GormInspectorsManager*) inspectorsManager;
- (id) makeNewDocument: (id) sender;
- (id) openPalette: (id) sender;
- (GormPalettesManager*) palettesManager;
- (id) runInfoPanel: (id) sender;
- (id) runGormInspectors: (id) sender;
- (id) runGormPalettes: (id) sender;
@end
/*
* Functions for drawing knobs etc.
*/
void GormDrawKnobsForRect(NSRect aFrame);
NSRect GormExtBoundsForRect(NSRect aFrame);
IBKnobPosition GormKnobHitInRect(NSRect aFrame, NSPoint p);
void GormShowFastKnobFills(void);
#endif