gui/graph-displayer.cc
changeset 1503 97836166605d
parent 1440 3d2e3cfb2a6c
child 1504 4b14c60ecb2b
equal deleted inserted replaced
1:e56670100448 2:745afe14f538
     4 #include <libgnomecanvasmm.h>
     4 #include <libgnomecanvasmm.h>
     5 #include <libgnomecanvasmm/polygon.h>
     5 #include <libgnomecanvasmm/polygon.h>
     6 
     6 
     7 #define MAIN_PART
     7 #define MAIN_PART
     8 
     8 
     9 std::string * property_strings;
     9 std::vector <std::string> property_strings;
    10 double * property_defaults;
    10 std::vector <double> property_defaults;
    11 
    11 
    12 
    12 
    13 int main(int argc, char *argv[])
    13 int main(int argc, char *argv[])
    14 {
    14 {
    15 
    15 
    16   //initializing
    16   //initializing
    17 
    17 
    18   property_strings=new std::string[PROPERTY_NUM];
    18   //  property_strings=new std::string[PROPERTY_NUM];
    19   property_strings[WIDTH]="Width";
    19   property_strings[WIDTH]="Width";
    20   property_strings[COLOR]="Color";
    20   property_strings[COLOR]="Color";
    21   property_strings[TEXT]="Text";
    21   property_strings[TEXT]="Text";
    22 
    22 
    23   property_defaults=new double[PROPERTY_NUM];
    23   //property_defaults=new double[PROPERTY_NUM];
    24   property_defaults[WIDTH]=10.0;
    24   property_defaults[WIDTH]=10.0;
    25   property_defaults[COLOR]=100;
    25   property_defaults[COLOR]=100;
    26   property_defaults[TEXT]=0;
    26   property_defaults[TEXT]=0;
    27 
    27 
    28   if(argc<2)
    28   if(argc<2)