home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / tvision / mess1 / dialog.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-31  |  1.1 KB  |  42 lines

  1. //========================================================================
  2. //  The following example routines have been provided by the Technical
  3. //  Support staff at Borland International.  They are provided as a
  4. //  courtesy and not as part of a Borland product, and as such, are
  5. //  provided without the assurance of technical support or any specific
  6. //  guarantees.
  7. //========================================================================
  8. //  Turbo Vision - Example of message passing
  9. //
  10. //------------------------------------------------------------------------
  11. //
  12. // dialog.h:  The class definition for TDataEntryDlg.
  13. //
  14. //========================================================================
  15.  
  16.  
  17.  
  18. #ifndef _DIALOG_H
  19. #define _DIALOG_H
  20.  
  21. #define Uses_TDialog
  22. #define Uses_TRect
  23. #include <tv.h>
  24.  
  25.  
  26. //
  27. // TDataEntryDlg - A complex dialog box to demostrate various objects designed
  28. //                 for the TDialog class.
  29. //
  30.  
  31. class TDataEntryDlg : public TDialog
  32. {
  33. public:
  34.     TDataEntryDlg(TRect,char *);
  35.     Boolean valid(ushort);
  36. private:
  37.     Boolean isValid;
  38. };
  39.  
  40.  
  41. #endif
  42.