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 "snapdistoptions.h"
19 #include "mathextra.h"
22 SnapDistOptions::SnapDistOptions(QToolBar * parent/*= 0*/, Qt::WindowFlags flags/*= 0*/):
23 QWidget(parent, flags),
24 lDist(new QLabel(tr("Distance:"))),
25 leDist(new QLineEdit(this))
27 QHBoxLayout * layout = new QHBoxLayout(this);
28 layout->setContentsMargins(0, 0, 0, 0);
30 leDist->setSizePolicy(QSizePolicy(QSizePolicy::Minimum, QSizePolicy::Ignored));
32 layout->addWidget(lDist);
33 layout->addWidget(leDist);
35 connect(leDist, SIGNAL(textChanged(QString)), this, SLOT(updateDist(QString)));
37 // We need to add the widget (this thing) to the toolbar passed in. Otherwise,
38 // nothing will show up on the screen. :-)
40 parent->addWidget(this);
43 SnapDistOptions::~SnapDistOptions()
45 settings.beginGroup("Snap");
46 settings.setValue("Distance", leDist->text());
50 void SnapDistOptions::setDist(double * d)
54 settings.beginGroup("Snap");
55 QString r = settings.value("Distance", "1.0").toString();
61 void SnapDistOptions::updateDist(const QString & d)
64 *dist = Math::eval(d, 1.0);