]> Shamusworld >> Repos - architektonas/blob - src/forms/dlgpoint.cpp
bb276ff8f5a0100ebf29f0c937accc05df32bb0b
[architektonas] / src / forms / dlgpoint.cpp
1 // dlgpoint.cpp
2 //
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
9 //
10 // JLH = James L. Hammons <jlhamm@acm.org>
11 //
12 // Who  When        What
13 // ---  ----------  -----------------------------------------------------------
14 // JLH  06/12/2010  Created this file. :-)
15 //
16
17 #include "dlgpoint.h"
18
19 #include "point.h"
20 #include "drawing.h"
21 #include "math.h"
22
23 DlgPoint::DlgPoint(QWidget * parent/*= NULL*/, Qt::WindowFlags flags/*= 0*/):
24         QDialog(parent, flags)
25 {
26         ui.setupUi(this);
27 }
28
29 DlgPoint::~DlgPoint()
30 {
31 }
32
33 void DlgPoint::setPoint(Point & p)
34 {
35         point = &p;
36
37         ui.wPen->setPen(point->getPen(false), true, false, "Pen");
38         Drawing * graphic = point->getGraphic();
39
40         if (graphic)
41                 ui.cbLayer->init(*(graphic->getLayerList()), false, false);
42
43         Layer * lay = point->getLayer(false);
44
45         if (lay)
46                 ui.cbLayer->setLayer(*lay);
47
48         QString s;
49         s.setNum(point->getPos().x);
50         ui.lePosX->setText(s);
51         s.setNum(point->getPos().y);
52         ui.lePosY->setText(s);
53 }
54
55 void DlgPoint::updatePoint()
56 {
57         point->setPos(Vector(Math::eval(ui.lePosX->text()),
58                 Math::eval(ui.lePosY->text())));
59         point->setPen(ui.wPen->getPen());
60         point->setLayer(ui.cbLayer->currentText());
61 }