Main Page   Compound List   File List   Compound Members  

TutorialDlg.h

00001 // University of Washington Bothell Graphics Library
00002 // Authors: Kelvin Sung, Steve Baer
00003 // The accompanying library supports CSS Graphics courses taught at UW-Bothell
00004 // See: http://courses.washington.edu/css450/
00005 //      http://courses.washington.edu/css451/
00007 #pragma once
00008 #include "SliderCtrlWithEcho.h"
00009 
00012 class CTutorialDlg : public CDialog
00013 {
00014 public:
00015   CTutorialDlg(CWnd* pParent = NULL);
00016 
00019   enum { IDD = IDD_SLIDERCTRLECHO_DIALOG };
00020 
00021 protected:
00025   virtual void DoDataExchange(CDataExchange* pDX);  // DDX/DDV support
00026 
00030   virtual BOOL OnInitDialog();
00031 
00035   DECLARE_MESSAGE_MAP()
00036 
00037   
00038 
00039   afx_msg void OnPaint();
00040   afx_msg void OnTimer(UINT nIDEvent);
00041   afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
00042   afx_msg void OnMouseMove(UINT nFlags, CPoint point);
00043   afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
00046   afx_msg void OnBnClickedBtnAdd();
00047   afx_msg void OnBnClickedTimerControlSliders();
00048 
00049 private:
00050   int m_Seconds;
00051   int m_OkCount;
00052   CString m_EchoText;
00053 
00054   CSliderCtrlWithEcho m_VSliderBar;
00055   CSliderCtrlWithEcho m_HSliderBar;
00056 
00057   CString m_MouseEcho;
00058   CString m_TimerEcho;
00059 
00060   BOOL m_TimerCtrlSliders;
00061   HICON m_hIcon;
00062 };

Generated on Thu Oct 2 02:02:53 2008 for MFC_SliderCtrlWithEcho by doxygen 1.3.1