From f527cde6342c5b8109a20f0a6b483327c6569844 Mon Sep 17 00:00:00 2001 From: salinasd Date: Tue, 27 Jan 2015 10:20:13 +0000 Subject: Merge GudhUI, a UI for gudhi based on Qt git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/trunk@427 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 17fedd974f14a8225b27d94361e835964eeb5cba --- src/GudhUI/gui/Menu_k_nearest_neighbors.cpp | 55 +++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 src/GudhUI/gui/Menu_k_nearest_neighbors.cpp (limited to 'src/GudhUI/gui/Menu_k_nearest_neighbors.cpp') diff --git a/src/GudhUI/gui/Menu_k_nearest_neighbors.cpp b/src/GudhUI/gui/Menu_k_nearest_neighbors.cpp new file mode 100644 index 00000000..21c67b2a --- /dev/null +++ b/src/GudhUI/gui/Menu_k_nearest_neighbors.cpp @@ -0,0 +1,55 @@ +/* + * Menu_k_nearest_neighbors.cpp + * + * Created on: Sep 11, 2014 + * Author: dsalinas + */ + + +#include "Menu_k_nearest_neighbors.h" + +Menu_k_nearest_neighbors::Menu_k_nearest_neighbors(QMainWindow* parent_): +parent(parent_) +{ + setupUi(this); + connectActions(parent_); +} + +void Menu_k_nearest_neighbors::connectActions(QMainWindow* parent){ + + QObject::connect( + this->pushButtonCompute, + SIGNAL(clicked()), + this, + SLOT(send_compute_k_nearest_neighbors()) + ); + QObject::connect( + this->spinBoxK, + SIGNAL(valueChanged(int)), + this, + SLOT(update_k(int)) + ); + QObject::connect( + this, + SIGNAL(compute_k_nearest_neighbors(unsigned)), + parent, + SLOT(build_k_nearest_neighbors(unsigned)) + ); + +} + +void Menu_k_nearest_neighbors::send_compute_k_nearest_neighbors(){ + emit(compute_k_nearest_neighbors((unsigned)spinBoxK->value())); +} + +void Menu_k_nearest_neighbors::accept(){ + send_compute_k_nearest_neighbors(); +} + +void Menu_k_nearest_neighbors::update_k(int new_k_value){ + if(checkBoxAutoUpdate->isChecked()) + emit(compute_k_nearest_neighbors((unsigned)spinBoxK->value())); +} + + +#include "Menu_k_nearest_neighbors.moc" -- cgit v1.2.3