~librecad-dev/librecad/librecad

« back to all changes in this revision

Viewing changes to librecad/src/ui/forms/qg_lineangleoptions.cpp

  • Committer: Scott Howard
  • Date: 2014-02-21 19:07:55 UTC
  • Revision ID: showard@debian.org-20140221190755-csjax9wb146hgdq4
first commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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_lineangleoptions.h"
 
27
 
 
28
#include "rs_actioninterface.h"
 
29
#include "rs_actiondrawlineangle.h"
 
30
#include "rs_settings.h"
 
31
 
 
32
/*
 
33
 *  Constructs a QG_LineAngleOptions as a child of 'parent', with the
 
34
 *  name 'name' and widget flags set to 'f'.
 
35
 */
 
36
QG_LineAngleOptions::QG_LineAngleOptions(QWidget* parent, Qt::WindowFlags fl)
 
37
    : QWidget(parent, fl)
 
38
{
 
39
    setupUi(this);
 
40
 
 
41
}
 
42
 
 
43
/*
 
44
 *  Destroys the object and frees any allocated resources
 
45
 */
 
46
QG_LineAngleOptions::~QG_LineAngleOptions()
 
47
{
 
48
    destroy();
 
49
    // no need to delete child widgets, Qt does it all for us
 
50
}
 
51
 
 
52
/*
 
53
 *  Sets the strings of the subwidgets using the current
 
54
 *  language.
 
55
 */
 
56
void QG_LineAngleOptions::languageChange()
 
57
{
 
58
    retranslateUi(this);
 
59
}
 
60
 
 
61
void QG_LineAngleOptions::setAction(RS_ActionInterface* a, bool update) {
 
62
    if (a!=NULL && (
 
63
                a->rtti()==RS2::ActionDrawLineAngle
 
64
                ||a->rtti()==RS2::ActionDrawLineHorizontal
 
65
                ||a->rtti()==RS2::ActionDrawLineVertical
 
66
                )
 
67
    ){
 
68
        action = (RS_ActionDrawLineAngle*)a;
 
69
        m_bFixedAngle=action->hasFixedAngle();
 
70
        leLength->show();
 
71
        lLength->show();
 
72
        leAngle->setVisible(!action->hasFixedAngle());
 
73
        lAngle->setVisible(!action->hasFixedAngle());
 
74
 
 
75
        QString sa;
 
76
        QString sl;
 
77
        int sp;
 
78
 
 
79
        // settings from action:
 
80
        if (update) {
 
81
            if (action->hasFixedAngle()==false)
 
82
                sa = QString("%1").arg(RS_Math::rad2deg(action->getAngle()));
 
83
            sl = QString("%1").arg(action->getLength());
 
84
                        sp = action->getSnapPoint();
 
85
        } else {
 
86
        // settings from config file:
 
87
            RS_SETTINGS->beginGroup("/Draw");
 
88
            if (action->hasFixedAngle()==false) {
 
89
                sa = RS_SETTINGS->readEntry("/LineAngleAngle", "30.0");
 
90
            } else {
 
91
                sa = QString("%1").arg(action->getAngle());
 
92
            }
 
93
            sl = RS_SETTINGS->readEntry("/LineAngleLength", "10.0");
 
94
            sp = RS_SETTINGS->readNumEntry("/LineAngleSnapPoint", 0);
 
95
            RS_SETTINGS->endGroup();
 
96
                        action->setSnapPoint(sp);
 
97
        }
 
98
 
 
99
        leAngle->setText(sa);
 
100
        leLength->setText(sl);
 
101
                cbSnapPoint->setCurrentIndex(sp);
 
102
    } else {
 
103
        RS_DEBUG->print(RS_Debug::D_ERROR, 
 
104
                        "QG_LineAngleOptions::setAction: wrong action type");
 
105
        this->action = NULL;
 
106
    }
 
107
}
 
108
 
 
109
/** fixme, action could be deleted already, moved the saving into the action
 
110
  class
 
111
  need to implement in shared_ptr*/
 
112
void QG_LineAngleOptions::destroy() {
 
113
//    if (action!=NULL) {
 
114
//        RS_SETTINGS->beginGroup("/Draw");
 
115
//        if (!action->hasFixedAngle()) {
 
116
//            RS_SETTINGS->writeEntry("/LineAngleAngle", RS_Math::rad2deg(action->getAngle()));
 
117
//        }
 
118
//        RS_SETTINGS->writeEntry("/LineAngleLength", action->getLength());
 
119
//        RS_SETTINGS->writeEntry("/LineAngleSnapPoint", action->getSnapPoint());
 
120
//        RS_SETTINGS->endGroup();
 
121
//    }
 
122
}
 
123
 
 
124
void QG_LineAngleOptions::updateAngle(const QString& a) {
 
125
    if (action!=NULL && !action->hasFixedAngle()) {
 
126
        action->setAngle(RS_Math::deg2rad(RS_Math::eval(a)));
 
127
    }
 
128
}
 
129
 
 
130
void QG_LineAngleOptions::updateLength(const QString& l) {
 
131
    if (action!=NULL) {
 
132
        bool ok(false);
 
133
        double length=RS_Math::eval(l,&ok);
 
134
        if(ok) action->setLength(length);
 
135
    }
 
136
}
 
137
 
 
138
void QG_LineAngleOptions::updateSnapPoint(int sp) {
 
139
    if (action!=NULL) {
 
140
        action->setSnapPoint(sp);
 
141
    }
 
142
}