1 // trimamountoptions.cpp
3 // Part of the Architektonas Project
4 // Originally part of QCad Community Edition by Andrew Mustun
5 // Extensively rewritten and refactored by James L. Hammons
6 // Portions copyright (C) 2001-2003 RibbonSoft
7 // Copyright (C) 2010 Underground Software
8 // See the README and GPLv2 files for licensing and warranty information
10 // JLH = James L. Hammons <jlhamm@acm.org>
13 // --- ---------- -----------------------------------------------------------
14 // JLH 06/10/2010 Created this file. :-)
17 #include "trimamountoptions.h"
19 #include "actionmodifytrimamount.h"
20 #include "actioninterface.h"
22 #include "mathextra.h"
25 TrimAmountOptions::TrimAmountOptions(QToolBar * parent/*= 0*/, Qt::WindowFlags flags/*= 0*/):
26 QWidget(parent, flags),
27 lDist(new QLabel(tr("Amount:"))),
28 leDist(new QLineEdit(this))
30 QHBoxLayout * layout = new QHBoxLayout(this);
31 layout->setContentsMargins(0, 0, 0, 0);
33 leDist->setSizePolicy(QSizePolicy(QSizePolicy::Minimum, QSizePolicy::Ignored));
35 layout->addWidget(lDist);
36 layout->addWidget(leDist);
38 connect(leDist, SIGNAL(textChanged(QString)), this, SLOT(updateDist(QString)));
40 // We need to add the widget (this thing) to the toolbar passed in. Otherwise,
41 // nothing will show up on the screen. :-)
43 parent->addWidget(this);
46 TrimAmountOptions::~TrimAmountOptions()
48 settings.beginGroup("Modify");
49 settings.setValue("TrimAmount", leDist->text());
53 void TrimAmountOptions::setAction(ActionInterface * a, bool update)
55 if (a != NULL && a->rtti() == RS2::ActionModifyTrimAmount)
57 action = (ActionModifyTrimAmount *)a;
61 // settings from action:
63 sd = QString("%1").arg(action->getDistance());
64 // settings from config file:
67 settings.beginGroup("Modify");
68 sd = settings.value("TrimAmount", "1.0").toString();
76 DEBUG->print(Debug::D_ERROR, "ModifyTrimAmountOptions::setAction: wrong action type");
81 void TrimAmountOptions::updateDist(const QString & d)
84 action->setDistance(Math::eval(d, 1.0));