| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- //##########################################################################
- //# #
- //# CLOUDCOMPARE #
- //# #
- //# 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 #
- //# the Free Software Foundation; version 2 or later of the License. #
- //# #
- //# This program is distributed in the hope that it will be useful, #
- //# but WITHOUT ANY WARRANTY; without even the implied warranty of #
- //# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
- //# GNU General Public License for more details. #
- //# #
- //# COPYRIGHT: CloudCompare project #
- //# #
- //##########################################################################
- // Local
- #include "ccGraphicalSegmentationOptionsDlg.h"
- //Qt
- #include <QSettings>
- ccGraphicalSegmentationOptionsDlg::ccGraphicalSegmentationOptionsDlg(const QString windowTitle/*=QString()*/,
- QWidget* parent/*=nullptr*/)
- : QDialog(parent, Qt::Tool)
- , Ui::GraphicalSegmentationOptionsDlg()
- {
- setupUi(this);
- QSettings settings;
- settings.beginGroup(SegmentationToolOptionsKey());
- QString remainingSuffix = settings.value(RemainingSuffixKey(), ".remaining").toString();
- QString segmentedSuffix = settings.value(SegmentedSuffixKey(), ".segmented").toString();
- settings.endGroup();
- remainingTextLineEdit->setText(remainingSuffix);
- segmentedTextLineEdit->setText(segmentedSuffix);
- if (!windowTitle.isEmpty())
- {
- setWindowTitle(windowTitle);
- }
- }
- void ccGraphicalSegmentationOptionsDlg::accept()
- {
- QSettings settings;
- settings.beginGroup(SegmentationToolOptionsKey());
- settings.setValue(RemainingSuffixKey(), remainingTextLineEdit->text());
- settings.setValue(SegmentedSuffixKey(), segmentedTextLineEdit->text());
- settings.endGroup();
- QDialog::accept();
- }
|