gui/all_include.h
changeset 1512 e54392395480
parent 1503 97836166605d
child 1550 4dcbb4ab1d7a
     1.1 --- a/gui/all_include.h	Fri Jun 24 08:44:54 2005 +0000
     1.2 +++ b/gui/all_include.h	Fri Jun 24 18:16:12 2005 +0000
     1.3 @@ -16,7 +16,8 @@
     1.4  #include <lemon/error.h>
     1.5  #include <lemon/xy.h>
     1.6  
     1.7 -enum {WIDTH, COLOR, TEXT, PROPERTY_NUM}; // edge properties;
     1.8 +enum {E_WIDTH, E_COLOR, E_TEXT, EDGE_PROPERTY_NUM}; // edge properties;
     1.9 +enum {N_RADIUS, N_COLOR, N_TEXT, NODE_PROPERTY_NUM}; // node properties;
    1.10  enum {MOVE, CREATE_NODE, CREATE_EDGE, ERASER, EDGE_MAP_EDIT, TOOL_NUM}; // tools;
    1.11  #define RANGE 3
    1.12  #define WIN_WIDTH 900
    1.13 @@ -24,8 +25,10 @@
    1.14  
    1.15  
    1.16  #ifndef MAIN_PART
    1.17 -extern std::vector <std::string> property_strings;
    1.18 -extern std::vector <double> property_defaults;
    1.19 +extern std::vector <std::string> edge_property_strings;
    1.20 +extern std::vector <double> edge_property_defaults;
    1.21 +extern std::vector <std::string> node_property_strings;
    1.22 +extern std::vector <double> node_property_defaults;
    1.23  #endif //MAIN_PART
    1.24  
    1.25  using namespace lemon;