/* ========================================================================== * ÀÛ ¼º ÀÚ : À̼ø±Ô * ÀÛ ¼º ÀÏ : 2007.01.19 * ³» ¿ë : ȯ°æ ÇÏ´Ã ´ÙÀ̾ó·Î±× * ÁÖÀÇ»çÇ× : *===========================================================================*/ #pragma once #include "UI/ColorBox.h" #include "UI/NumericEdit.h" /// ȯ°æ ÇÏ´Ã ´ÙÀ̾ó·Î±× class cEnvSkyDialog : public CDialog { DECLARE_DYNAMIC(cEnvSkyDialog) public: cEnvSkyDialog(); virtual ~cEnvSkyDialog(); void Update( const cString& fileName ); void Update( const cString& fileName, bool enabled, float scale ); //, float height ); protected: virtual void DoDataExchange( CDataExchange* dx ); BOOL OnInitDialog(); protected: DECLARE_MESSAGE_MAP() afx_msg void OnClickedEnabled(); afx_msg void OnClickedOpen(); afx_msg LRESULT OnChangedNumber( WPARAM id, LPARAM ); //afx_msg LRESULT OnChangedHeight( WPARAM id, LPARAM ); private: /// ¼ýÀÚ ¿¡µðÆ® cNumericEdit mScale; //cNumericEdit mHeight; };