2011-03-03 18:29:20 +01:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2012-01-01 15:29:55 +01:00
|
|
|
* Copyright (C) 2010-2012 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
|
|
|
|
|
2012-02-29 18:33:50 +01:00
|
|
|
#include "qz_namespace.h"
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
#include <QDialog>
|
2011-12-03 14:43:13 +01:00
|
|
|
#include <QUrl>
|
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
|
|
|
}
|
|
|
|
|
2012-02-29 18:33:50 +01:00
|
|
|
class QListWidgetItem;
|
|
|
|
class QTreeWidgetItem;
|
|
|
|
|
2012-01-21 20:27:45 +01:00
|
|
|
class WebView;
|
2011-10-09 14:51:25 +02:00
|
|
|
class CertificateInfoWidget;
|
2012-12-29 09:01:01 +01:00
|
|
|
class ListItemDelegate;
|
2012-02-29 18:33:50 +01:00
|
|
|
|
|
|
|
class QT_QUPZILLA_EXPORT SiteInfo : public QDialog
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2012-01-21 20:27:45 +01:00
|
|
|
explicit SiteInfo(WebView* view, QWidget* parent = 0);
|
2011-03-02 16:57:41 +01:00
|
|
|
~SiteInfo();
|
|
|
|
|
2011-04-26 19:47:12 +02:00
|
|
|
static QString showCertInfo(const QString &string);
|
|
|
|
|
2011-03-22 21:36:15 +01:00
|
|
|
private slots:
|
2012-03-23 17:29:12 +01:00
|
|
|
void databaseItemChanged(QListWidgetItem* item);
|
2011-03-23 22:36:03 +01:00
|
|
|
void showImagePreview(QTreeWidgetItem* item);
|
|
|
|
void securityDetailsClicked();
|
2011-03-22 21:36:15 +01:00
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
void imagesCustomContextMenuRequested(const QPoint &p);
|
2011-03-24 22:31:38 +01:00
|
|
|
void copyActionData();
|
|
|
|
void downloadImage();
|
2012-12-29 09:01:01 +01:00
|
|
|
void heightChange();
|
2011-03-24 22:31:38 +01:00
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
private:
|
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;
|
2012-12-29 09:01:01 +01:00
|
|
|
ListItemDelegate* m_delegate;
|
2011-11-05 11:51:46 +01:00
|
|
|
|
|
|
|
QPixmap m_activePixmap;
|
2011-12-03 14:43:13 +01:00
|
|
|
QUrl m_baseUrl;
|
2011-03-02 16:57:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SITEINFO_H
|