nbtab.cc
changeset 156 c5cdf6690cdf
parent 154 65c1b103443d
child 157 7e6ad28aeb9e
equal deleted inserted replaced
5:f461f4a06c43 6:cf7daf46a60a
   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, double min, double max, double unit)
   221 void NoteBookTab::setNodeView(bool autoscale, bool zoomtrack, double min, double max, double unit)
   222 {
   222 {
   223   gd_canvas->setNodeView(autoscale, min, max, unit);
   223   gd_canvas->setNodeView(autoscale, zoomtrack, min, max, unit);
   224 }
   224 }
   225 
   225 
   226 void NoteBookTab::getNodeView(bool & autoscale, double& min, double& max, double& unit)
   226 void NoteBookTab::getNodeView(bool & autoscale, bool & zoomtrack, double& min, double& max, double& unit)
   227 {
   227 {
   228   gd_canvas->getNodeView(autoscale, min, max, unit);
   228   gd_canvas->getNodeView(autoscale, zoomtrack, min, max, unit);
   229 }
   229 }