home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / notebook / smrtguid / smrtpage.cpp < prev    next >
C/C++ Source or Header  |  1996-10-29  |  861b  |  30 lines

  1. //************************************************************
  2. // Notebook Control - Smart Guide Notebook - Smart Page           
  3. //
  4. // Copyright (C) 1994, Law, Leong, Love, Olson, Tsuji.
  5. // Copyright (c) 1997 John Wiley & Sons, Inc. 
  6. // All Rights Reserved.
  7. //************************************************************
  8. #include <istring.hpp>
  9. #include "smrtguid.hpp"
  10.  
  11.  
  12. SmartPage& SmartPage::setTabText ( const IString& tabText)
  13. { fTabText = tabText; return *this; }
  14.  
  15. IString SmartPage::tabText ( ) const
  16. { return fTabText; }
  17.  
  18. ISize SmartPage::minimumSize ( ) const
  19. { return ISize(0,0); }
  20.  
  21. Boolean SmartPage::isOKToClose ( IString& closeErrorIfFalse ) const
  22. { return true; }
  23.  
  24. SmartPage& SmartPage::setHelpId ( unsigned long helpId)
  25. { fHelpId = helpId; return *this;}
  26.  
  27. unsigned long SmartPage::helpId ( ) const
  28. { return fHelpId; }
  29.  
  30.