1 /****************************************************************************
2 **
3 ** This file is part of the LibreCAD project, a 2D CAD program
4 **
5 ** Copyright (C) 2010 R. van Twisk (librecad@rvt.dds.nl)
6 ** Copyright (C) 2001-2003 RibbonSoft. All rights reserved.
7 **
8 **
9 ** This file may be distributed and/or modified under the terms of the
10 ** GNU General Public License version 2 as published by the Free Software
11 ** Foundation and appearing in the file gpl-2.0.txt included in the
12 ** packaging of this file.
13 **
14 ** This program is distributed in the hope that it will be useful,
15 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ** GNU General Public License for more details.
18 **
19 ** You should have received a copy of the GNU General Public License
20 ** along with this program; if not, write to the Free Software
21 ** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
22 **
23 ** This copyright notice MUST APPEAR in all copies of the script!
24 **
25 **********************************************************************/
26 #include "qg_dlgpoint.h"
27 
28 #include "rs_point.h"
29 #include "rs_graphic.h"
30 #include "rs_math.h"
31 
32 /*
33  *  Constructs a QG_DlgPoint as a child of 'parent', with the
34  *  name 'name' and widget flags set to 'f'.
35  *
36  *  The dialog will by default be modeless, unless you set 'modal' to
37  *  true to construct a modal dialog.
38  */
QG_DlgPoint(QWidget * parent,bool modal,Qt::WindowFlags fl)39 QG_DlgPoint::QG_DlgPoint(QWidget* parent, bool modal, Qt::WindowFlags fl)
40     : QDialog(parent, fl)
41 {
42     setModal(modal);
43     setupUi(this);
44 
45 }
46 
47 /*
48  *  Destroys the object and frees any allocated resources
49  */
~QG_DlgPoint()50 QG_DlgPoint::~QG_DlgPoint()
51 {
52     // no need to delete child widgets, Qt does it all for us
53 }
54 
55 /*
56  *  Sets the strings of the subwidgets using the current
57  *  language.
58  */
languageChange()59 void QG_DlgPoint::languageChange()
60 {
61     retranslateUi(this);
62 }
63 
setPoint(RS_Point & p)64 void QG_DlgPoint::setPoint(RS_Point& p) {
65     point = &p;
66 
67     wPen->setPen(point->getPen(false), true, false, "Pen");
68     RS_Graphic* graphic = point->getGraphic();
69     if (graphic) {
70         cbLayer->init(*(graphic->getLayerList()), false, false);
71     }
72     RS_Layer* lay = point->getLayer(false);
73     if (lay) {
74         cbLayer->setLayer(*lay);
75     }
76 
77     QString s;
78     s.setNum(point->getPos().x);
79     lePosX->setText(s);
80     s.setNum(point->getPos().y);
81     lePosY->setText(s);
82 }
83 
updatePoint()84 void QG_DlgPoint::updatePoint() {
85     point->setPos(RS_Vector(RS_Math::eval(lePosX->text()),
86                             RS_Math::eval(lePosY->text())));
87     point->setPen(wPen->getPen());
88     point->setLayer(cbLayer->currentText());
89 }
90 
91