diff options
Diffstat (limited to 'src/websnap.cpp')
-rw-r--r-- | src/websnap.cpp | 72 |
1 files changed, 55 insertions, 17 deletions
diff --git a/src/websnap.cpp b/src/websnap.cpp index c4e50b3c..29201215 100644 --- a/src/websnap.cpp +++ b/src/websnap.cpp @@ -101,28 +101,37 @@ QPixmap WebSnap::renderTabPreview(const QWebPage &page, int w, int h) return pageImage.scaled(w, h, Qt::IgnoreAspectRatio, Qt::SmoothTransformation); } - - -// NOTE please, be careful modifying this. -// You are playing with fire.. -QPixmap WebSnap::renderPagePreview(const QWebPage &page, int w, int h) +/* +// This code is an attempt to render a page currently displayed in a tab without alterate it. +// It currently does not work but can give ideas: +// - activate/disable scrollbars of a webview causes problems => this method try to not do that +// - the viewport and the scroll position must be modified an restored +// - page.setViewportSize(size); does not seem to work when the page is currently displayed in a webview + +QPixmap WebSnap::renderVisiblePagePreview(const QWebPage &page, int w, int h) { - // prepare page + // save page settings QSize oldSize = page.viewportSize(); - - // find the best size + QPoint oldScrollPosition = page.mainFrame()->scrollPosition(); + + // minimum width + int width = 640; + + // find best width QSize size; - int width = page.mainFrame()->contentsSize().width(); - if (width < 640) + while(page.mainFrame()->scrollBarMaximum(Qt::Horizontal) && width<1920) { - width = 640; + width+=5; + size = QSize(width, width * ((0.0 + h) / w)); + page.setViewportSize(size); } - size = QSize(width, width * ((0.0 + h) / w)); - page.setViewportSize(size); - //render - QPixmap pageImage = WebSnap::render(page, page.viewportSize().width(), page.viewportSize().height()); + // scroll to top + page.mainFrame()->setScrollBarValue(Qt::Vertical, 0); + // render + QPixmap pageImage = WebSnap::render(page, page.viewportSize().width(), page.viewportSize().height()); + // detect scrollbar size int scrollbarWidth = (page.mainFrame()->scrollBarMaximum(Qt::Horizontal) ? 17 : 0); //TODO: detect QStyle size for scrollbars int scrollbarHeight = (page.mainFrame()->scrollBarMaximum(Qt::Vertical) ? 17 : 0); @@ -130,13 +139,42 @@ QPixmap WebSnap::renderPagePreview(const QWebPage &page, int w, int h) // resize image pageImage = pageImage.copy(0, 0, width - scrollbarWidth, size.height() - scrollbarHeight); pageImage = pageImage.scaled(w, h, Qt::KeepAspectRatioByExpanding, Qt::SmoothTransformation); - + // restore page settings page.setViewportSize(oldSize); - + page.mainFrame()->setScrollPosition(oldScrollPosition); + return pageImage; } +*/ + +QPixmap WebSnap::renderClosingPagePreview(const QWebPage &page, int w, int h) +{ + //scroll to top + page.mainFrame()->setScrollBarValue(Qt::Vertical, 0); + + // reduce as much as possible + page.setViewportSize(QSize(10, 10)); + + return renderPagePreview(page, w, h); +} + + +QPixmap WebSnap::renderPagePreview(const QWebPage &page, int w, int h) +{ + //prepare page + page.mainFrame()->setScrollBarPolicy(Qt::Vertical, Qt::ScrollBarAlwaysOff); + int width = page.mainFrame()->contentsSize().width(); + page.setViewportSize(QSize(width, width * ((0.0 + h) / w))); + //render + QPixmap pageImage = WebSnap::render(page, page.viewportSize().width(), page.viewportSize().height()); + + // resize image + pageImage = pageImage.scaled(w, h, Qt::KeepAspectRatioByExpanding, Qt::SmoothTransformation); + + return pageImage; +} QString WebSnap::imagePathFromUrl(const KUrl &url) |