summary refs log tree commit diff stats
path: root/tools/mapedit/src/frame.h
blob: 4aa44c509114b81c338ee52715c3fa7bd6c3d0ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#ifndef FRAME_H
#define FRAME_H

#include <wx/wxprec.h>

#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif

#include "map.h"
#include "widget.h"
#include "tile_widget.h"
#include <list>
#include <wx/notebook.h>

class MapeditFrame : public wxFrame {
  public:
    MapeditFrame() {}
    MapeditFrame(Map map, std::string filename);
    
    MapeditWidget* GetMapEditor();
    void StartAddingEntity();
    void FinishAddingEntity();
    void MapDirtyDidChange(bool dirty);
    
    static void NewMap();
    static void OpenMap(const char* filename);
    
    std::list<wxWindow*>::iterator closer;

  private:
    static void LaunchWindow(Map map, const char* filename);
      
    void ZoomIn(wxCommandEvent& event);
    void ZoomOut(wxCommandEvent& event);
    void OnNew(wxCommandEvent& event);
    void OnOpen(wxCommandEvent& event);
    void OnSave(wxCommandEvent& event);
    void OnClose(wxCommandEvent& event);
    void OnExit(wxCloseEvent& event);
    void OnQuit(wxCommandEvent& event);
    void OnTitleChange(wxCommandEvent& event);
    void OnTabChange(wxBookCtrlEvent& event);
    void OnTabChanging(wxBookCtrlEvent& event);
    void OnAddEntity(wxCommandEvent& event);
    void OnCancelAddEntity(wxCommandEvent& event);
    
    Map map;
    MapeditWidget* mapEditor;
    TileWidget* tileEditor;
    wxTextCtrl* titleBox;
    std::string filename;
    wxNotebook* notebook;
    wxChoice* entityTypeBox;
    wxButton* addEntityButton;
    wxButton* cancelEntityButton;
    wxToolBar* toolbar;
    
    bool addingEntity = false;
    
    wxDECLARE_EVENT_TABLE();
};

#endif