main_win.cc
changeset 155 74065e83844d
parent 154 65c1b103443d
child 156 c5cdf6690cdf
     1.1 --- a/main_win.cc	Mon Sep 25 15:30:04 2006 +0000
     1.2 +++ b/main_win.cc	Thu Sep 28 09:26:48 2006 +0000
     1.3 @@ -210,27 +210,27 @@
     1.4    table2.attach(*auto_scale, 0,2,0,1);
     1.5   
     1.6    Gtk::Label * unit_label= new Gtk::Label("Unit:");
     1.7 -  table2.attach(*unit_label, 2,3,0,1);
     1.8 +//   table2.attach(*unit_label, 2,3,0,1);
     1.9    
    1.10    Gtk::Adjustment * adjustment_unit=new Gtk::Adjustment(20, 5, 200, 5, 10);
    1.11  
    1.12    radius_unit = new Gtk::SpinButton(*adjustment_unit, 5,0);
    1.13    radius_unit->signal_value_changed().connect(sigc::mem_fun(*this, &MainWin::nodeViewChanged));
    1.14 -  table2.attach(*radius_unit, 3,4,0,1);
    1.15 +//   table2.attach(*radius_unit, 3,4,0,1);
    1.16  
    1.17    Gtk::Label * min_label= new Gtk::Label("Min:");
    1.18 -  table2.attach(*min_label, 0,1,1,2);
    1.19 +//   table2.attach(*min_label, 0,1,1,2);
    1.20    
    1.21    Gtk::Adjustment * adjustment_min=new Gtk::Adjustment(20, 5, 200, 5, 10);
    1.22  
    1.23    radius_min = new Gtk::SpinButton(*adjustment_min, 5,0);
    1.24    radius_min->signal_value_changed().connect(sigc::mem_fun(*this, &MainWin::nodeViewChanged));
    1.25 -  table2.attach(*radius_min, 1,2,1,2);
    1.26 +//   table2.attach(*radius_min, 1,2,1,2);
    1.27  
    1.28 -  Gtk::Label * max_label= new Gtk::Label("Max:");
    1.29 +  Gtk::Label * max_label= new Gtk::Label("Size:");
    1.30    table2.attach(*max_label, 2,3,1,2);
    1.31    
    1.32 -  Gtk::Adjustment * adjustment_max=new Gtk::Adjustment(20, 5, 200, 5, 10);
    1.33 +  Gtk::Adjustment * adjustment_max=new Gtk::Adjustment(20, 0, 200, 5, 10);
    1.34  
    1.35    radius_max = new Gtk::SpinButton(*adjustment_max, 5,0);
    1.36    radius_max->signal_value_changed().connect(sigc::mem_fun(*this, &MainWin::nodeViewChanged));