/* ========================================================================== * ÆÄ ÀÏ : ServerUIManager.h * ¸ñ Àû : * ÀÛ ¼º ÀÚ : ±è°¡¶÷ * ÀÛ ¼º ÀÏ : 2006-12-21 * ÁÖÀÇ»çÇ× : *===========================================================================*/ #pragma once class cServerWindow; class cServerUIManager { public: cServerUIManager(); ~cServerUIManager(); /// stage->InitStage¿¡¼­ È£Ãâ : ÃʱâÈ­ void Init(); /// stage->Open¿¡¼­ È£Ãâ : ÁøÀÔ ½ÃÁ¡ void Open(); /// stage->Close¿¡¼­ È£Ãâ : º¯°æ ½ÃÁ¡ void Close(); /// È­¸éÀ» º¸¿©Áֱ⠽ÃÀÛÇÏ´Â ½ÃÁ¡¿¡ È£Ãâ void Visible(); /// stage->Process¿¡¼­ È£Ãâ void Process( unsigned long accumtime ); void SetEnableWindow( bool enable ); void SetEnableConnectBtn( bool enable ); protected: cServerWindow* mpServerWindow; };