COIN-OR::LEMON - Graph Library

Changeset 28:fa28f1071bd6 in glemon-0.x for map_win.h


Ignore:
Timestamp:
06/24/05 20:16:12 (19 years ago)
Author:
Hegyi Péter
Branch:
gui
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk/gui@1996
Message:

NodeMap? values are now visualizable. Todo: default map-values

File:
1 edited

Legend:

Unmodified
Added
Removed
  • map_win.h

    r8 r28  
    33#ifndef MAP_WIN_H
    44#define MAP_WIN_H
     5
     6class MapWin;
    57
    68#include <all_include.h>
     
    2527  MapStorage & ms;
    2628
    27   Gtk::Table table;
     29  Gtk::Table * table;
    2830 
    29   Gtk::HBox combos, * labelpluscombo;
    30   Gtk::Combo * combo_array;
    31 
    32   Gtk::VBox vbox_b, vbox_r1, vbox_r2;
     31  Gtk::Combo * e_combo_array, * n_combo_array;
    3332
    3433  Gtk::Label * label;
     34
     35  Gtk::VBox vbox;
    3536
    3637public:
     
    4243  ///appropriate function of the \ref GraphDisplayerCanvas
    4344  ///to change the visible values of that attribute.
    44   virtual void combo_changed(int);
     45  virtual void e_combo_changed(int);
     46  ///If a radiobutton is clicked, this function determines
     47  ///which button was that and after that calls the
     48  ///appropriate function of the \ref GraphDisplayerCanvas
     49  ///to change the visible values of that attribute.
     50  virtual void n_combo_changed(int);
     51
     52  ///This function is created to set the appropriate maps on the newly created node
     53  void update_node(Graph::Node);
     54
     55  ///This function is created to set the appropriate maps on the newly created edge
     56  void update_edge(Graph::Edge);
     57
    4558  virtual bool close_if_escape_is_pressed(GdkEventKey*);
    4659};
Note: See TracChangeset for help on using the changeset viewer.