2011-03-03 18:29:20 +01:00
|
|
|
/* ============================================================
|
2017-08-25 17:11:29 +02:00
|
|
|
* Falkon - Qt web browser
|
2018-02-09 17:59:06 +01:00
|
|
|
* Copyright (C) 2010-2018 David Rosca <nowrep@gmail.com>
|
2011-03-03 18:29:20 +01: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-03-02 16:57:41 +01:00
|
|
|
#ifndef SITEINFO_H
|
|
|
|
#define SITEINFO_H
|
|
|
|
|
2014-02-26 20:03:20 +01:00
|
|
|
#include "qzcommon.h"
|
2012-02-29 18:33:50 +01:00
|
|
|
|
2011-12-03 14:43:13 +01:00
|
|
|
#include <QUrl>
|
2018-02-09 17:59:06 +01:00
|
|
|
#include <QDialog>
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class SiteInfo;
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2015-09-30 15:55:00 +02:00
|
|
|
class QNetworkReply;
|
2012-02-29 18:33:50 +01:00
|
|
|
class QTreeWidgetItem;
|
|
|
|
|
2012-01-21 20:27:45 +01:00
|
|
|
class WebView;
|
2011-10-09 14:51:25 +02:00
|
|
|
class CertificateInfoWidget;
|
2012-02-29 18:33:50 +01:00
|
|
|
|
2018-02-09 17:59:06 +01:00
|
|
|
class FALKON_EXPORT SiteInfo : public QDialog
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-02-09 17:59:06 +01:00
|
|
|
explicit SiteInfo(WebView *view);
|
2011-03-02 16:57:41 +01:00
|
|
|
~SiteInfo();
|
|
|
|
|
2015-10-14 12:50:30 +02:00
|
|
|
static bool canShowSiteInfo(const QUrl &url);
|
2011-04-26 19:47:12 +02:00
|
|
|
|
2011-03-22 21:36:15 +01:00
|
|
|
private slots:
|
2015-09-25 18:31:05 +02:00
|
|
|
void showImagePreview(QTreeWidgetItem *item);
|
2011-11-06 17:01:23 +01:00
|
|
|
void imagesCustomContextMenuRequested(const QPoint &p);
|
2011-03-24 22:31:38 +01:00
|
|
|
void copyActionData();
|
2015-09-30 16:20:31 +02:00
|
|
|
void saveImage();
|
2011-03-24 22:31:38 +01:00
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
private:
|
2015-09-30 15:55:00 +02:00
|
|
|
void showLoadingText();
|
2016-12-30 17:28:00 +01:00
|
|
|
void showPixmap(QPixmap pixmap);
|
2015-09-30 15:55:00 +02:00
|
|
|
|
2011-03-17 17:03:04 +01:00
|
|
|
Ui::SiteInfo* ui;
|
2011-10-09 14:51:25 +02:00
|
|
|
CertificateInfoWidget* m_certWidget;
|
2012-03-23 17:29:12 +01:00
|
|
|
WebView* m_view;
|
2015-09-30 15:55:00 +02:00
|
|
|
QNetworkReply *m_imageReply;
|
2011-11-05 11:51:46 +01:00
|
|
|
|
2011-12-03 14:43:13 +01:00
|
|
|
QUrl m_baseUrl;
|
2011-03-02 16:57:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SITEINFO_H
|