home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 035 / kwclass.zip / KSTATTXT.HPP < prev    next >
C/C++ Source or Header  |  1994-04-18  |  531b  |  27 lines

  1. #ifndef _KSTATTXT_
  2. #define _KSTATTXT_
  3.  
  4. #ifndef _ISTATTXT_
  5.   #include <istattxt.hpp>
  6. #endif
  7.  
  8.  
  9. class KStaticText : public IStaticText
  10. {
  11.    public:
  12.  
  13.    KStaticText(unsigned long id, 
  14.                IWindow *wndParent,
  15.                IWindow *wndOwner,
  16.                const IRectangle &initial,
  17.                const IResourceId &resText,
  18.                const IStaticText::Style &style = defaultStyle())
  19.      : IStaticText(id, wndParent, wndOwner, initial, style)
  20.    {
  21.       setText(resText);
  22.    }
  23. };
  24.  
  25.  
  26. #endif
  27.