/* ========================================================================== * ÆÄ ÀÏ : SystemWindow.h * ¸ñ Àû : °ÔÀÓ ¿É¼Ç Á¶Àý¿ë ½Ã½ºÅÛ À©µµ¿ì * ÀÛ ¼º ÀÚ : ±è°¡¶÷ * ÀÛ ¼º ÀÏ : 2007-03-06 * ÁÖÀÇ»çÇ× : *===========================================================================*/ #pragma once #include "TabWindow.h" class cOptionSheet1; class cOptionSheet2; class cOptionSheet3; class cOptionWindow : public cTabWindow { public: cOptionWindow(); virtual ~cOptionWindow(); virtual void Open() {} protected: bool OnCreate( cUINodeProperty* pproperty ); void OnCommand( cUINode* pcaller, unsigned int id ); void OnShow(); protected: cOptionSheet1* mpOptSheet1; cOptionSheet2* mpOptSheet2; cOptionSheet3* mpOptSheet3; };