valentina/src/app/dialogs/tools/dialogtool.cpp

717 lines
20 KiB
C++
Raw Normal View History

/************************************************************************
**
** @file dialogtool.cpp
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date November 15, 2013
**
** @brief
** @copyright
** This source code is part of the Valentine project, a pattern making
** program, whose allow create and modeling patterns of clothing.
** Copyright (C) 2013 Valentina project
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
**
** Valentina 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, either version 3 of the License, or
** (at your option) any later version.
**
** Valentina 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.
**
** You should have received a copy of the GNU General Public License
** along with Valentina. If not, see <http://www.gnu.org/licenses/>.
**
*************************************************************************/
2013-07-28 00:18:06 +02:00
#include "dialogtool.h"
#include "../../container/calculator.h"
#include "../../geometry/vgobject.h"
#include "../../tools/vabstracttool.h"
2013-07-28 00:18:06 +02:00
#include <QtWidgets>
DialogTool::DialogTool(const VContainer *data, QWidget *parent)
:QDialog(parent), data(data), isInitialized(false), flagName(true), flagFormula(true), timerFormula(nullptr),
bOk(nullptr), spinBoxAngle(nullptr), lineEditFormula(nullptr), listWidget(nullptr),
labelResultCalculation(nullptr), labelDescription(nullptr), labelEditNamePoint(nullptr),
labelEditFormula(nullptr), radioButtonSizeGrowth(nullptr), radioButtonStandardTable(nullptr),
radioButtonIncrements(nullptr), radioButtonLengthLine(nullptr), radioButtonLengthArc(nullptr),
radioButtonLengthCurve(nullptr), lineStyles(QStringList())
{
Q_CHECK_PTR(data);
2013-07-28 00:18:06 +02:00
timerFormula = new QTimer(this);
connect(timerFormula, &QTimer::timeout, this, &DialogTool::EvalFormula);
//Keep synchronize with VAbstractTool styles list!!!
lineStyles<<tr("No line")<<tr("Line")<<tr("Dash Line")<<tr("Dot Line")<<tr("Dash Dot Line")
<<tr("Dash Dot Dot Line");
Qt::WindowFlags flags = windowFlags();
setWindowFlags(flags | Qt::WindowStaysOnTopHint);
2013-07-28 00:18:06 +02:00
}
void DialogTool::closeEvent(QCloseEvent *event)
{
2013-07-28 00:18:06 +02:00
DialogClosed(QDialog::Rejected);
event->accept();
}
void DialogTool::showEvent(QShowEvent *event)
{
2013-07-28 00:18:06 +02:00
QDialog::showEvent( event );
if ( event->spontaneous() )
{
2013-07-28 00:18:06 +02:00
return;
}
if (isInitialized)
{
2013-07-28 00:18:06 +02:00
return;
}
isInitialized = true;//first show windows are held
2013-07-28 00:18:06 +02:00
}
void DialogTool::FillComboBoxPoints(QComboBox *box, const quint32 &id) const
{
Q_CHECK_PTR(box);
const QHash<quint32, VGObject*> *objs = data->DataGObjects();
QHashIterator<quint32, VGObject*> i(*objs);
QMap<QString, quint32> list;
while (i.hasNext())
{
i.next();
if (i.key() != id)
{
VGObject *obj = i.value();
2014-03-11 12:43:24 +01:00
if (obj->getType() == GObject::Point && obj->getMode() == Valentina::Calculation)
{
const VPointF *point = data->GeometricObject<const VPointF *>(i.key());
list[point->name()] = i.key();
}
}
2013-07-28 00:18:06 +02:00
}
FillList(box, list);
2013-07-28 00:18:06 +02:00
}
void DialogTool::FillComboBoxArcs(QComboBox *box, const quint32 &id, ComboMode::ComboBoxCutArc cut) const
2014-01-08 15:05:32 +01:00
{
Q_CHECK_PTR(box);
const QHash<quint32, VGObject *> *objs = data->DataGObjects();
QHashIterator<quint32, VGObject*> i(*objs);
QMap<QString, quint32> list;
2014-01-08 15:05:32 +01:00
while (i.hasNext())
{
i.next();
if (cut == ComboMode::CutArc)
{
if (i.key() != id + 1 && i.key() != id + 2)
{
VGObject *obj = i.value();
2014-03-11 12:43:24 +01:00
if (obj->getType() == GObject::Arc && obj->getMode() == Valentina::Calculation)
2014-01-08 15:05:32 +01:00
{
const VArc *arc = data->GeometricObject<const VArc *>(i.key());
list[arc->name()] = i.key();
}
}
}
else
{
if (i.key() != id)
{
VGObject *obj = i.value();
2014-03-11 12:43:24 +01:00
if (obj->getType() == GObject::Arc && obj->getMode() == Valentina::Calculation)
2014-01-08 15:05:32 +01:00
{
const VArc *arc = data->GeometricObject<const VArc *>(i.key());
list[arc->name()] = i.key();
}
}
}
}
FillList(box, list);
}
void DialogTool::FillComboBoxSplines(QComboBox *box, const quint32 &id, ComboMode::ComboBoxCutSpline cut) const
{
Q_CHECK_PTR(box);
const QHash<quint32, VGObject *> *objs = data->DataGObjects();
QHashIterator<quint32, VGObject*> i(*objs);
QMap<QString, quint32> list;
while (i.hasNext())
{
i.next();
if (cut == ComboMode::CutSpline)
{
if (i.key() != id + 1 && i.key() != id + 2)
{
VGObject *obj = i.value();
2014-03-11 12:43:24 +01:00
if (obj->getType() == GObject::Spline && obj->getMode() == Valentina::Calculation)
{
const VSpline *spl = data->GeometricObject<const VSpline *>(i.key());
list[spl->name()] = i.key();
}
}
}
else
{
if (i.key() != id)
{
VGObject *obj = i.value();
2014-03-11 12:43:24 +01:00
if (obj->getType() == GObject::Spline && obj->getMode() == Valentina::Calculation)
{
const VSpline *spl = data->GeometricObject<const VSpline *>(i.key());
list[spl->name()] = i.key();
}
}
}
}
FillList(box, list);
}
void DialogTool::FillComboBoxSplinesPath(QComboBox *box, const quint32 &id, ComboMode::ComboBoxCutSpline cut) const
{
Q_CHECK_PTR(box);
const QHash<quint32, VGObject *> *objs = data->DataGObjects();
QHashIterator<quint32, VGObject *> i(*objs);
QMap<QString, quint32> list;
while (i.hasNext())
{
i.next();
if (cut == ComboMode::CutSpline)
{
if (i.key() != id + 1 && i.key() != id + 2)
{
VGObject *obj = i.value();
2014-03-11 12:43:24 +01:00
if (obj->getType() == GObject::SplinePath && obj->getMode() == Valentina::Calculation)
{
const VSplinePath *splPath = data->GeometricObject<const VSplinePath *>(i.key());
list[splPath->name()] = i.key();
}
}
}
else
{
if (i.key() != id)
{
VGObject *obj = i.value();
2014-03-11 12:43:24 +01:00
if (obj->getType() == GObject::SplinePath && obj->getMode() == Valentina::Calculation)
{
const VSplinePath *splPath = data->GeometricObject<const VSplinePath *>(i.key());
list[splPath->name()] = i.key();
}
}
}
}
FillList(box, list);
}
void DialogTool::FillComboBoxTypeLine(QComboBox *box) const
{
Q_CHECK_PTR(box);
box->addItems(lineStyles);
box->setCurrentIndex(1);
2013-07-28 00:18:06 +02:00
}
QString DialogTool::GetTypeLine(const QComboBox *box) const
{
2014-02-26 10:51:37 +01:00
switch (lineStyles.indexOf(box->currentText()))
{
case 0: //No line
return VAbstractTool::TypeLineNone;
break;
case 1: //Line
return VAbstractTool::TypeLineLine;
break;
case 2: //Dash Line
return VAbstractTool::TypeLineDashLine;
break;
case 3: //Dot Line
return VAbstractTool::TypeLineDotLine;
break;
case 4: //Dash Dot Line
return VAbstractTool::TypeLineDashDotLine;
break;
case 5: //Dash Dot Dot Line
return VAbstractTool::TypeLineDashDotDotLine;
break;
default:
return VAbstractTool::TypeLineLine;
break;
2013-07-28 00:18:06 +02:00
}
}
void DialogTool::SetupTypeLine(QComboBox *box, const QString &value)
{
QStringList styles = VAbstractTool::Styles();
qint32 index = box->findText(lineStyles.at(styles.indexOf(value)));
if (index != -1)
{
box->setCurrentIndex(index);
2013-07-29 14:55:40 +02:00
}
}
void DialogTool::ChangeCurrentText(QComboBox *box, const QString &value)
{
2013-07-29 14:55:40 +02:00
qint32 index = box->findText(value);
if (index != -1)
{
2013-07-29 14:55:40 +02:00
box->setCurrentIndex(index);
}
else
{
qDebug()<<"Can't find object by name"<<value;
2013-07-29 14:55:40 +02:00
}
}
void DialogTool::ChangeCurrentData(QComboBox *box, const quint32 &value) const
{
2013-07-29 14:55:40 +02:00
qint32 index = box->findData(value);
if (index != -1)
{
2013-07-29 14:55:40 +02:00
box->setCurrentIndex(index);
}
}
void DialogTool::PutValHere(QLineEdit *lineEdit, QListWidget *listWidget)
{
Q_CHECK_PTR(lineEdit);
Q_CHECK_PTR(listWidget);
2013-08-06 09:56:09 +02:00
QListWidgetItem *item = listWidget->currentItem();
Q_CHECK_PTR(item);
int pos = lineEdit->cursorPosition();
lineEdit->setText(lineEdit->text().insert(lineEdit->cursorPosition(), item->text()));
lineEdit->setFocus();
lineEdit->setCursorPosition(pos + item->text().size());
2013-08-06 09:56:09 +02:00
}
void DialogTool::ValFormulaChanged(bool &flag, QLineEdit *edit, QTimer *timer)
{
Q_CHECK_PTR(edit);
Q_CHECK_PTR(timer);
Q_CHECK_PTR(labelEditFormula);
if (edit->text().isEmpty())
{
2013-08-06 09:56:09 +02:00
flag = false;
CheckState();
QPalette palette = labelEditFormula->palette();
palette.setColor(labelEditFormula->foregroundRole(), Qt::red);
labelEditFormula->setPalette(palette);
2013-08-06 09:56:09 +02:00
return;
}
timer->start(1000);
}
void DialogTool::Eval(QLineEdit *edit, bool &flag, QTimer *timer, QLabel *label)
{
Q_CHECK_PTR(edit);
Q_CHECK_PTR(timer);
Q_CHECK_PTR(label);
Q_CHECK_PTR(labelEditFormula);
QPalette palette = labelEditFormula->palette();
if (edit->text().isEmpty())
{
2013-08-06 09:56:09 +02:00
flag = false;
palette.setColor(labelEditFormula->foregroundRole(), Qt::red);
}
else
{
2013-08-06 09:56:09 +02:00
Calculator cal(data);
QString errorMsg;
qreal result = cal.eval(edit->text(), &errorMsg);
if (errorMsg.isEmpty() == false)
{
label->setText(tr("Error"));
2013-08-06 09:56:09 +02:00
flag = false;
palette.setColor(labelEditFormula->foregroundRole(), Qt::red);
}
else
{
2013-08-06 09:56:09 +02:00
label->setText(QString().setNum(result));
flag = true;
palette.setColor(labelEditFormula->foregroundRole(), QColor(76, 76, 76));
2013-08-06 09:56:09 +02:00
}
}
CheckState();
timer->stop();
labelEditFormula->setPalette(palette);
2013-08-06 09:56:09 +02:00
}
void DialogTool::setCurrentPointId(QComboBox *box, quint32 &pointId, const quint32 &value, const quint32 &id) const
{
Q_CHECK_PTR(box);
FillComboBoxPoints(box, id);
pointId = value;
ChangeCurrentData(box, value);
}
void DialogTool::setCurrentSplineId(QComboBox *box, quint32 &splineId, const quint32 &value, const quint32 &id,
ComboMode::ComboBoxCutSpline cut) const
{
Q_CHECK_PTR(box);
FillComboBoxSplines(box, id, cut);
splineId = value;
ChangeCurrentData(box, value);
}
void DialogTool::setCurrentArcId(QComboBox *box, quint32 &arcId, const quint32 &value, const quint32 &id,
2014-01-08 15:05:32 +01:00
ComboMode::ComboBoxCutArc cut) const
{
Q_CHECK_PTR(box);
2014-01-08 15:05:32 +01:00
FillComboBoxArcs(box, id, cut);
arcId = value;
ChangeCurrentData(box, value);
}
void DialogTool::setCurrentSplinePathId(QComboBox *box, quint32 &splinePathId, const quint32 &value,
const quint32 &id, ComboMode::ComboBoxCutSpline cut) const
{
Q_CHECK_PTR(box);
FillComboBoxSplinesPath(box, id, cut);
splinePathId = value;
ChangeCurrentData(box, value);
}
quint32 DialogTool::getCurrentObjectId(QComboBox *box) const
{
Q_CHECK_PTR(box);
qint32 index = box->currentIndex();
Q_ASSERT(index != -1);
if (index != -1)
{
return qvariant_cast<quint32>(box->itemData(index));
}
else
{
return -1;
}
}
2014-03-04 18:13:10 +01:00
bool DialogTool::ChoosedPoint(const quint32 &id, QComboBox *box, const QString &toolTip)
{
Q_CHECK_PTR(box);
const VPointF *point = data->GeometricObject<const VPointF *>(id);
Q_CHECK_PTR(point);
const qint32 index = box->findText(point->name());
if ( index != -1 )
{ // -1 for not found
box->setCurrentIndex(index);
emit ToolTip(toolTip);
return true;
}
return false;
}
void DialogTool::FillList(QComboBox *box, const QMap<QString, quint32> &list) const
{
Q_CHECK_PTR(box);
box->clear();
QMapIterator<QString, quint32> iter(list);
while (iter.hasNext())
{
iter.next();
box->addItem(iter.key(), iter.value());
}
}
void DialogTool::CheckState()
{
Q_CHECK_PTR(bOk);
bOk->setEnabled(flagFormula && flagName);
2013-07-28 00:18:06 +02:00
}
2014-03-11 12:43:24 +01:00
void DialogTool::ChoosedObject(quint32 id, const Valentina::Scenes &type)
{
2013-07-28 00:18:06 +02:00
Q_UNUSED(id);
Q_UNUSED(type);
}
void DialogTool::NamePointChanged()
{
Q_CHECK_PTR(labelEditNamePoint);
2013-07-28 00:18:06 +02:00
QLineEdit* edit = qobject_cast<QLineEdit*>(sender());
if (edit)
{
2013-07-28 00:18:06 +02:00
QString name = edit->text();
if (name.isEmpty() || name.contains(" "))
{
2013-07-28 00:18:06 +02:00
flagName = false;
QPalette palette = labelEditNamePoint->palette();
palette.setColor(labelEditNamePoint->foregroundRole(), Qt::red);
labelEditNamePoint->setPalette(palette);
}
else
{
2013-07-28 00:18:06 +02:00
flagName = true;
QPalette palette = labelEditNamePoint->palette();
palette.setColor(labelEditNamePoint->foregroundRole(), QColor(76, 76, 76));
labelEditNamePoint->setPalette(palette);
2013-07-28 00:18:06 +02:00
}
}
CheckState();
}
void DialogTool::DialogAccepted()
{
2013-07-28 00:18:06 +02:00
emit DialogClosed(QDialog::Accepted);
}
void DialogTool::DialogRejected()
{
2013-07-28 00:18:06 +02:00
emit DialogClosed(QDialog::Rejected);
}
void DialogTool::FormulaChanged()
{
2013-07-28 00:18:06 +02:00
QLineEdit* edit = qobject_cast<QLineEdit*>(sender());
if (edit)
{
2013-08-06 09:56:09 +02:00
ValFormulaChanged(flagFormula, edit, timerFormula);
2013-07-28 00:18:06 +02:00
}
}
void DialogTool::ArrowUp()
{
Q_CHECK_PTR(spinBoxAngle);
2013-07-28 00:18:06 +02:00
spinBoxAngle->setValue(90);
}
void DialogTool::ArrowDown()
{
Q_CHECK_PTR(spinBoxAngle);
2013-07-28 00:18:06 +02:00
spinBoxAngle->setValue(270);
}
void DialogTool::ArrowLeft()
{
Q_CHECK_PTR(spinBoxAngle);
2013-07-28 00:18:06 +02:00
spinBoxAngle->setValue(180);
}
void DialogTool::ArrowRight()
{
Q_CHECK_PTR(spinBoxAngle);
2013-07-28 00:18:06 +02:00
spinBoxAngle->setValue(0);
}
void DialogTool::ArrowLeftUp()
{
Q_CHECK_PTR(spinBoxAngle);
2013-07-28 00:18:06 +02:00
spinBoxAngle->setValue(135);
}
void DialogTool::ArrowLeftDown()
{
Q_CHECK_PTR(spinBoxAngle);
2013-07-28 00:18:06 +02:00
spinBoxAngle->setValue(225);
}
void DialogTool::ArrowRightUp()
{
Q_CHECK_PTR(spinBoxAngle);
2013-07-28 00:18:06 +02:00
spinBoxAngle->setValue(45);
}
void DialogTool::ArrowRightDown()
{
Q_CHECK_PTR(spinBoxAngle);
2013-07-28 00:18:06 +02:00
spinBoxAngle->setValue(315);
}
void DialogTool::EvalFormula()
{
Q_CHECK_PTR(lineEditFormula);
Q_CHECK_PTR(labelResultCalculation);
2013-08-06 09:56:09 +02:00
Eval(lineEditFormula, flagFormula, timerFormula, labelResultCalculation);
2013-07-28 00:18:06 +02:00
}
void DialogTool::SizeHeight()
{
Q_CHECK_PTR(listWidget);
disconnect(listWidget, &QListWidget::currentRowChanged, this, &DialogTool::ValChenged);
listWidget->clear();
{
QListWidgetItem *item = new QListWidgetItem(data->HeightName());
item->setFont(QFont("Times", 12, QFont::Bold));
listWidget->addItem(item);
}
QListWidgetItem *item = new QListWidgetItem(data->SizeName());
item->setFont(QFont("Times", 12, QFont::Bold));
listWidget->addItem(item);
connect(listWidget, &QListWidget::currentRowChanged, this, &DialogTool::ValChenged);
listWidget->setCurrentRow (0);
2013-07-28 00:18:06 +02:00
}
void DialogTool::Measurements()
{
ShowVariable(data->DataMeasurements());
2013-07-28 00:18:06 +02:00
}
void DialogTool::LengthLines()
{
2013-08-06 09:56:09 +02:00
ShowVariable(data->DataLengthLines());
2013-07-28 00:18:06 +02:00
}
void DialogTool::LengthArcs()
{
ShowVariable(data->DataLengthArcs());
}
void DialogTool::LengthCurves()
{
ShowVariable(data->DataLengthSplines());
}
void DialogTool::Increments()
{
ShowVariable(data->DataIncrements());
2013-07-28 00:18:06 +02:00
}
void DialogTool::PutHere()
{
2013-08-06 09:56:09 +02:00
PutValHere(lineEditFormula, listWidget);
2013-07-28 00:18:06 +02:00
}
void DialogTool::PutVal(QListWidgetItem *item)
{
Q_CHECK_PTR(lineEditFormula);
Q_CHECK_PTR(item);
int pos = lineEditFormula->cursorPosition();
lineEditFormula->setText(lineEditFormula->text().insert(lineEditFormula->cursorPosition(),
item->text()));
lineEditFormula->setFocus();
lineEditFormula->setCursorPosition(pos + item->text().size());
2013-07-28 00:18:06 +02:00
}
void DialogTool::ValChenged(int row)
{
Q_CHECK_PTR(listWidget);
Q_CHECK_PTR(labelDescription);
Q_CHECK_PTR(radioButtonSizeGrowth);
Q_CHECK_PTR(radioButtonStandardTable);
Q_CHECK_PTR(radioButtonIncrements);
Q_CHECK_PTR(radioButtonLengthLine);
Q_CHECK_PTR(radioButtonLengthArc);
Q_CHECK_PTR(radioButtonLengthCurve);
if (listWidget->count() == 0)
{
2013-07-28 00:18:06 +02:00
return;
}
QListWidgetItem *item = listWidget->item( row );
if (radioButtonSizeGrowth->isChecked())
{
if (item->text()==data->HeightName())
{
QString desc = QString("%1(%2) - %3").arg(item->text()).arg(data->height()).arg(tr("Height"));
2013-07-28 00:18:06 +02:00
labelDescription->setText(desc);
}
if (item->text()==data->SizeName())
{
QString desc = QString("%1(%2) - %3").arg(item->text()).arg(data->size()).arg(tr("Size"));
2013-07-28 00:18:06 +02:00
labelDescription->setText(desc);
}
2013-08-06 09:56:09 +02:00
return;
2013-07-28 00:18:06 +02:00
}
if (radioButtonStandardTable->isChecked())
{
VMeasurement stable = data->GetMeasurement(item->text());
QString desc = QString("%1(%2) - %3").arg(item->text()).arg(data->GetValueStandardTableRow(item->text()))
2013-07-28 00:18:06 +02:00
.arg(stable.GetDescription());
labelDescription->setText(desc);
2013-08-06 09:56:09 +02:00
return;
2013-07-28 00:18:06 +02:00
}
if (radioButtonIncrements->isChecked())
{
VIncrement incr = data->GetIncrement(item->text());
2013-07-28 00:18:06 +02:00
QString desc = QString("%1(%2) - %3").arg(item->text()).arg(data->GetValueIncrementTableRow(item->text()))
.arg(incr.getDescription());
2013-07-28 00:18:06 +02:00
labelDescription->setText(desc);
2013-08-06 09:56:09 +02:00
return;
2013-07-28 00:18:06 +02:00
}
if (radioButtonLengthLine->isChecked())
{
2013-07-29 14:55:40 +02:00
QString desc = QString("%1(%2) - %3").arg(item->text()).arg(data->GetLine(item->text()))
.arg(tr("Line length"));
2013-07-29 14:55:40 +02:00
labelDescription->setText(desc);
2013-08-06 09:56:09 +02:00
return;
2013-07-29 14:55:40 +02:00
}
if (radioButtonLengthArc->isChecked())
{
QString desc = QString("%1(%2) - %3").arg(item->text()).arg(data->GetLengthArc(item->text()))
.arg(tr("Arc length"));
labelDescription->setText(desc);
return;
}
if (radioButtonLengthCurve->isChecked())
{
QString desc = QString("%1(%2) - %3").arg(item->text()).arg(data->GetLengthSpline(item->text()))
.arg(tr("Curve length"));
labelDescription->setText(desc);
return;
}
2013-07-28 00:18:06 +02:00
}
void DialogTool::UpdateList()
{
Q_CHECK_PTR(radioButtonSizeGrowth);
Q_CHECK_PTR(radioButtonStandardTable);
Q_CHECK_PTR(radioButtonIncrements);
Q_CHECK_PTR(radioButtonLengthLine);
Q_CHECK_PTR(radioButtonLengthArc);
Q_CHECK_PTR(radioButtonLengthCurve);
if (radioButtonSizeGrowth->isChecked())
{
SizeHeight();
2013-07-28 00:18:06 +02:00
}
if (radioButtonStandardTable->isChecked())
{
ShowVariable(data->DataMeasurements());
2013-07-28 00:18:06 +02:00
}
if (radioButtonIncrements->isChecked())
{
ShowVariable(data->DataIncrements());
2013-07-28 00:18:06 +02:00
}
if (radioButtonLengthLine->isChecked())
{
ShowVariable(data->DataLengthLines());
}
if (radioButtonLengthArc->isChecked())
{
ShowVariable(data->DataLengthArcs());
}
if (radioButtonLengthCurve->isChecked())
{
ShowVariable(data->DataLengthSplines());
}
2013-07-28 00:18:06 +02:00
}
2013-08-06 09:56:09 +02:00
2013-08-20 12:26:02 +02:00
template <class key, class val>
void DialogTool::ShowVariable(const QHash<key, val> *var)
{
Q_CHECK_PTR(listWidget);
2013-08-06 09:56:09 +02:00
disconnect(listWidget, &QListWidget::currentRowChanged, this, &DialogTool::ValChenged);
listWidget->clear();
QHashIterator<key, val> i(*var);
QMap<key, val> map;
while (i.hasNext())
{
2013-08-06 09:56:09 +02:00
i.next();
map.insert(i.key(), i.value());
}
QMapIterator<key, val> iMap(map);
while (iMap.hasNext())
{
iMap.next();
QListWidgetItem *item = new QListWidgetItem(iMap.key());
2013-08-06 09:56:09 +02:00
item->setFont(QFont("Times", 12, QFont::Bold));
listWidget->addItem(item);
}
connect(listWidget, &QListWidget::currentRowChanged, this, &DialogTool::ValChenged);
listWidget->setCurrentRow (0);
2013-08-06 09:56:09 +02:00
}