1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
/*
* Cantata
*
* Copyright (c) 2011-2022 Craig Drummond <craig.p.drummond@gmail.com>
*
* ----
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, 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 General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "textbrowser.h"
#include <QEvent>
#include <QFile>
#include <QImage>
#include <QScrollBar>
#include <QStyle>
#include <QTimer>
TextBrowser::TextBrowser(QWidget* p)
: QTextBrowser(p), timer(nullptr), lastImageSize(0), fullWidthImg(false), haveImg(false)
{
}
// QTextEdit/QTextBrowser seems to do FastTransformation when scaling images, and this looks bad.
QVariant TextBrowser::loadResource(int type, const QUrl& name)
{
if (QTextDocument::ImageResource == type) {
QImage img;
if ((name.scheme().isEmpty() || QLatin1String("file") == name.scheme())) {
img.load(name.path());
if (img.isNull()) {
// Failed to load, perhaps extension is wrong? If so try to guess from plain data without hint from file name.
QFile file(name.path());
if (file.open(QIODevice::ReadOnly)) {
QByteArray data = file.readAll();
img.loadFromData(data);
}
}
}
else if (QLatin1String("data") == name.scheme()) {
QByteArray encoded = name.toEncoded();
static const QString constStart("data:image/png;base64,");
encoded = QByteArray::fromBase64(encoded.mid(constStart.length()));
img.loadFromData(encoded);
}
if (!img.isNull()) {
haveImg = true;
return img.scaled(imageSize(), Qt::KeepAspectRatio, Qt::SmoothTransformation);
}
}
return QTextBrowser::loadResource(type, name);
}
void TextBrowser::setFullWidthImage(bool s)
{
if (s != fullWidthImg) {
fullWidthImg = s;
verticalScrollBar()->removeEventFilter(this);
if (fullWidthImg) {
verticalScrollBar()->installEventFilter(this);
}
if (haveImg) {
setHtml(toHtml());
}
}
}
void TextBrowser::setPal(const QPalette& pal)
{
setPalette(pal);
verticalScrollBar()->setPalette(pal);
horizontalScrollBar()->setPalette(pal);
}
void TextBrowser::resizeEvent(QResizeEvent* e)
{
handleSizeChange();
QTextBrowser::resizeEvent(e);
}
bool TextBrowser::eventFilter(QObject* obj, QEvent* ev)
{
if (obj == verticalScrollBar() && (QEvent::Show == ev->type() || QEvent::Hide == ev->type())) {
handleSizeChange();
}
return QTextBrowser::eventFilter(obj, ev);
}
void TextBrowser::refreshHtml()
{
setHtml(toHtml());
}
void TextBrowser::handleSizeChange()
{
if (haveImg) {
int imgSize = imageSize().width();
if (imgSize != lastImageSize) {
if (timer) {
timer->stop();
}
else {
timer = new QTimer(this);
timer->setSingleShot(true);
connect(timer, SIGNAL(timeout()), SLOT(refreshHtml()));
}
lastImageSize = imgSize;
timer->start();
}
}
}
QSize TextBrowser::imageSize() const
{
QSize sz;
int sbarSpacing = style()->pixelMetric(QStyle::PM_ScrollView_ScrollBarSpacing);
if (sbarSpacing < 0) {
sz = size() - QSize(4, 0);
}
else {
QScrollBar* sb = verticalScrollBar();
int sbarWidth = sb && sb->isVisible() ? 0 : style()->pixelMetric(QStyle::PM_ScrollBarExtent);
sz = size() - QSize(4 + sbarSpacing + sbarWidth, 0);
}
if (fullWidthImg || sz.width() <= picSize().width()) {
return sz.width() < 32 || sz.height() < 32 ? QSize(32, 32) : sz;
}
return picSize();
}
#include "moc_textbrowser.cpp"
|