summaryrefslogtreecommitdiff
path: root/src/GudhUI/gui/Menu_k_nearest_neighbors.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/GudhUI/gui/Menu_k_nearest_neighbors.h')
-rw-r--r--src/GudhUI/gui/Menu_k_nearest_neighbors.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/GudhUI/gui/Menu_k_nearest_neighbors.h b/src/GudhUI/gui/Menu_k_nearest_neighbors.h
new file mode 100644
index 00000000..d72b0074
--- /dev/null
+++ b/src/GudhUI/gui/Menu_k_nearest_neighbors.h
@@ -0,0 +1,39 @@
+/*
+ * Menu_k_nearest_neighbors.h
+ *
+ * Created on: Sep 11, 2014
+ * Author: dsalinas
+ */
+
+#ifndef MENU_K_NEAREST_NEIGHBORS_H_
+#define MENU_K_NEAREST_NEIGHBORS_H_
+
+#include <QMainWindow>
+#include "gui/ui_KNearestNeighborsMenu.h"
+
+class QWidget;
+
+
+class Menu_k_nearest_neighbors : public QDialog,public Ui::KNearestNeighborsMenu{
+ Q_OBJECT
+private:
+ QMainWindow* parent;
+
+public:
+
+ Menu_k_nearest_neighbors(QMainWindow* parent_);
+
+ void connectActions(QMainWindow* parent);
+
+ public slots:
+ void send_compute_k_nearest_neighbors();
+ void update_k(int);
+ void accept();
+
+ signals:
+ void compute_k_nearest_neighbors(unsigned k);
+
+};
+
+
+#endif /* MENU_K_NEAREST_NEIGHBORS_H_ */