home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / sybase / starbuck / hpp.z / form1.hpp < prev    next >
C/C++ Source or Header  |  1996-06-03  |  2KB  |  66 lines

  1. /*
  2.     form1.hpp
  3.  
  4.     NOTE: This file is a generated file.
  5.           Do not modify it by hand!
  6. */
  7. #ifndef __Form1_hpp_included
  8. #define __Form1_hpp_included
  9.  
  10.  
  11. // Declarations added here will be included at the top of the .HPP file
  12. #include "wmaskedit.hpp"
  13. class __Form1_Base : public WModelessDialog
  14. {
  15.     public:
  16.         __Form1_Base();
  17.         ~__Form1_Base();
  18.         WBool Create( WWindow * __parent=NULL );
  19.  
  20.     protected:
  21.  
  22.         WCommandButton *                     cb_1;
  23.         WTextBox *                           textb_1;
  24.         WLabel *                             label_1;
  25.         WLabel *                             label_2;
  26.         WTextBox *                           textb_2;
  27.         WCommandButton *                     cb_2;
  28.  
  29.     public:
  30.         enum {
  31.             ID_cb_1                          = 101,
  32.             ID_textb_1                       = 102,
  33.             ID_label_1                       = 103,
  34.             ID_label_2                       = 104,
  35.             ID_textb_2                       = 105,
  36.             ID_cb_2                          = 106,
  37.         };
  38.  
  39.  
  40.     private:
  41.         WBool __Base_Create( WObject *, WCreateEventData * );
  42.         void  __Base_SetEventHandlers( WBool );
  43.         WBool __Base_Close( WObject *, WEventData * );
  44.         WBool __Base_Destroy( WObject *, WEventData * );
  45. };
  46. class Form1 : public __Form1_Base
  47. {
  48.     public:
  49.         WBool Form1_Create( WObject * = NULL, WCreateEventData * = NULL );
  50.         WBool cb_1_Click( WObject * = NULL, WEventData * = NULL );
  51.         WBool cb_2_Click( WObject * = NULL, WEventData * = NULL );
  52.     public:
  53.         Form1();
  54.         ~Form1();
  55.     public:
  56.         // add your public instance data here
  57.     private:
  58.         // add your private instance data here
  59.         WMaskEdit                 *_maskEdit;
  60.     protected:
  61.         // add your protected instance data here
  62.     public:
  63.         WBool TestHandler( WWindow *, WEventData * );
  64. };
  65. #endif // __Form1_hpp_included
  66.