home *** CD-ROM | disk | FTP | other *** search
/ HTBasic 9.3 / HTBasic 9.3.iso / 93win / data1.cab / DLL_Toolkit / Source / HTBKnob / KnobDlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2005-03-02  |  1.4 KB  |  54 lines

  1. /***************************************
  2. HTBKnob.dll
  3.  
  4. KnobDlg.h
  5.  
  6. Copyright TransEra Corporation 1999
  7. ***************************************/
  8.  
  9. #if !defined(AFX_KNOBDLG_H__979002ED_7BFF_11D3_8BCF_00105AC66D91__INCLUDED_)
  10. #define AFX_KNOBDLG_H__979002ED_7BFF_11D3_8BCF_00105AC66D91__INCLUDED_
  11.  
  12. #if _MSC_VER > 1000
  13. #pragma once
  14. #endif // _MSC_VER > 1000
  15.  
  16. class KnobDlg : public CDialog
  17. {
  18. // Construction
  19. public:
  20.     KnobDlg(CWnd* pParent = NULL);   // standard constructor
  21.  
  22. // Dialog Data
  23.     //{{AFX_DATA(KnobDlg)
  24.     enum { IDD = IDD_DIALOG1 };
  25.         // NOTE: the ClassWizard will add data members here
  26.     //}}AFX_DATA
  27.  
  28.  
  29. // Overrides
  30.     // ClassWizard generated virtual function overrides
  31.     //{{AFX_VIRTUAL(KnobDlg)
  32.     protected:
  33.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  34.     //}}AFX_VIRTUAL
  35.  
  36. // Implementation
  37. protected:
  38.  
  39.     // Generated message map functions
  40.     //{{AFX_MSG(KnobDlg)
  41.     virtual BOOL OnInitDialog();
  42.     afx_msg void OnPaint();
  43.     afx_msg void OnTimer(UINT nIDEvent);
  44.     afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  45.     afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  46.     //}}AFX_MSG
  47.     DECLARE_MESSAGE_MAP()
  48. };
  49.  
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  52.  
  53. #endif // !defined(AFX_KNOBDLG_H__979002ED_7BFF_11D3_8BCF_00105AC66D91__INCLUDED_)
  54.