[42] | 1 | // -*- C++ -*- // |
---|
| 2 | |
---|
| 3 | #ifndef NEWMAPWIN_H |
---|
| 4 | #define NEWMAPWIN_H |
---|
| 5 | |
---|
| 6 | class NewMapWin; |
---|
| 7 | |
---|
| 8 | #include <all_include.h> |
---|
[96] | 9 | #include <nbtab.h> |
---|
[42] | 10 | #include <libgnomecanvasmm.h> |
---|
| 11 | #include <libgnomecanvasmm/polygon.h> |
---|
[88] | 12 | #include <stack> |
---|
[42] | 13 | |
---|
| 14 | ///This class is responsible for creating a window, |
---|
| 15 | ///on which the parameters of a new map can be set. |
---|
| 16 | |
---|
[90] | 17 | class NewMapWin : public Gtk::Dialog |
---|
[42] | 18 | { |
---|
[96] | 19 | NoteBookTab & mytab; |
---|
[42] | 20 | |
---|
[88] | 21 | public: |
---|
| 22 | struct tree_node |
---|
| 23 | { |
---|
| 24 | char ch; |
---|
| 25 | tree_node * left_child; |
---|
| 26 | tree_node * right_child; |
---|
| 27 | }; |
---|
| 28 | |
---|
[42] | 29 | ///Constructor of NewMapWin creates the widgets shown in NewMapWin. |
---|
[96] | 30 | NewMapWin(const std::string& title, NoteBookTab &, bool itisedge=true, bool edgenode=true); |
---|
[117] | 31 | |
---|
[42] | 32 | ///Signal on button is connected to this function, |
---|
| 33 | ///Therefore this function determines whether to |
---|
| 34 | ///call the map/creatort function, and if yes, it |
---|
| 35 | //tells it the attributes.(name, default value) |
---|
[90] | 36 | virtual void on_response(int response_id); |
---|
[85] | 37 | |
---|
[42] | 38 | virtual bool closeIfEscapeIsPressed(GdkEventKey*); |
---|
| 39 | |
---|
[88] | 40 | ///Function that creates a tree from an appropriately manipulated string |
---|
| 41 | tree_node * weightedString2Tree(std::string, std::vector<unsigned int> &, int); |
---|
| 42 | |
---|
| 43 | ///Function that creates a string from a tree by postorder reading. |
---|
| 44 | std::string postOrder(tree_node *); |
---|
| 45 | |
---|
| 46 | std::string string2Polishform(std::string, bool); |
---|
| 47 | |
---|
| 48 | bool validVariable(std::string, bool); |
---|
| 49 | |
---|
[117] | 50 | void deleteTree(tree_node *); |
---|
| 51 | |
---|
[88] | 52 | std::map<char, std::string> ch2var; |
---|
| 53 | |
---|
[42] | 54 | Gtk::Entry name, default_value; |
---|
| 55 | |
---|
| 56 | Gtk::Table * table; |
---|
| 57 | Gtk::Label * label; |
---|
| 58 | |
---|
| 59 | Gtk::RadioButton node, edge; |
---|
| 60 | }; |
---|
| 61 | |
---|
| 62 | #endif //NEWMAPWIN_H |
---|