summaryrefslogtreecommitdiff
path: root/src/GudhUI/gui/MainWindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/GudhUI/gui/MainWindow.h')
-rw-r--r--src/GudhUI/gui/MainWindow.h140
1 files changed, 79 insertions, 61 deletions
diff --git a/src/GudhUI/gui/MainWindow.h b/src/GudhUI/gui/MainWindow.h
index e46b72a3..c8c3fcf6 100644
--- a/src/GudhUI/gui/MainWindow.h
+++ b/src/GudhUI/gui/MainWindow.h
@@ -1,5 +1,27 @@
-#ifndef MAIN_WINDOW_H
-#define MAIN_WINDOW_H
+/* This file is part of the Gudhi Library. The Gudhi library
+ * (Geometric Understanding in Higher Dimensions) is a generic C++
+ * library for computational topology.
+ *
+ * Author(s): David Salinas
+ *
+ * Copyright (C) 2014 INRIA Sophia Antipolis-Mediterranee (France)
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef GUI_MAINWINDOW_H_
+#define GUI_MAINWINDOW_H_
// Workaround for moc-qt4 not parsing boost headers
#include <CGAL/config.h>
@@ -15,86 +37,82 @@ class Menu_uniform_neighbors;
class Menu_edge_contraction;
class Menu_persistence;
-class MainWindow : public QMainWindow,public Ui::MainWindow{
- Q_OBJECT
+class MainWindow : public QMainWindow, public Ui::MainWindow {
+ Q_OBJECT
-private:
- Model model_;
- Viewer_instructor* viewer_instructor_;
- Menu_k_nearest_neighbors* menu_k_nearest_neighbors_;
- Menu_uniform_neighbors* menu_uniform_neighbors_;
- Menu_edge_contraction* menu_edge_contraction_;
- Menu_persistence* menu_persistence_;
+ private:
+ Model model_;
+ Viewer_instructor* viewer_instructor_;
+ Menu_k_nearest_neighbors* menu_k_nearest_neighbors_;
+ Menu_uniform_neighbors* menu_uniform_neighbors_;
+ Menu_edge_contraction* menu_edge_contraction_;
+ Menu_persistence* menu_persistence_;
-public:
- MainWindow(QWidget* parent = 0);
- void connectActions();
+ public:
+ MainWindow(QWidget* parent = 0);
+ void connectActions();
- /**
- * compute the bounding box and calls update view
- */
- void init_view() const;
- void update_view() const;
+ /**
+ * compute the bounding box and calls update view
+ */
+ void init_view() const;
+ void update_view() const;
-protected:
- void closeEvent(QCloseEvent *event);
- void keyPressEvent(QKeyEvent *event){}
+ protected:
+ void closeEvent(QCloseEvent *event);
-public:
+ void keyPressEvent(QKeyEvent *event) { }
- public slots:
+ public:
+ public slots:
+ /**
+ * open a file chooser to choose an off to load
+ */
+ void off_file_open();
+ void off_points_open();
- /**
- * open a file chooser to choose an off to load
- */
- void off_file_open();
+ /**
+ * open a file chooser to choose an off to save
+ */
+ void off_file_save();
+ void off_points_save();
- void off_points_open();
+ void show_graph_stats();
+ void show_complex_stats();
+ void show_complex_dimension();
- /**
- * open a file chooser to choose an off to save
- */
- void off_file_save();
- void off_points_save();
- void show_graph_stats();
- void show_complex_stats();
- void show_complex_dimension();
+ void build_rips_menu();
+ void build_rips(double alpha);
+ void build_k_nearest_neighbors_menu();
+ void build_k_nearest_neighbors(unsigned k);
- void build_rips_menu();
- void build_rips(double alpha);
- void build_k_nearest_neighbors_menu();
- void build_k_nearest_neighbors(unsigned k);
+ void contract_edge_menu();
+ void contract_edges(unsigned num_collapses);
- void contract_edge_menu();
- void contract_edges(unsigned num_collapses);
+ void collapse_vertices();
+ void collapse_edges();
- void collapse_vertices();
- void collapse_edges();
+ void uniform_noise();
+ void lloyd();
+ void show_homology_group();
+ void show_euler_characteristic();
+ void persistence_menu();
+ void compute_persistence(int p, double threshold, int max_dim, double min_pers);
+ void critical_points_menu();
+ void is_manifold_menu();
- void uniform_noise();
- void lloyd();
-
- void show_homology_group();
- void show_euler_characteristic();
- void persistence_menu();
- void compute_persistence(int p,double threshold,int max_dim,double min_pers);
- void critical_points_menu();
- void is_manifold_menu();
-
-
-public:
- signals:
- void sceneChanged() const;
-
+ public:
+ signals:
+ void sceneChanged() const;
};
-#endif
+#endif // GUI_MAINWINDOW_H_