home *** CD-ROM | disk | FTP | other *** search
/ Prima Shareware 3 / DuCom_Prima-Shareware-3_cd1.bin / PROGRAMO / VB40 / SLIDER / DEMODLG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-14  |  1.5 KB  |  59 lines

  1. // DemoDlg.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CDemoDlg dialog
  6. //{{AFX_INCLUDES()
  7. #include "slider.h"
  8. //}}AFX_INCLUDES
  9.  
  10. class CDemoDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14.     CDemoDlg(CWnd* pParent = NULL);    // standard constructor
  15.  
  16. // Dialog Data
  17.     //{{AFX_DATA(CDemoDlg)
  18.     enum { IDD = IDD_DEMO_DIALOG };
  19.     CStatic    m_pos;
  20.     CSlider    m_slider;
  21.     int        m_innerbevelbtn;
  22.     int        m_orientationbtn;
  23.     int        m_outerbevelbtn;
  24.     //}}AFX_DATA
  25.  
  26.     // ClassWizard generated virtual function overrides
  27.     //{{AFX_VIRTUAL(CDemoDlg)
  28.     protected:
  29.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  30.     //}}AFX_VIRTUAL
  31.  
  32. // Implementation
  33. protected:
  34.     HICON m_hIcon;
  35.  
  36.     // Generated message map functions
  37.     //{{AFX_MSG(CDemoDlg)
  38.     virtual BOOL OnInitDialog();
  39.     afx_msg void OnPaint();
  40.     afx_msg HCURSOR OnQueryDragIcon();
  41.     afx_msg void OnScrollSlider(short value);
  42.     afx_msg void OnScrollTickMarks(short value);
  43.     afx_msg void OnScrollCenterBar(short value);
  44.     afx_msg void OnScrollBorderWidth(short value);
  45.     afx_msg void OnScrollInnerBevelWidth(short value);
  46.     afx_msg void OnScrollOuterBevelWidth(short value);
  47.     afx_msg void OnRadio8();
  48.     afx_msg void OnRadio7();
  49.     afx_msg void OnRadio6();
  50.     afx_msg void OnRadio3();
  51.     afx_msg void OnRadio2();
  52.     afx_msg void OnRadio1();
  53.     afx_msg void OnRadio5();
  54.     afx_msg void OnRadio4();
  55.     DECLARE_EVENTSINK_MAP()
  56.     //}}AFX_MSG
  57.     DECLARE_MESSAGE_MAP()
  58. };
  59.