00001
00002
00003
00004
00005
00007 #pragma once
00008
00011 class CTutorialDlg : public CDialog
00012 {
00013 public:
00014 CTutorialDlg(CWnd* pParent = NULL);
00015
00018 enum { IDD = IDD_USELIBRARY1_DIALOG };
00019
00020 protected:
00024 virtual void DoDataExchange(CDataExchange* pDX);
00025
00029 virtual BOOL OnInitDialog();
00030
00034 DECLARE_MESSAGE_MAP()
00035
00036
00037
00038 afx_msg void OnPaint();
00039 afx_msg void OnTimer(UINT nIDEvent);
00040 afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
00041 afx_msg void OnMouseMove(UINT nFlags, CPoint point);
00042 afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
00045 afx_msg void OnBnClickedBtnAdd();
00046 afx_msg void OnBnClickedTimerControlSliders();
00047
00048 private:
00049 int m_Seconds;
00050 int m_OkCount;
00051 CString m_EchoText;
00052
00053 CSliderCtrlWithEcho m_VSliderBar;
00054 CSliderCtrlWithEcho m_HSliderBar;
00055
00056 CString m_MouseEcho;
00057 CString m_TimerEcho;
00058
00059 BOOL m_TimerCtrlSliders;
00060 HICON m_hIcon;
00061 };