summaryrefslogtreecommitdiff
path: root/src/GudhUI/gui/Menu_persistence.h
blob: a4d9463664eae7bafacef9f61c19bb7bd7b9d277 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*    This file is part of the Gudhi Library - https://gudhi.inria.fr/ - which is released under MIT.
 *    See file LICENSE or go to https://gudhi.inria.fr/licensing/ for full license details.
 *    Author(s):       David Salinas
 *
 *    Copyright (C) 2014 Inria
 *
 *    Modification(s):
 *      - YYYY/MM Author: Description of the modification
 */

#ifndef GUI_MENU_PERSISTENCE_H_
#define GUI_MENU_PERSISTENCE_H_

#include <QMainWindow>
#include "ui_PersistenceMenu.h"

class QWidget;

class Menu_persistence : public QDialog, public Ui::PersistenceMenu {
  Q_OBJECT

 private:
  QMainWindow* parent;

 public:
  Menu_persistence(QMainWindow* parent_);

  void connectActions(QMainWindow* parent);

 public slots:
  void send_compute_persistence();
  void accept();

 signals:
  void compute_persistence(int p_fied, double threshold, int dim_max, double min_persistence);
};

#endif  // GUI_MENU_PERSISTENCE_H_