home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / df3os2.zip / STATBAR.H < prev    next >
C/C++ Source or Header  |  1993-09-14  |  329b  |  22 lines

  1. // -------- statbar.h 
  2.  
  3. #ifndef STATBAR_H
  4. #define STATBAR_H
  5.  
  6. #include "textbox.h"
  7.  
  8. class StatusBar : public TextBox    {
  9.     void ParentSized(int xdif, int ydif);
  10. protected:         
  11. public:
  12.     StatusBar(DFWindow *par);
  13.     void ClockTick();
  14.     void StatusMessage(String& Msg);
  15.     Bool SetFocus() { return False; }
  16. };
  17.  
  18. #endif
  19.  
  20.  
  21.  
  22.