add textedit

svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=809903
This commit is contained in:
Chani Armitage 2008-05-19 18:17:12 +00:00
parent fb80125034
commit ec2bcd9010
4 changed files with 187 additions and 4 deletions

View File

@ -47,6 +47,10 @@ set(plasma_LIB_SRCS
querymatch.cpp
runnercontext.cpp
runnermanager.cpp
scripting/appletscript.cpp
scripting/dataenginescript.cpp
scripting/runnerscript.cpp
scripting/scriptengine.cpp
service.cpp
servicejob.cpp
shadowitem.cpp
@ -55,10 +59,6 @@ set(plasma_LIB_SRCS
toolbox.cpp
uiloader.cpp
view.cpp
scripting/appletscript.cpp
scripting/dataenginescript.cpp
scripting/runnerscript.cpp
scripting/scriptengine.cpp
widgets/checkbox.cpp
widgets/flash.cpp
widgets/icon.cpp
@ -68,6 +68,7 @@ set(plasma_LIB_SRCS
widgets/pushbutton.cpp
widgets/radiobutton.cpp
widgets/signalplotter.cpp
widgets/textedit.cpp
widgets/webcontent.cpp
)
@ -154,6 +155,7 @@ install(FILES
widgets/pushbutton.h
widgets/radiobutton.h
widgets/signalplotter.h
widgets/textedit.h
widgets/webcontent.h
DESTINATION ${INCLUDE_INSTALL_DIR}/plasma/widgets)

1
includes/TextEdit Normal file
View File

@ -0,0 +1 @@
#include "../../plasma/textedit.h"

94
widgets/textedit.cpp Normal file
View File

@ -0,0 +1,94 @@
/*
* 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 "textedit.h"
#include <QTextEdit>
#include <QPainter>
#include <KMimeType>
#include "theme.h"
#include "svg.h"
namespace Plasma
{
class TextEdit::Private
{
public:
Private()
{
}
~Private()
{
}
};
TextEdit::TextEdit(QGraphicsWidget *parent)
: QGraphicsProxyWidget(parent),
d(new Private)
{
QTextEdit* native = new QTextEdit;
connect(native, SIGNAL(textChanged()), this, SIGNAL(textChanged()));
setWidget(native);
native->setAttribute(Qt::WA_NoSystemBackground);
}
TextEdit::~TextEdit()
{
delete d;
}
void TextEdit::setText(const QString &text)
{
//FIXME I'm not certain about using only the html methods. look at this again later.
static_cast<QTextEdit*>(widget())->setHtml(text);
}
QString TextEdit::text() const
{
return static_cast<QTextEdit*>(widget())->toHtml();
}
void TextEdit::setStylesheet(const QString &stylesheet)
{
widget()->setStyleSheet(stylesheet);
}
QString TextEdit::stylesheet()
{
return widget()->styleSheet();
}
QTextEdit* TextEdit::nativeWidget() const
{
return static_cast<QTextEdit*>(widget());
}
void TextEdit::resizeEvent(QGraphicsSceneResizeEvent *event)
{
QGraphicsProxyWidget::resizeEvent(event);
}
} // namespace Plasma
#include <textedit.moc>

86
widgets/textedit.h Normal file
View File

@ -0,0 +1,86 @@
/*
* 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.
*/
#ifndef PLASMA__H
#define PLASMA__H
#include <QGraphicsProxyWidget>
class QTextEdit;
namespace Plasma
{
class TextEdit : public QGraphicsProxyWidget
{
Q_OBJECT
Q_PROPERTY(QGraphicsWidget* parentWidget READ parentWidget)
Q_PROPERTY(QString text READ text WRITE setText)
Q_PROPERTY(QString stylesheet READ stylesheet WRITE setStylesheet)
Q_PROPERTY(QTextEdit* nativeWidget READ nativeWidget)
public:
explicit TextEdit(QGraphicsWidget *parent = 0);
~TextEdit();
/**
* Sets the display text for this TextEdit
*
* @arg text the text to display; should be translated.
*/
void setText(const QString &text);
/**
* @return the display text
*/
QString text() const;
/**
* Sets the style sheet used to control the visual display of this TextEdit
*
* @arg stylehseet a CSS string
*/
void setStylesheet(const QString &stylesheet);
/**
* @return the stylesheet currently used with this widget
*/
QString stylesheet();
/**
* @return the native widget wrapped by this TextEdit
*/
QTextEdit* nativeWidget() const;
Q_SIGNALS:
void textChanged();
protected:
void resizeEvent(QGraphicsSceneResizeEvent *event);
private:
class Private;
Private * const d;
};
} // namespace Plasma
#endif // multiple inclusion guard