00001 #include "mainApplicationWindow.h" 00002 #include "wx/grid.h" 00003 00004 #ifndef EVENTSLOG_H 00005 #define EVENTSLOG_H 00006 00007 class EventsLog : public MyScrolledWindowSmart 00008 { 00009 public: 00010 EventsLog(wxWindow *parent); 00011 00012 bool updateLog(int msg_sndr,wxString message,long milliSecondsElapsed); 00013 int testVar; 00014 00015 enum 00016 { 00017 SCENRAIO_FRAME_MSG = 1, 00018 AVATAR_MSG, 00019 MANNEQUIN_MSG, 00020 EVENT_LIST_MSG, 00021 00022 }; 00023 00024 private: 00025 00026 wxGrid *eventsLogGrid; 00027 00028 }; 00029 00030 00031 #endif