2011-09-23 22:06:21 +02:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2014-01-11 16:11:42 +01:00
|
|
|
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
|
2011-09-23 22:06:21 +02:00
|
|
|
*
|
|
|
|
* 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 3 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. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
* ============================================================ */
|
2011-09-21 14:20:49 +02:00
|
|
|
#ifndef PAGESCREEN_H
|
|
|
|
#define PAGESCREEN_H
|
|
|
|
|
2011-10-26 19:23:50 +02:00
|
|
|
#include <QDialog>
|
2012-03-05 14:33:24 +01:00
|
|
|
#include <QFutureWatcher>
|
2012-02-29 18:33:50 +01:00
|
|
|
|
2014-02-26 20:03:20 +01:00
|
|
|
#include "qzcommon.h"
|
2011-09-21 14:20:49 +02:00
|
|
|
|
2015-01-27 11:01:52 +01:00
|
|
|
#if QTWEBENGINE_DISABLED
|
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class PageScreen;
|
2011-09-21 14:20:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
class WebView;
|
2012-02-29 18:33:50 +01:00
|
|
|
|
2014-02-19 22:12:32 +01:00
|
|
|
class QUPZILLA_EXPORT PageScreen : public QDialog
|
2011-09-21 14:20:49 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2011-10-26 19:23:50 +02:00
|
|
|
explicit PageScreen(WebView* view, QWidget* parent);
|
2011-09-21 14:20:49 +02:00
|
|
|
~PageScreen();
|
|
|
|
|
2012-03-07 12:19:54 +01:00
|
|
|
QImage scaleImage();
|
|
|
|
|
2011-09-21 14:20:49 +02:00
|
|
|
private slots:
|
2012-03-05 14:33:24 +01:00
|
|
|
void createThumbnail();
|
|
|
|
void showImage();
|
|
|
|
|
2013-05-31 12:42:54 +02:00
|
|
|
void formatChanged();
|
|
|
|
void changeLocation();
|
2012-03-05 14:33:24 +01:00
|
|
|
void dialogAccepted();
|
|
|
|
|
2011-09-21 14:20:49 +02:00
|
|
|
private:
|
2013-05-31 13:46:45 +02:00
|
|
|
void saveAsImage(const QString &format);
|
|
|
|
void saveAsDocument(const QString &format);
|
|
|
|
|
2011-09-21 14:20:49 +02:00
|
|
|
void createPixmap();
|
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
Ui::PageScreen* ui;
|
2011-09-21 14:20:49 +02:00
|
|
|
WebView* m_view;
|
2012-03-07 12:19:54 +01:00
|
|
|
QString m_pageTitle;
|
2012-03-05 14:33:24 +01:00
|
|
|
|
|
|
|
QFutureWatcher<QImage>* m_imageScaling;
|
2013-02-26 12:56:11 +01:00
|
|
|
QVector<QImage> m_pageImages;
|
2014-09-16 20:06:25 +02:00
|
|
|
QStringList m_formats;
|
2011-09-21 14:20:49 +02:00
|
|
|
};
|
|
|
|
|
2015-01-27 11:01:52 +01:00
|
|
|
#endif
|
|
|
|
|
2011-09-21 14:20:49 +02:00
|
|
|
#endif // PAGESCREEN_H
|