home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / sybase / starbuck / hpp.z / WCONTROL.INL < prev    next >
Text File  |  1996-05-23  |  1KB  |  38 lines

  1. //
  2. // wcontrol.inl
  3. //
  4.  
  5. #ifdef WCMINLINE
  6.  
  7. WCMINLINE WBool WControl::SetFDXModified( WBool modified )
  8. /********************************************************/
  9.     if( !_fdxModified ) return FALSE;
  10.     *_fdxModified = modified;
  11.     return TRUE;
  12. }
  13.  
  14. WCMINLINE WBool WControl::GetFDXModified() const
  15. /**********************************************/
  16. {
  17.     return _fdxModified ? *_fdxModified : FALSE;
  18.  
  19. WCMINLINE WBool WControl::SetFDXModifiedPointer( WBool * fdxModified )
  20. /********************************************************************/
  21. { _fdxModified = fdxModified; return TRUE; }
  22.  
  23. WCMINLINE WRect WControl::GetResizePercentages() const
  24. /****************************************************/
  25. { return _resizePercentages; }
  26.  
  27. WCMINLINE WRect WControl::GetPendingResizePercentages() const
  28. /***********************************************************/
  29. { return _pendingResizePercentages; }
  30.  
  31. WCMINLINE WBool WControl::SetPendingResizePercentages( const WRect & pendingResizePercentages )
  32. /*********************************************************************************************/
  33. { _pendingResizePercentages = pendingResizePercentages; return TRUE; }
  34.  
  35. #endif
  36.