#pragma once #include #include #include "ICommandListener.h" // À̺¥Æ®/¾×¼Ç ¸®½ºÆ®µéÀÇ °øÅëµÈ Á¡À» ¸ð¾Æ³õÀº Ŭ·¡½º. class CEventPanel : public wxPanel, public ICommandListener { protected: wxBoxSizer* m_pTopSizer; wxListView* m_pListView; int m_iEventType; protected: void _Initialize( int iListViewID, int iEventType ); void _InitListViewColumn( void ); private: virtual void _UpdateEventList( void ); public: CEventPanel( wxWindow* pParent, wxWindowID id = -1 ); virtual ~CEventPanel(void); virtual void CommandPerformed( ICommand* pCommand ); };