0ad/source/tools/atlas/AtlasUI/CustomControls/Windows/AtlasDialog.h
Ykkrosh d0146135c4 Initial Actor Editor code
This was SVN commit r2025.
2005-03-19 22:29:32 +00:00

29 lines
589 B
C++

#include "wx/dialog.h"
#include "AtlasWindowCommandProc.h"
#include "IAtlasExporter.h"
class FieldEditCtrl_Dialog;
class AtlasDialog : public wxDialog, public IAtlasExporter
{
friend class FieldEditCtrl_Dialog;
friend class AtlasWindowCommandProc;
DECLARE_CLASS(AtlasDialog);
public:
AtlasDialog(wxWindow* parent, const wxString& title);
virtual ~AtlasDialog() {}
void OnUndo(wxCommandEvent& event);
void OnRedo(wxCommandEvent& event);
protected:
wxPanel* m_MainPanel;
private:
AtlasWindowCommandProc m_CommandProc;
DECLARE_EVENT_TABLE()
};