/* ========================================================================== * ÀÛ ¼º ÀÚ : À̼ø±Ô * ÀÛ ¼º ÀÏ : 2006.12.07 * ³» ¿ë : »ç¿îµå ´ÙÀ̾ó·Î±× * ÁÖÀÇ»çÇ× : *===========================================================================*/ #pragma once #include "UI/RollupWindow.h" class cSoundTransformDialog; class cSoundPropertyDialog; class cSoundInfoDialog; /// »ç¿îµå ´ÙÀ̾ó·Î±× class cSoundDialog : public CDialog { DECLARE_DYNAMIC(cSoundDialog) public: cSoundDialog(); virtual ~cSoundDialog(); /// ÀÚ½Ä ´ÙÀ̾ó·Î±×¸¦ ¸®ÅÏ cSoundTransformDialog* GetTransformDialog() const; cSoundPropertyDialog* GetPropertyDialog() const; cSoundInfoDialog* GetInfoDialog() const; protected: afx_msg int OnCreate( LPCREATESTRUCT cs ); afx_msg void OnClose(); afx_msg void OnSize( UINT type, int cx, int cy ); DECLARE_MESSAGE_MAP() virtual void OnOK() {} virtual void OnCancel() {} private: /// µÎ·ç¸¶¸® À©µµ¿ì cRollupWindow mRollupWnd; /// ÀÚ½Ä ´ÙÀ̾ó·Î±× cSoundTransformDialog* mTransformDialog; cSoundPropertyDialog* mPropertyDialog; cSoundInfoDialog* mInfoDialog; }; inline cSoundTransformDialog* cSoundDialog::GetTransformDialog() const { return mTransformDialog; } inline cSoundPropertyDialog* cSoundDialog::GetPropertyDialog() const { return mPropertyDialog; } inline cSoundInfoDialog* cSoundDialog::GetInfoDialog() const { return mInfoDialog; }