saving CloudViewer settings (Camera,Trajectory,Grid) in the config file

This commit is contained in:
Mathieu Labbe
2015-01-13 18:11:34 -05:00
parent 6bd2a0926b
commit fb0b23ae06
10 changed files with 379 additions and 27 deletions

View File

@@ -77,17 +77,17 @@ void ImageView::resetZoom()
this->setDragMode(QGraphicsView::NoDrag);
}
bool ImageView::isImageShown()
bool ImageView::isImageShown() const
{
return _showImage->isChecked();
}
bool ImageView::isImageDepthShown()
bool ImageView::isImageDepthShown() const
{
return _showImageDepth->isChecked();
}
bool ImageView::isFeaturesShown()
bool ImageView::isFeaturesShown() const
{
return _showFeatures->isChecked();
}
@@ -121,7 +121,7 @@ void ImageView::setImageDepthShown(bool shown)
}
}
bool ImageView::isLinesShown()
bool ImageView::isLinesShown() const
{
return _showLines->isChecked();
}