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

  1. // ------------ label.h
  2.  
  3. #ifndef LABEL_H
  4. #define LABEL_H
  5.  
  6. #include "textbox.h"
  7.  
  8. class Label : public TextBox    {
  9.     void InitLabel(const char *txt);
  10. public:             
  11.     Label(const char *txt, int lf, int tp, int wd=0,
  12.                             DFWindow *par = 0);
  13.     Label(const char *txt, int lf, int tp, DFWindow *par = 0);
  14.     virtual void Paint();
  15. };
  16.  
  17. #endif
  18.