~librecad-dev/librecad/librecad

« back to all changes in this revision

Viewing changes to librecad/src/ui/forms/qg_layerdialog.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_layerdialog.h"
 
27
 
 
28
#include <qmessagebox.h>
 
29
#include "rs_layer.h"
 
30
#include "rs_layerlist.h"
 
31
 
 
32
/*
 
33
 *  Constructs a QG_LayerDialog 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
 */
 
39
QG_LayerDialog::QG_LayerDialog(QWidget* parent, QString name, bool modal, Qt::WindowFlags fl)
 
40
    : QDialog(parent, fl)
 
41
{
 
42
    setModal(modal);
 
43
    setObjectName(name);
 
44
    setupUi(this);
 
45
 
 
46
 
 
47
    init();
 
48
}
 
49
 
 
50
/*
 
51
 *  Destroys the object and frees any allocated resources
 
52
 */
 
53
QG_LayerDialog::~QG_LayerDialog()
 
54
{
 
55
    // no need to delete child widgets, Qt does it all for us
 
56
}
 
57
 
 
58
/*
 
59
 *  Sets the strings of the subwidgets using the current
 
60
 *  language.
 
61
 */
 
62
void QG_LayerDialog::languageChange()
 
63
{
 
64
    retranslateUi(this);
 
65
}
 
66
 
 
67
void QG_LayerDialog::setLayer(RS_Layer* l) {
 
68
    layer = l;  
 
69
        layerName = layer->getName();
 
70
    leName->setText(layerName);
 
71
    wPen->setPen(layer->getPen(), false, false, tr("Default Pen"));
 
72
    cbHelpLayer->setChecked(l->isHelpLayer());
 
73
 
 
74
    if (layer->getName()=="0") {
 
75
        leName->setEnabled(false);
 
76
    }
 
77
}
 
78
 
 
79
void QG_LayerDialog::updateLayer() {
 
80
    layer->setName(leName->text());
 
81
    layer->setPen(wPen->getPen());
 
82
    layer->setHelpLayer(cbHelpLayer->isChecked());
 
83
}
 
84
 
 
85
void QG_LayerDialog::validate() {
 
86
        if (layerList != NULL && 
 
87
                (editLayer == false || layerName != leName->text())) {
 
88
                RS_Layer* l = layerList->find(leName->text());
 
89
                if (l != NULL) {
 
90
                        QMessageBox::information(parentWidget(),
 
91
                                                                         QMessageBox::tr("Layer Properties"),
 
92
                                                                         QMessageBox::tr("Layer with a name \"%1\" "
 
93
                                                                                                         "already exists. Please specify "
 
94
                                                                                                         "a different name.")
 
95
                                                                         .arg(leName->text()),
 
96
                                                                         QMessageBox::Ok);
 
97
                        leName->setFocus();
 
98
                        leName->selectAll();
 
99
                }
 
100
                else
 
101
                        accept();
 
102
        }
 
103
        else    
 
104
                accept();
 
105
}
 
106
 
 
107
void QG_LayerDialog::setLayerList( RS_LayerList * ll ){
 
108
    layerList = ll;
 
109
}
 
110
 
 
111
void QG_LayerDialog::init(){
 
112
        layer = NULL;
 
113
        layerList = NULL;
 
114
        layerName = "";
 
115
        editLayer = false;
 
116
}
 
117
 
 
118
void QG_LayerDialog::setEditLayer( bool el ){
 
119
        editLayer = el;
 
120
}
 
121
 
 
122
 
 
123
//! @return a reference to the QLineEdit object.
 
124
QLineEdit* QG_LayerDialog::getQLineEdit () {
 
125
        return leName;
 
126
}