Menu_persistence.h
1/* This file is part of the Gudhi Library - https://gudhi.inria.fr/ - which is released under MIT.
2 * See file LICENSE or go to https://gudhi.inria.fr/licensing/ for full license details.
3 * Author(s): David Salinas
4 *
5 * Copyright (C) 2014 Inria
6 *
7 * Modification(s):
8 * - YYYY/MM Author: Description of the modification
9 */
10
11#ifndef GUI_MENU_PERSISTENCE_H_
12#define GUI_MENU_PERSISTENCE_H_
13
14#include <QMainWindow>
15#include "ui_PersistenceMenu.h"
16
17class QWidget;
18
19class Menu_persistence : public QDialog, public Ui::PersistenceMenu {
20 Q_OBJECT
21
22 private:
23 QMainWindow* parent;
24
25 public:
26 Menu_persistence(QMainWindow* parent_);
27
28 void connectActions(QMainWindow* parent);
29
30 public slots:
31 void send_compute_persistence();
32 void accept();
33
34 signals:
35 void compute_persistence(int p_fied, double threshold, int dim_max, double min_persistence);
36};
37
38#endif // GUI_MENU_PERSISTENCE_H_
GUDHIdev  Version 3.5.0  - C++ library for Topological Data Analysis (TDA) and Higher Dimensional Geometry Understanding.  - Copyright : MIT Generated on Tue Aug 16 2022 14:01:50 for GUDHIdev by Doxygen 1.9.4