summaryrefslogtreecommitdiff
path: root/src/GudhUI/gui/Menu_persistence.cpp
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-11-06 14:27:18 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-11-06 14:27:18 +0000
commit606115b399b010b8ebfbf13f6a8ca2b1c1bf17cd (patch)
treef13206921b7b77ca3d2cc66c4ed612300bdaebd8 /src/GudhUI/gui/Menu_persistence.cpp
parentdd2a15d1a8d2607848527513210330baebce9e8e (diff)
parent72f647ad4b802d08072925a374324e7ace4b2c4d (diff)
Merge last trunk modifications
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/bitmap@889 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: d90cb012ff7f3a9070ea19e3c6651cc455bebdad
Diffstat (limited to 'src/GudhUI/gui/Menu_persistence.cpp')
-rw-r--r--src/GudhUI/gui/Menu_persistence.cpp45
1 files changed, 19 insertions, 26 deletions
diff --git a/src/GudhUI/gui/Menu_persistence.cpp b/src/GudhUI/gui/Menu_persistence.cpp
index fae3a0e6..016c076b 100644
--- a/src/GudhUI/gui/Menu_persistence.cpp
+++ b/src/GudhUI/gui/Menu_persistence.cpp
@@ -1,13 +1,10 @@
-/*
- * Menu_persistence.cpp
- * Created on: Jan 27, 2015
- * This file is part of the Gudhi Library. The Gudhi library
+/* 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-Méditerranée (France)
+ * 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
@@ -27,34 +24,30 @@
#include "Menu_persistence.h"
-Menu_persistence::Menu_persistence(QMainWindow* parent_):parent(parent_)
-{
- setupUi(this);
- connectActions(parent_);
+Menu_persistence::Menu_persistence(QMainWindow* parent_) : parent(parent_) {
+ setupUi(this);
+ connectActions(parent_);
}
-void Menu_persistence::connectActions(QMainWindow* parent){
- QObject::connect(
- this,
- SIGNAL(compute_persistence(int,double,int,double)),
- parent,
- SLOT(compute_persistence(int,double,int,double))
- );
+void Menu_persistence::connectActions(QMainWindow* parent) {
+ QObject::connect(this,
+ SIGNAL(compute_persistence(int, double, int, double)),
+ parent,
+ SLOT(compute_persistence(int, double, int, double)));
}
-void Menu_persistence::send_compute_persistence(){
- emit(compute_persistence(p_spinBox->value(),threshold_doubleSpinBox->value(),
- maxdimension_spinBox->value(),minpersistence_doubleSpinBox->value()));
+void Menu_persistence::send_compute_persistence() {
+ emit(compute_persistence(p_spinBox->value(), threshold_doubleSpinBox->value(),
+ maxdimension_spinBox->value(), minpersistence_doubleSpinBox->value()));
}
-void Menu_persistence::accept(){
- send_compute_persistence();
+void Menu_persistence::accept() {
+ send_compute_persistence();
}
-//void Menu_persistence::compute_persistence(int p_fied,double threshold,int dim_max,double min_persistence){
-//// if(checkBoxAutoUpdate->isChecked())
-//// emit(compute_k_nearest_neighbors((unsigned)spinBoxK->value()));
-//}
-
+// void Menu_persistence::compute_persistence(int p_fied,double threshold,int dim_max,double min_persistence) {
+// if(checkBoxAutoUpdate->isChecked())
+// emit(compute_k_nearest_neighbors((unsigned)spinBoxK->value()));
+// }
#include "Menu_persistence.moc"