mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-12-22 17:30:15 +00:00
27 lines
731 B
C++
27 lines
731 B
C++
#include "ResKnife.h"
|
|
#include "WindowObject.h"
|
|
|
|
/*!
|
|
@header InspectorWindow
|
|
@discussion Manages the little inspector that accompanies a File Window.
|
|
*/
|
|
|
|
/* INSPECTOR WINDOW CLASS */
|
|
class InspectorWindow : WindowObject
|
|
{
|
|
public:
|
|
InspectorWindow( void );
|
|
~InspectorWindow( void );
|
|
virtual OSStatus Update( RgnHandle region = null ); // unused parameter
|
|
};
|
|
|
|
pascal OSStatus CloseInspectorWindow( EventHandlerCallRef callRef, EventRef event, void *userData );
|
|
|
|
// inspector window dimentions
|
|
const UInt16 kInspectorHeaderHeight = 48 + 4; // 48 for huge icon
|
|
const UInt16 kInspectorWindowWidth = 183;
|
|
const UInt16 kInspectorWindowHeight = 183;
|
|
|
|
// non-window dimentions
|
|
const UInt16 kControlCheckBoxHeight = 16;
|