/* ========================================================================== * ÆÄ ÀÏ : DMMsgWindow.h * ¸ñ Àû : * ÀÛ ¼º ÀÚ : ±è°¡¶÷ * ÀÛ ¼º ÀÏ : 2008-09-03 * ÁÖÀÇ»çÇ× : *===========================================================================*/ #pragma once #include "UIWindow.h" class cLabel; class cDMMsgWindow : public cUIWindow { public: cDMMsgWindow(); virtual ~cDMMsgWindow(); virtual void Open() {} void Clear(); void Show( bool onsound = true ); protected: bool OnCreate( cUINodeProperty* pproperty ); void OnCommand( cUINode* pcaller, unsigned int id ); void OnProcess( unsigned long deltaTime, unsigned long accumTime ); void UpdateSkin(); protected: cUINode* mpJoin; cUINode* mpCancel; cUINode* mpCountCancel; cLabel* mpCaption; cLabel* mpText; };