dialogclusteringhierarchical.h
Go to the documentation of this file.
1 /***************************************************************************
2  SocNetV: Social Network Visualizer
3  version: 3.1
4  Written in Qt
5 
6  dialogclusteringhierarchical.h - description
7  -------------------
8  copyright : (C) 2005-2023 by Dimitris B. Kalamaras
9  project site : https://socnetv.org
10 
11  ***************************************************************************/
12 
13 /*******************************************************************************
14 * This program is free software: you can redistribute it and/or modify *
15 * it under the terms of the GNU General Public License as published by *
16 * the Free Software Foundation, either version 3 of the License, or *
17 * (at your option) any later version. *
18 * *
19 * This program is distributed in the hope that it will be useful, *
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
22 * GNU General Public License for more details. *
23 * *
24 * You should have received a copy of the GNU General Public License *
25 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
26 ********************************************************************************/
27 
28 #ifndef DIALOGCLUSTERINGHIERARCHICAL_H
29 #define DIALOGCLUSTERINGHIERARCHICAL_H
30 
31 #include <QDialog>
32 #include "ui_dialogclusteringhierarchical.h"
33 
34 
35 class DialogClusteringHierarchical: public QDialog
36 {
37  Q_OBJECT
38 public:
39  DialogClusteringHierarchical (QWidget *parent = Q_NULLPTR, QString preselectMatrix = "");
41 public slots:
42  void getUserChoices();
43 signals:
44  void userChoices(const QString &matrix,
45  const QString &varLocation,
46  const QString &similarityMeasure,
47  const QString &linkageCriterion,
48  const bool &diagonal,
49  const bool &diagram);
50 private slots:
51  void on_buttonBox_accepted();
52  void on_buttonBox_rejected();
53  void matrixChanged(const QString &matrix);
54 private:
55  Ui::DialogClusteringHierarchical ui;
57 
58 };
59 
60 
61 
62 #endif
Definition: dialogclusteringhierarchical.h:36
~DialogClusteringHierarchical()
Definition: dialogclusteringhierarchical.cpp:134
void userChoices(const QString &matrix, const QString &varLocation, const QString &similarityMeasure, const QString &linkageCriterion, const bool &diagonal, const bool &diagram)
QStringList measureList
Definition: dialogclusteringhierarchical.h:56
void matrixChanged(const QString &matrix)
Definition: dialogclusteringhierarchical.cpp:90
QStringList variablesLocationList
Definition: dialogclusteringhierarchical.h:56
QStringList matrixList
Definition: dialogclusteringhierarchical.h:56
Ui::DialogClusteringHierarchical ui
Definition: dialogclusteringhierarchical.h:55
void getUserChoices()
Gets user choices.
Definition: dialogclusteringhierarchical.cpp:98
QStringList linkageList
Definition: dialogclusteringhierarchical.h:56
void on_buttonBox_rejected()
Definition: dialogclusteringhierarchical.cpp:129
DialogClusteringHierarchical(QWidget *parent=Q_NULLPTR, QString preselectMatrix="")
Definition: dialogclusteringhierarchical.cpp:36
void on_buttonBox_accepted()
Definition: dialogclusteringhierarchical.cpp:123