2008-11-04 00:08:39 +01: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"
|
|
|
|
|
2009-10-19 23:13:54 +02:00
|
|
|
#include <QGraphicsSceneResizeEvent>
|
2010-10-22 02:25:17 +02:00
|
|
|
#include <QIcon>
|
|
|
|
#include <QPainter>
|
2011-02-17 15:21:07 +01:00
|
|
|
#include <QGraphicsView>
|
2009-10-19 23:13:54 +02:00
|
|
|
|
2008-11-04 03:55:37 +01:00
|
|
|
#include <klineedit.h>
|
2008-11-04 00:08:39 +01:00
|
|
|
|
2010-05-19 23:45:08 +02:00
|
|
|
#include "applet.h"
|
2009-09-23 15:23:03 +02:00
|
|
|
#include "framesvg.h"
|
2012-07-16 21:35:17 +02:00
|
|
|
#include "graphicsview/private/style_p.h"
|
|
|
|
#include "graphicsview/private/focusindicator_p.h"
|
2010-10-22 02:25:17 +02:00
|
|
|
#include "private/themedwidgetinterface_p.h"
|
|
|
|
#include "theme.h"
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
2010-10-22 14:29:35 +02:00
|
|
|
class LineEditPrivate : public ThemedWidgetInterface<LineEdit>
|
2008-11-04 00:08:39 +01:00
|
|
|
{
|
|
|
|
public:
|
2010-10-22 14:29:35 +02:00
|
|
|
LineEditPrivate(LineEdit *lineEdit)
|
2010-10-22 18:55:46 +02:00
|
|
|
: ThemedWidgetInterface<LineEdit>(lineEdit)
|
2008-11-04 00:08:39 +01:00
|
|
|
{
|
2010-10-29 19:25:24 +02:00
|
|
|
buttonColorForText = true;
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
~LineEditPrivate()
|
|
|
|
{
|
|
|
|
}
|
2009-01-17 19:00:33 +01:00
|
|
|
|
|
|
|
LineEdit *q;
|
|
|
|
Plasma::Style::Ptr style;
|
2009-09-23 15:23:03 +02:00
|
|
|
Plasma::FrameSvg *background;
|
2008-11-04 00:08:39 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
LineEdit::LineEdit(QGraphicsWidget *parent)
|
|
|
|
: QGraphicsProxyWidget(parent),
|
2009-01-17 19:00:33 +01:00
|
|
|
d(new LineEditPrivate(this))
|
2008-11-04 00:08:39 +01:00
|
|
|
{
|
2009-09-19 05:27:56 +02:00
|
|
|
d->style = Plasma::Style::sharedStyle();
|
2009-09-23 15:23:03 +02:00
|
|
|
d->background = new Plasma::FrameSvg(this);
|
|
|
|
d->background->setImagePath("widgets/lineedit");
|
2009-09-23 19:25:53 +02:00
|
|
|
d->background->setCacheAllRenderedFrames(true);
|
2009-09-23 15:23:03 +02:00
|
|
|
|
2012-03-12 10:45:11 +01:00
|
|
|
#if 0 // causes bug 290111
|
2011-11-07 23:02:25 +01:00
|
|
|
FocusIndicator *indicator = new FocusIndicator(this, d->background);
|
|
|
|
if (d->background->hasElement("hint-focus-over-base")) {
|
|
|
|
indicator->setFlag(QGraphicsItem::ItemStacksBehindParent, false);
|
|
|
|
}
|
2012-03-12 10:45:11 +01:00
|
|
|
#endif
|
2010-05-06 22:48:10 +02:00
|
|
|
setNativeWidget(new KLineEdit);
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
LineEdit::~LineEdit()
|
|
|
|
{
|
|
|
|
delete d;
|
2009-01-17 19:00:33 +01:00
|
|
|
Plasma::Style::doneWithSharedStyle();
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::setText(const QString &text)
|
|
|
|
{
|
|
|
|
static_cast<KLineEdit*>(widget())->setText(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString LineEdit::text() const
|
|
|
|
{
|
|
|
|
return static_cast<KLineEdit*>(widget())->text();
|
|
|
|
}
|
|
|
|
|
2009-06-16 15:45:11 +02:00
|
|
|
void LineEdit::setClearButtonShown(bool show)
|
|
|
|
{
|
|
|
|
nativeWidget()->setClearButtonShown(show);
|
|
|
|
}
|
|
|
|
|
2009-06-16 19:49:27 +02:00
|
|
|
bool LineEdit::isClearButtonShown() const
|
2009-06-16 15:45:11 +02:00
|
|
|
{
|
|
|
|
return nativeWidget()->isClearButtonShown();
|
|
|
|
}
|
|
|
|
|
2012-04-28 20:57:38 +02:00
|
|
|
#ifndef KDE_NO_DEPRECATED
|
2010-05-24 13:45:46 +02:00
|
|
|
void LineEdit::setClickMessage(const QString &message)
|
|
|
|
{
|
2012-04-28 20:57:38 +02:00
|
|
|
setPlaceholderText(message);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void LineEdit::setPlaceholderText(const QString &message)
|
|
|
|
{
|
|
|
|
nativeWidget()->setPlaceholderText(message);
|
2010-05-24 13:45:46 +02:00
|
|
|
}
|
|
|
|
|
2012-04-28 20:57:38 +02:00
|
|
|
#ifndef KDE_NO_DEPRECATED
|
2010-05-24 13:45:46 +02:00
|
|
|
QString LineEdit::clickMessage() const
|
|
|
|
{
|
2012-04-28 20:57:38 +02:00
|
|
|
return placeholderText();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
QString LineEdit::placeholderText() const
|
|
|
|
{
|
|
|
|
return nativeWidget()->placeholderText();
|
2010-05-24 13:45:46 +02:00
|
|
|
}
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
void LineEdit::setStyleSheet(const QString &stylesheet)
|
|
|
|
{
|
|
|
|
widget()->setStyleSheet(stylesheet);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString LineEdit::styleSheet()
|
|
|
|
{
|
|
|
|
return widget()->styleSheet();
|
|
|
|
}
|
|
|
|
|
2009-09-23 20:42:19 +02:00
|
|
|
void LineEdit::setNativeWidget(KLineEdit *nativeWidget)
|
|
|
|
{
|
|
|
|
if (widget()) {
|
|
|
|
widget()->deleteLater();
|
|
|
|
}
|
|
|
|
|
|
|
|
connect(nativeWidget, SIGNAL(editingFinished()), this, SIGNAL(editingFinished()));
|
|
|
|
connect(nativeWidget, SIGNAL(returnPressed()), this, SIGNAL(returnPressed()));
|
2012-01-22 03:11:26 +01:00
|
|
|
connect(nativeWidget, SIGNAL(textEdited(QString)), this, SIGNAL(textEdited(QString)));
|
|
|
|
connect(nativeWidget, SIGNAL(textChanged(QString)), this, SIGNAL(textChanged(QString)));
|
2009-09-23 20:42:19 +02:00
|
|
|
|
|
|
|
|
2010-05-06 22:48:10 +02:00
|
|
|
nativeWidget->setWindowFlags(nativeWidget->windowFlags()|Qt::BypassGraphicsProxyWidget);
|
2011-12-04 14:00:02 +01:00
|
|
|
d->setWidget(nativeWidget);
|
2010-07-13 23:32:07 +02:00
|
|
|
nativeWidget->setWindowIcon(QIcon());
|
2009-09-23 20:42:19 +02:00
|
|
|
|
|
|
|
nativeWidget->setAttribute(Qt::WA_NoSystemBackground);
|
|
|
|
nativeWidget->setStyle(d->style.data());
|
2010-10-22 02:25:17 +02:00
|
|
|
d->initTheming();
|
2009-09-23 20:42:19 +02:00
|
|
|
}
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
KLineEdit *LineEdit::nativeWidget() const
|
|
|
|
{
|
|
|
|
return static_cast<KLineEdit*>(widget());
|
|
|
|
}
|
|
|
|
|
2009-09-23 15:23:03 +02:00
|
|
|
void LineEdit::hoverEnterEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
{
|
|
|
|
Q_UNUSED(event)
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
{
|
|
|
|
Q_UNUSED(event)
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
|
|
|
|
{
|
|
|
|
Q_UNUSED(option)
|
|
|
|
Q_UNUSED(widget)
|
|
|
|
|
|
|
|
nativeWidget()->render(painter, QPoint(0, 0), QRegion(), QWidget::DrawChildren|QWidget::IgnoreMask);
|
|
|
|
}
|
|
|
|
|
2009-09-13 21:18:29 +02:00
|
|
|
void LineEdit::changeEvent(QEvent *event)
|
|
|
|
{
|
2010-10-22 14:29:35 +02:00
|
|
|
d->changeEvent(event);
|
2009-09-13 21:18:29 +02:00
|
|
|
QGraphicsProxyWidget::changeEvent(event);
|
|
|
|
}
|
|
|
|
|
2010-05-19 23:45:08 +02:00
|
|
|
void LineEdit::mousePressEvent(QGraphicsSceneMouseEvent *event)
|
|
|
|
{
|
|
|
|
QGraphicsWidget *widget = parentWidget();
|
|
|
|
Plasma::Applet *applet = qobject_cast<Plasma::Applet *>(widget);
|
|
|
|
|
|
|
|
while (!applet && widget) {
|
|
|
|
widget = widget->parentWidget();
|
|
|
|
applet = qobject_cast<Plasma::Applet *>(widget);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (applet) {
|
|
|
|
applet->setStatus(Plasma::AcceptingInputStatus);
|
|
|
|
}
|
|
|
|
QGraphicsProxyWidget::mousePressEvent(event);
|
|
|
|
}
|
|
|
|
|
2010-09-14 19:33:26 +02:00
|
|
|
void LineEdit::focusInEvent(QFocusEvent *event)
|
|
|
|
{
|
|
|
|
QGraphicsProxyWidget::focusInEvent(event);
|
|
|
|
if (!nativeWidget()->hasFocus()) {
|
|
|
|
// as of Qt 4.7, apparently we have a bug here in QGraphicsProxyWidget
|
2010-09-14 19:41:10 +02:00
|
|
|
nativeWidget()->setFocus(event->reason());
|
2010-09-14 19:33:26 +02:00
|
|
|
}
|
2011-08-29 21:09:08 +02:00
|
|
|
|
|
|
|
emit focusChanged(true);
|
2010-09-14 19:33:26 +02:00
|
|
|
}
|
|
|
|
|
2010-05-19 23:45:08 +02:00
|
|
|
void LineEdit::focusOutEvent(QFocusEvent *event)
|
|
|
|
{
|
|
|
|
QGraphicsWidget *widget = parentWidget();
|
|
|
|
Plasma::Applet *applet = qobject_cast<Plasma::Applet *>(widget);
|
|
|
|
|
|
|
|
while (!applet && widget) {
|
|
|
|
widget = widget->parentWidget();
|
|
|
|
applet = qobject_cast<Plasma::Applet *>(widget);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (applet) {
|
|
|
|
applet->setStatus(Plasma::UnknownStatus);
|
|
|
|
}
|
2011-02-17 15:21:07 +01:00
|
|
|
|
|
|
|
QEvent closeEvent(QEvent::CloseSoftwareInputPanel);
|
|
|
|
if (qApp) {
|
|
|
|
if (QGraphicsView *view = qobject_cast<QGraphicsView*>(qApp->focusWidget())) {
|
|
|
|
if (view->scene() && view->scene() == scene()) {
|
|
|
|
QApplication::sendEvent(view, &closeEvent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-19 23:45:08 +02:00
|
|
|
QGraphicsProxyWidget::focusOutEvent(event);
|
2011-08-29 21:09:08 +02:00
|
|
|
|
|
|
|
emit focusChanged(false);
|
2010-05-19 23:45:08 +02:00
|
|
|
}
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
} // namespace Plasma
|
|
|
|
|
|
|
|
|
2012-02-08 23:33:03 +01:00
|
|
|
|
|
|
|
|
|
|
|
#include "moc_lineedit.cpp"
|