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 "CircleRadiusControls.h" 00009 00012 class CTutorialDlg : public CDialog 00013 { 00014 public: 00015 CTutorialDlg(CWnd* pParent = NULL); 00016 00019 enum { IDD = IDD_GROUPCONTROLS_DIALOG }; 00020 00021 protected: 00025 virtual BOOL OnInitDialog(); 00026 00030 DECLARE_MESSAGE_MAP() 00031 00032 00033 00034 afx_msg void OnPaint(); 00035 00036 private: 00038 CCircleRadiusControls m_circle_controls; 00039 00040 HICON m_hIcon; 00041 };