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 "resource.h" 00009 00013 class CCircleRadiusControls : public CDialog 00014 { 00015 public: 00016 CCircleRadiusControls(CWnd* pParent = NULL); 00017 virtual ~CCircleRadiusControls(); 00018 00021 enum { IDD = IDD_CONTROLS_CHILDDLG }; 00022 00023 protected: 00027 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support 00028 00031 virtual BOOL OnInitDialog(); 00032 00033 DECLARE_MESSAGE_MAP() 00034 00035 00036 00037 afx_msg void OnBnClickedControlRadiusCheck(); 00038 00039 public: 00040 CSliderCtrlWithEcho m_CircleRadiusBar; 00041 BOOL m_bSliderControl; 00042 };