forked from CloudCompare/CloudCompare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathccPickOneElementDlg.cpp
58 lines (49 loc) · 1.99 KB
/
ccPickOneElementDlg.cpp
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//##########################################################################
//# #
//# 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: EDF R&D / TELECOM ParisTech (ENST-TSI) #
//# #
//##########################################################################
#include "ccPickOneElementDlg.h"
//UI file
#include <ui_pickOneElementDlg.h>
ccPickOneElementDlg::ccPickOneElementDlg( const QString &label,
const QString &windowTitle/*=QString()*/,
QWidget* parent/*=0*/)
: QDialog(parent, Qt::Tool)
, m_ui(new Ui_PickOneElementDialog)
{
m_ui->setupUi(this);
if (!windowTitle.isNull())
{
setWindowTitle(windowTitle);
}
m_ui->comboLabel->setText(label);
}
ccPickOneElementDlg::~ccPickOneElementDlg()
{
delete m_ui;
m_ui = nullptr;
}
void ccPickOneElementDlg::addElement(const QString &elementName)
{
m_ui->comboBox->addItem(elementName);
}
void ccPickOneElementDlg::setDefaultIndex(int index)
{
m_ui->comboBox->setCurrentIndex(index);
}
int ccPickOneElementDlg::getSelectedIndex()
{
return m_ui->comboBox->currentIndex();
}