nbtab.cc
changeset 157 7e6ad28aeb9e
parent 156 c5cdf6690cdf
child 160 14a76109b561
equal deleted inserted replaced
6:cf7daf46a60a 7:412046af56df
   216 sigc::signal<void, std::string> NoteBookTab::signal_title_ch()
   216 sigc::signal<void, std::string> NoteBookTab::signal_title_ch()
   217 {
   217 {
   218   return signal_title;
   218   return signal_title;
   219 }
   219 }
   220 
   220 
   221 void NoteBookTab::setNodeView(bool autoscale, bool zoomtrack, double min, double max, double unit)
   221 void NoteBookTab::setView(bool autoscale, bool zoomtrack, double width, double radius)
   222 {
   222 {
   223   gd_canvas->setNodeView(autoscale, zoomtrack, min, max, unit);
   223   gd_canvas->setView(autoscale, zoomtrack, width, radius);
   224 }
   224 }
   225 
   225 
   226 void NoteBookTab::getNodeView(bool & autoscale, bool & zoomtrack, double& min, double& max, double& unit)
   226 void NoteBookTab::getView(bool & autoscale, bool & zoomtrack, double& width, double& radius)
   227 {
   227 {
   228   gd_canvas->getNodeView(autoscale, zoomtrack, min, max, unit);
   228   gd_canvas->getView(autoscale, zoomtrack, width, radius);
   229 }
   229 }