COIN-OR::LEMON - Graph Library

source: lemon-0.x/gui/new_map_win.h @ 1848:291764ce6d91

Last change on this file since 1848:291764ce6d91 was 1837:8dd6160ff699, checked in by Hegyi Péter, 18 years ago

Structure of GUI is now more clear-cut than before.

File size: 1.5 KB
RevLine 
[1593]1// -*- C++ -*- //
2
3#ifndef NEWMAPWIN_H
4#define NEWMAPWIN_H
5
6class NewMapWin;
7
8#include <all_include.h>
[1837]9#include <main_win.h>
[1593]10#include <libgnomecanvasmm.h>
11#include <libgnomecanvasmm/polygon.h>
[1814]12#include <stack>
[1593]13
14///This class is responsible for creating a window,
15///on which the parameters of a new map can be set.
16
[1823]17class NewMapWin : public Gtk::Dialog
[1593]18{
[1837]19  MainWin & mainwin;
[1593]20
[1814]21public:
22  struct tree_node
23  {
24    char ch;
25    tree_node * left_child;
26    tree_node * right_child;
27  };
28 
[1593]29  ///Constructor of NewMapWin creates the widgets shown in NewMapWin.
[1837]30  NewMapWin(const std::string& title, MainWin &, bool itisedge=true, bool edgenode=true);
[1814]31 
[1593]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)
[1823]36  virtual void on_response(int response_id);
[1737]37
[1593]38  virtual bool closeIfEscapeIsPressed(GdkEventKey*);
39
[1814]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
50  std::map<char, std::string> ch2var;
51
[1593]52  Gtk::Entry name, default_value;
53
54  Gtk::Table * table;
55  Gtk::Label * label;
56
57  Gtk::RadioButton node, edge;
58};
59
60#endif //NEWMAPWIN_H
Note: See TracBrowser for help on using the repository browser.