1 // moverotateoptions.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/09/2010 Created this file. :-)
17 #include "moverotateoptions.h"
19 #include "actionmodifymoverotate.h"
23 MoveRotateOptions::MoveRotateOptions(QToolBar * parent/*= 0*/, Qt::WindowFlags flags/*= 0*/):
24 QWidget(parent, flags),
25 lAngle(new QLabel(tr("Angle:"))),
26 leAngle(new QLineEdit(this))
28 QHBoxLayout * layout = new QHBoxLayout(this);
29 layout->setContentsMargins(0, 0, 0, 0);
31 leAngle->setSizePolicy(QSizePolicy(QSizePolicy::Minimum, QSizePolicy::Ignored));
33 layout->addWidget(lAngle);
34 layout->addWidget(leAngle);
36 connect(leAngle, SIGNAL(textChanged(QString)), this, SLOT(updateAngle(QString)));
38 // We need to add the widget (this thing) to the toolbar passed in. Otherwise,
39 // nothing will show up on the screen. :-)
41 parent->addWidget(this);
44 MoveRotateOptions::~MoveRotateOptions()
46 settings.beginGroup("Modify");
47 settings.setValue("MoveRotate", leAngle->text());
51 void MoveRotateOptions::setAction(ActionInterface * a, bool update)
53 if (a != NULL && a->rtti() == RS2::ActionModifyMoveRotate)
55 action = (ActionModifyMoveRotate *)a;
60 sa = QString("%1").arg(Math::rad2deg(action->getAngle()));
63 settings.beginGroup("Modify");
64 sa = settings.value("MoveRotate", "30").toString();
66 action->setAngle(Math::deg2rad(sa.toDouble()));
73 DEBUG->print(Debug::D_ERROR, "CircleOptions::setAction: wrong action type");
78 void MoveRotateOptions::updateAngle(const QString & a)
81 action->setAngle(Math::deg2rad(Math::eval(a)));