home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
odtlktv4.zip
/
ODTLKT
/
TOOLKIT
/
BETA
/
SAMPLES
/
OPENDOC
/
PARTS
/
CNTNRPRT
/
PARTINFO.CPP
< prev
next >
Wrap
Text File
|
1995-09-27
|
956b
|
29 lines
/* PartInfo.cpp - seperate file for PartInfoRec class */
#include <od.h>
#include <ODTypesB.xh>
#include <odtypesm.xh>
#include <part.xh>
typedef long RGBColor;
class PartInfoRec
{
public:
PartInfoRec() { fIsActive = kODFalse; fNeedsActivating = kODFalse;
fHasSelectedPart = kODFalse; fRestoreSelMenu = kODFalse;
fSelectedMenuAdjusted = kODFalse; fSelPartFrame = kODNULL;
fSelPopupAttached = kODFalse; }
virtual ~PartInfoRec() { }
RGBColor bgColor;
ODBoolean fIsActive; // Does this frame have its focus set?
ODBoolean fNeedsActivating; // should this be activated when its window is activated?
ODID partwindowID;
ODBoolean fHasSelectedPart; //an embedded part is selected
ODPart* fSelectedPart;
ODBoolean fRestoreSelMenu;
ODBoolean fSelectedMenuAdjusted;
ODFrame* fSelPartFrame;
ODBoolean fSelPopupAttached;
};