95 lines
2.0 KiB
C++
95 lines
2.0 KiB
C++
|
/*
|
||
|
* 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>
|
||
|
|