1 // linebisectoroptions.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 "linebisectoroptions.h"
19 #include "actiondrawlinebisector.h"
23 LineBisectorOptions::LineBisectorOptions(QToolBar * parent/*= 0*/, Qt::WindowFlags flags/*= 0*/):
24 QWidget(parent, flags),
25 lLength(new QLabel(tr("Length:"))),
26 leLength(new QLineEdit(this)),
27 lNumber(new QLabel(tr("Number:"))),
28 sbNumber(new QSpinBox(this))
30 QHBoxLayout * layout = new QHBoxLayout(this);
31 layout->setContentsMargins(0, 0, 0, 0);
33 leLength->setSizePolicy(QSizePolicy(QSizePolicy::Minimum, QSizePolicy::Ignored));
35 layout->addWidget(lLength);
36 layout->addWidget(leLength);
37 layout->addWidget(lNumber);
38 layout->addWidget(sbNumber);
40 connect(leLength, SIGNAL(textChanged(QString)), this, SLOT(updateLength(QString)));
41 connect(sbNumber, SIGNAL(valueChanged(int)), this, SLOT(updateNumber(int)));
43 // We need to add the widget (this thing) to the toolbar passed in. Otherwise,
44 // nothing will show up on the screen. :-)
46 parent->addWidget(this);
49 LineBisectorOptions::~LineBisectorOptions()
51 settings.beginGroup("Draw");
52 settings.setValue("LineBisectorLength", leLength->text());
53 settings.setValue("LineBisectorNumber", sbNumber->text());
57 void LineBisectorOptions::setAction(ActionInterface * a, bool update)
59 if (a != NULL && a->rtti() == RS2::ActionDrawLineBisector)
61 action = (ActionDrawLineBisector *)a;
68 sl = QString("%1").arg(action->getLength());
69 sn = QString("%1").arg(action->getNumber());
73 settings.beginGroup("Draw");
74 sl = settings.value("LineBisectorLength", "1.0").toString();
75 sn = settings.value("LineBisectorNumber", "1").toString();
79 leLength->setText(sl);
80 sbNumber->setValue(sn.toInt());
84 DEBUG->print(Debug::D_ERROR, "LineBisectorOptions::setAction: wrong action type");
89 void LineBisectorOptions::updateLength(const QString & l)
92 action->setLength(Math::eval(l));
95 void LineBisectorOptions::updateNumber(int n)