2008-05-19 03:24:12 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2008 Aaron Seigo <aseigo@kde.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Library General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this program; if not, write to the
|
|
|
|
* Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "lineedit.h"
|
|
|
|
|
2008-06-17 01:53:05 +02:00
|
|
|
#include <KLineEdit>
|
2008-05-19 03:24:12 +02:00
|
|
|
#include <QPainter>
|
|
|
|
|
|
|
|
#include <KMimeType>
|
|
|
|
|
|
|
|
#include "theme.h"
|
|
|
|
#include "svg.h"
|
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
2008-07-01 20:56:43 +02:00
|
|
|
class LineEditPrivate
|
2008-05-19 03:24:12 +02:00
|
|
|
{
|
|
|
|
public:
|
2008-07-01 20:56:43 +02:00
|
|
|
LineEditPrivate()
|
2008-05-19 03:24:12 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-07-01 20:56:43 +02:00
|
|
|
~LineEditPrivate()
|
2008-05-19 03:24:12 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
LineEdit::LineEdit(QGraphicsWidget *parent)
|
|
|
|
: QGraphicsProxyWidget(parent),
|
2008-07-01 20:56:43 +02:00
|
|
|
d(new LineEditPrivate)
|
2008-05-19 03:24:12 +02:00
|
|
|
{
|
2008-06-17 01:53:05 +02:00
|
|
|
KLineEdit* native = new KLineEdit;
|
2008-05-19 07:42:44 +02:00
|
|
|
connect(native, SIGNAL(editingFinished()), this, SIGNAL(editingFinished()));
|
|
|
|
connect(native, SIGNAL(returnPressed()), this, SIGNAL(returnPressed()));
|
|
|
|
connect(native, SIGNAL(textEdited(const QString&)), this, SIGNAL(textEdited(const QString&)));
|
2008-05-19 03:24:12 +02:00
|
|
|
setWidget(native);
|
|
|
|
native->setAttribute(Qt::WA_NoSystemBackground);
|
|
|
|
}
|
|
|
|
|
|
|
|
LineEdit::~LineEdit()
|
|
|
|
{
|
|
|
|
delete d;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::setText(const QString &text)
|
|
|
|
{
|
2008-06-17 01:53:05 +02:00
|
|
|
static_cast<KLineEdit*>(widget())->setText(text);
|
2008-05-19 03:24:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QString LineEdit::text() const
|
|
|
|
{
|
2008-06-17 01:53:05 +02:00
|
|
|
return static_cast<KLineEdit*>(widget())->text();
|
2008-05-19 03:24:12 +02:00
|
|
|
}
|
|
|
|
|
2008-07-16 22:07:34 +02:00
|
|
|
void LineEdit::setStyleSheet(const QString &stylesheet)
|
2008-05-19 03:24:12 +02:00
|
|
|
{
|
|
|
|
widget()->setStyleSheet(stylesheet);
|
|
|
|
}
|
|
|
|
|
2008-07-16 22:07:34 +02:00
|
|
|
QString LineEdit::styleSheet()
|
2008-05-19 03:24:12 +02:00
|
|
|
{
|
|
|
|
return widget()->styleSheet();
|
|
|
|
}
|
|
|
|
|
2008-06-17 01:53:05 +02:00
|
|
|
KLineEdit* LineEdit::nativeWidget() const
|
2008-05-19 03:24:12 +02:00
|
|
|
{
|
2008-06-17 01:53:05 +02:00
|
|
|
return static_cast<KLineEdit*>(widget());
|
2008-05-19 03:24:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Plasma
|
|
|
|
|
|
|
|
#include <lineedit.moc>
|
|
|
|
|