1
/*******************************************************************
3
Part of the Fritzing project - http://fritzing.org
4
Copyright (c) 2007-2010 Fachhochschule Potsdam - http://fh-potsdam.de
6
Fritzing is free software: you can redistribute it and/or modify
7
it under the terms of the GNU General Public License as published by
8
the Free Software Foundation, either version 3 of the License, or
9
(at your option) any later version.
11
Fritzing is distributed in the hope that it will be useful,
12
but WITHOUT ANY WARRANTY; without even the implied warranty of
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
GNU General Public License for more details.
16
You should have received a copy of the GNU General Public License
17
along with Fritzing. If not, see <http://www.gnu.org/licenses/>.
19
********************************************************************
22
$Author: cohen@irascible.com $:
23
$Date: 2012-09-14 23:34:09 +0200 (Fri, 14 Sep 2012) $
25
********************************************************************/
29
#include "editablelinewidget.h"
30
#include "../utils/misc.h"
32
EditableLineWidget::EditableLineWidget(QString text, WaitPushUndoStack *undoStack, QWidget *parent, QString title, bool edited, bool noSpacing)
33
: AbstractEditableLabelWidget(text, undoStack, parent, title, edited, noSpacing) {
34
m_lineEdit = new QLineEdit(this);
38
void EditableLineWidget::setValidator(const QValidator * v ) {
39
m_lineEdit->setValidator(v);
42
void EditableLineWidget::setText(const QString &text) {
43
m_lineEdit->setText(text);
44
m_label->setText(text);
46
QString EditableLineWidget::editionText() {
47
return m_lineEdit->text();
49
void EditableLineWidget::setEditionText(QString text) {
50
m_lineEdit->setText(text);
52
QWidget* EditableLineWidget::myEditionWidget() {
56
void EditableLineWidget::setEmptyTextToEdit() {
57
m_lineEdit->setText("");