home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 February / PCWK0296.iso / po7_win / object10 / bltstdlg.h < prev    next >
C/C++ Source or Header  |  1994-08-22  |  1KB  |  63 lines

  1. #if !defined(__bltstdlg_h)              // Sentry, use file only if it's not already included.
  2. #define __bltstdlg_h
  3.  
  4. /*  Project bltest
  5.      
  6.      Copyright ⌐ 1994. All Rights Reserved.
  7.  
  8.      SUBSYSTEM:    bltest.exe Application
  9.      FILE:         bltstdlg.h
  10.      AUTHOR:       
  11.  
  12.  
  13.      OVERVIEW
  14.      ========
  15.      Class definition for bltestDlg (TDialog).      
  16. */
  17.  
  18.  
  19. #include <owl\owlpch.h>
  20. #pragma hdrstop
  21.  
  22. #include "bltstapp.rh"                  // Definition of all resources.
  23. #include <oowl.h>
  24. //{{TDialog = bltestDlg}}
  25. class bltestDlg : public TDialog {
  26. public:
  27.      bltestDlg (TWindow *parent, TResId resId = IDD_DEMODLG, TModule *module = 0);
  28.      virtual ~bltestDlg ();
  29.  
  30. //{{bltestDlgVIRTUAL_BEGIN}}
  31. public:
  32.      void SetupWindow ();
  33. //{{bltestDlgVIRTUAL_END}}
  34.  
  35. private:
  36.      OSession m_session;
  37.      ODatabase m_database;
  38.      OBinder m_binder;
  39.      OBoundEdit *m_e1;
  40.      OBoundEdit *m_e2;
  41.      OBoundStatic *m_s1;
  42.      OBoundCheckBox *m_c1;
  43.      OBoundCheckBox *m_c2;
  44.      OBoundRadioButton *m_r1;
  45.      OBoundRadioButton *m_r2;
  46.      OBoundRadioButton *m_r3;
  47.      OBoundRadioButton *m_r4;
  48.      OBoundRadioButton *m_r5;
  49.      OBoundGauge *m_gauge;
  50.      OBoundHSlider *m_slider;
  51.  
  52. protected:
  53.     void HandleFirst();
  54.     void HandlePrev();
  55.     void HandleNext();
  56.     void HandleLast();
  57.     void HandleConnect();
  58.  
  59.     DECLARE_RESPONSE_TABLE(bltestDlg);
  60. };    //{{bltestDlg}}
  61.  
  62. #endif                                      // __bltstabd_h sentry.
  63.