home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ibmodf.zip / SIMPLPRT.ZIP / PARTINFO.HPP < prev    next >
Text File  |  1995-03-09  |  394b  |  15 lines

  1. #ifndef _PARTINFO_
  2. #define _PARTINFO_
  3.  
  4. class PartInfoRec
  5. {
  6. public:
  7.    PartInfoRec() { fIsActive = kODFalse; fNeedsActivating = kODFalse; }
  8.    virtual ~PartInfoRec() { }
  9.    RGBColor bgColor;
  10.    HRGN   bgClipRegion;
  11.    ODBoolean  fIsActive;  // Does this frame have its focus set?
  12.    ODBoolean  fNeedsActivating; // should this be activated when its window is activated?
  13. };
  14. #endif
  15.