1
0
forked from 0ad/0ad
0ad/source/tools/atlas/AtlasUI/ScenarioEditor/ScenarioEditor.h
Ykkrosh 7ebdefec4b Atlas: improved brushes
This was SVN commit r2875.
2005-10-09 03:26:16 +00:00

30 lines
656 B
C++

#ifndef SCENARIOEDITOR_H__
#define SCENARIOEDITOR_H__
#include "General/AtlasWindowCommandProc.h"
class ScenarioEditor : public wxFrame
{
public:
ScenarioEditor(wxWindow* parent);
void OnClose(wxCloseEvent& event);
void OnTimer(wxTimerEvent& event);
void OnIdle(wxIdleEvent& event);
void OnQuit(wxCommandEvent& event);
void OnUndo(wxCommandEvent& event);
void OnRedo(wxCommandEvent& event);
void OnWireframe(wxCommandEvent& event);
void OnMessageTrace(wxCommandEvent& event);
static AtlasWindowCommandProc& GetCommandProc();
private:
wxTimer m_Timer;
DECLARE_EVENT_TABLE();
};
#endif // SCENARIOEDITOR_H__