summaryrefslogtreecommitdiff
path: root/src/GudhUI/gui/Menu_uniform_neighbors.h
diff options
context:
space:
mode:
authorsalinasd <salinasd@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-01-27 10:20:13 +0000
committersalinasd <salinasd@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-01-27 10:20:13 +0000
commitf527cde6342c5b8109a20f0a6b483327c6569844 (patch)
tree1c0464b56b21ef7767f814b9a35a6e5c68aa7613 /src/GudhUI/gui/Menu_uniform_neighbors.h
parentdf6c26bdcb28805e8949d08dad5acd012e91ecb8 (diff)
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
Diffstat (limited to 'src/GudhUI/gui/Menu_uniform_neighbors.h')
-rw-r--r--src/GudhUI/gui/Menu_uniform_neighbors.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/GudhUI/gui/Menu_uniform_neighbors.h b/src/GudhUI/gui/Menu_uniform_neighbors.h
new file mode 100644
index 00000000..cb90cc88
--- /dev/null
+++ b/src/GudhUI/gui/Menu_uniform_neighbors.h
@@ -0,0 +1,36 @@
+/*
+ * Menu_uniform_neighbors.h
+ *
+ * Created on: Sep 11, 2014
+ * Author: dsalinas
+ */
+
+#ifndef MENU_UNIFORM_NEIGHBORS_H_
+#define MENU_UNIFORM_NEIGHBORS_H_
+
+#include <QMainWindow>
+#include "gui/ui_UniformNeighborsMenu.h"
+
+class Menu_uniform_neighbors : public QDialog,public Ui::UniformMenu {
+ Q_OBJECT
+private:
+ QMainWindow* parent;
+
+public:
+
+ Menu_uniform_neighbors(QMainWindow* parent_);
+
+ void connectActions(QMainWindow* parent);
+
+ public slots:
+ void send_compute_uniform_neighbors();
+ void update_alpha(double);
+ void accept();
+
+ signals:
+ void compute_uniform_neighbors(double alpha);
+
+};
+
+
+#endif /* MENU_UNIFORM_NEIGHBORS_H_ */