0ad/source/tools/atlas/AtlasUI/CustomControls/Windows/AtlasDialog.h
Ykkrosh f2b662d12d Build: generate Atlas project files (with "update-workspaces --atlas") (for VS2003 only).
Premake: allow slight separation of files' locations on disk vs in the
project tree.
Atlas: require fewer include directories.

This was SVN commit r2956.
2005-10-17 01:11:12 +00:00

31 lines
639 B
C++

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