PDA

View Full Version : Inverted QTextEdit



TMan
31st July 2009, 14:45
Hi all,

I've taken an example from Qt labs (http://labs.trolltech.com/blogs/2009/06/09/night-mode-in-qwebview/), trying to apply this to a QTextEdit.

Ultimately, this should give me a QTextEdit with all colors reversed, which I find easier on the eyes :)

Anyway, problem with this code is that after changing the setting (press F3), it should repaint the entire widget, but I can not get it to do so. I've tried both update() and repaint().

Any help would be appreciated!



/************************************************** **************************
**
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
** Contact: Qt Software Information (qt-info@nokia.com)
**
** This file is part of the Graphics Dojo project on Qt Labs.
**
** This file may be used under the terms of the GNU General Public
** License version 2.0 or 3.0 as published by the Free Software Foundation
** and appearing in the file LICENSE.GPL included in the packaging of
** this file. Please review the following information to ensure GNU
** General Public Licensing requirements will be met:
** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
** http://www.gnu.org/copyleft/gpl.html.
**
** If you are unsure which license is appropriate for your use, please
** contact the sales department at qt-sales@nokia.com.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
************************************************** **************************/

#include <QtCore>
#include <QtGui>

#if QT_VERSION < 0x0040500
#error You need Qt 4.5 or newer
#endif

class NightModeView : public QTextEdit
{
Q_OBJECT

public:

NightModeView(QWidget *parent = 0): QTextEdit(parent), invert(true) {
connect(this, SIGNAL(titleChanged(const QString&)), SLOT(setWindowTitle(const QString&)));
}

private:

bool invert;

void paintEvent(QPaintEvent *event) {
QTextEdit::paintEvent(event);
if (invert) {
QPainter p(viewport());
p.setCompositionMode(QPainter::CompositionMode_Dif ference);
p.fillRect(rect(), Qt::white);
p.end();
}
}

void keyPressEvent(QKeyEvent *event) {
if (event->key() == Qt::Key_F3) {
invert = !invert;
update();
event->accept();
return;
}
QTextEdit::keyPressEvent(event);
}

};

#include "webnightmode.moc"

int main(int argc, char **argv)
{
#ifdef Q_WS_X11
QApplication::setGraphicsSystem("raster");
#endif

QApplication app(argc, argv);

NightModeView w;
w.show();

QMessageBox::information(&w, "Hint", "Use F3 to toggle night mode");

return app.exec();
}

TMan
31st July 2009, 15:43
If its any help, if I replace the

update();

in the code above with

hide ();
show ();


it does repaint the entire widget! However, that's obviously a dirty hack and not what I want.

shentian
31st July 2009, 16:35
QTextEdit is a QAbstractScrollArea. A ScrollArea delegates the painting of the content to its viewport. So use:


viewport()->update();