home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / VRAC / VCOLORS.ZIP / MYEDITLN.H < prev   
Encoding:
C/C++ Source or Header  |  1993-06-18  |  518 b   |  32 lines

  1. //
  2. //    myeditln.h
  3. //
  4. //    Copyright (c) 1993, by Liant Software Corp.
  5. //    ALL RIGHTS RESERVED.
  6. //
  7. //    Revision History:
  8. //    -----------------
  9. //
  10.  
  11. #ifndef myeditln_h
  12. #define myeditln_h
  13. #include "editline.h"
  14.  
  15.  
  16. CLASS MyEditLine : public VEditLine {
  17. private:
  18.     method exitMethod;
  19.  
  20. public:
  21.     boolean clearFocus();
  22.     void uponExit(id,method);
  23.     MyEditLine(VFrame&,VWindow*,short);
  24.     VClass *iam();
  25.     boolean free();
  26.     MyEditLine();
  27.     ~MyEditLine();
  28. };
  29.  
  30. extern VClass *MyEditLineCls;
  31. #endif /* myeditln_h */
  32.