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

  1. // ------------- checkbox.cpp
  2.  
  3. #include "checkbox.h"
  4. #include "desktop.h"
  5.  
  6. CheckBox::CheckBox(const char *lbl, int lf, int tp, DFWindow *par) :
  7.                     Button(lbl, lf, tp, par)
  8. {
  9.     setchar = 'X';
  10.     (*text)[0] = '[';
  11.     (*text)[2] = ']';
  12.     windowtype = CheckBoxWindow;
  13. }
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.