Menu_uniform_neighbors.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_UNIFORM_NEIGHBORS_H_
12#define GUI_MENU_UNIFORM_NEIGHBORS_H_
13
14#include <QMainWindow>
15#include "ui_UniformNeighborsMenu.h"
16
17class Menu_uniform_neighbors : public QDialog, public Ui::UniformMenu {
18 Q_OBJECT
19
20 private:
21 QMainWindow* parent;
22
23 public:
24 Menu_uniform_neighbors(QMainWindow* parent_);
25
26 void connectActions(QMainWindow* parent);
27
28 public slots:
29 void send_compute_uniform_neighbors();
30 void update_alpha(double alpha);
31 void accept();
32
33 signals:
34 void compute_uniform_neighbors(double alpha);
35};
36
37
38#endif // GUI_MENU_UNIFORM_NEIGHBORS_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