summary refs log tree commit diff stats
path: root/tools/mapedit/src/frame.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2015-03-15 19:08:46 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2015-03-15 19:08:46 -0400
commitc125c1acc0b20c3e405dddb5c835d9734aa0472c (patch)
tree65d57aa9f4b0324506080210448fce212e407cc7 /tools/mapedit/src/frame.h
parent91640f2f35d703898edb14abaae7dd63f5346027 (diff)
downloadtherapy-c125c1acc0b20c3e405dddb5c835d9734aa0472c.tar.gz
therapy-c125c1acc0b20c3e405dddb5c835d9734aa0472c.tar.bz2
therapy-c125c1acc0b20c3e405dddb5c835d9734aa0472c.zip
Added ability to edit title in map editor
Diffstat (limited to 'tools/mapedit/src/frame.h')
-rw-r--r--tools/mapedit/src/frame.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/mapedit/src/frame.h b/tools/mapedit/src/frame.h index 53d8998..11990b1 100644 --- a/tools/mapedit/src/frame.h +++ b/tools/mapedit/src/frame.h
@@ -27,10 +27,12 @@ class MapeditFrame : public wxFrame {
27 void OnClose(wxCommandEvent& event); 27 void OnClose(wxCommandEvent& event);
28 void OnExit(wxCloseEvent& event); 28 void OnExit(wxCloseEvent& event);
29 void OnQuit(wxCommandEvent& event); 29 void OnQuit(wxCommandEvent& event);
30 void OnTitleChange(wxCommandEvent& event);
30 31
31 Map map; 32 Map map;
32 MapeditWidget* mapEditor; 33 MapeditWidget* mapEditor;
33 TileWidget* tileEditor; 34 TileWidget* tileEditor;
35 wxTextCtrl* titleBox;
34 std::string filename; 36 std::string filename;
35 37
36 wxDECLARE_EVENT_TABLE(); 38 wxDECLARE_EVENT_TABLE();