plasma-framework/widgets/lineedit.cpp
Aaron J. Seigo 879e215a43 * make DataSource emit the name of the source along with the data; this makes it possible widgets connected to multiple DataSources to have a chance of doing the right thing
* make DataEngine take a QObject in the connect, making DataVisualization somewhere superfluous. unless it ends up doing something useful soon, DataVisualization as a class will be going away.

svn path=/trunk/KDE/kdebase/workspace/plasma/lib/; revision=667167
2007-05-22 02:49:54 +00:00

71 lines
2.2 KiB
C++

/*
* Copyright (C) 2007 by Alexander Wiedenbruch <mail@wiedenbruch.de>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License version 2 as
* published by the Free Software Foundation
*
* 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"
#include <QStyleOptionFrameV2>
namespace Plasma
{
LineEdit::LineEdit(QGraphicsItem *parent, QGraphicsScene *scene)
: QGraphicsTextItem(parent, scene)
{
setTextInteractionFlags(Qt::TextEditorInteraction);
}
LineEdit::~LineEdit()
{
}
void LineEdit::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{
QStyleOptionFrameV2 panel;
panel.initFrom(widget);
panel.state = option->state;
panel.rect = boundingRect().toRect();
widget->style()->drawPrimitive(QStyle::PE_PanelLineEdit, &panel, painter, widget);
widget->style()->drawPrimitive(QStyle::PE_FrameLineEdit, &panel, painter, widget);
// QGraphicsTextItem paints a black frame when it has focus
// and is selected. We want to use our own frame, so we
// clear these flags.
QStyleOptionGraphicsItem *style = const_cast<QStyleOptionGraphicsItem*>(option);
style->state &= ~(QStyle::State_Selected | QStyle::State_HasFocus);
QGraphicsTextItem::paint(painter, style, widget);
}
void LineEdit::updated(const QString&, const DataEngine::Data& data)
{
DataEngine::DataIterator it(data);
//TODO: this only shows the first possible data item.
// should it do more?
while (it.hasNext()) {
it.next();
if (it.value().canConvert(QVariant::String)) {
setPlainText(it.value().toString());
return;
}
}
}
} // namespace Plasma