diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-08-20 02:29:36 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-08-20 02:29:36 +0200 |
commit | bbc47cb8bdaea8fd9855e3e06b7607a7d15f3ef2 (patch) | |
tree | dbcb9dc6e2858b9e6b59f3a11098e38b3092ff75 /gui/browserdialog.h | |
parent | c92ad7dcf86f2e5e71d71a68e24e79fbdeceb56d (diff) | |
download | PrismLauncher-bbc47cb8bdaea8fd9855e3e06b7607a7d15f3ef2.tar.gz PrismLauncher-bbc47cb8bdaea8fd9855e3e06b7607a7d15f3ef2.tar.bz2 PrismLauncher-bbc47cb8bdaea8fd9855e3e06b7607a7d15f3ef2.zip |
Sync, removal of webkit as a dependency, removal of the web windows.
Diffstat (limited to 'gui/browserdialog.h')
-rw-r--r-- | gui/browserdialog.h | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/gui/browserdialog.h b/gui/browserdialog.h deleted file mode 100644 index 9d3587ef..00000000 --- a/gui/browserdialog.h +++ /dev/null @@ -1,41 +0,0 @@ -#ifndef BROWSERDIALOG_H -#define BROWSERDIALOG_H - -#include <QDialog> - -namespace Ui { -class BrowserDialog; -} - -class BrowserDialog : public QDialog -{ - Q_OBJECT - -public: - explicit BrowserDialog(QWidget *parent = 0); - ~BrowserDialog(); - - void load(const QUrl &url); - - void setPageTitleInWindowTitle(bool enable); - bool pageTitleInWindowTitle(void) { return m_pageTitleInWindowTitle; } - - void setWindowTitleFormat(QString format); - QString windowTitleFormat(void) { return m_windowTitleFormat; } - -private: - Ui::BrowserDialog *ui; - - bool m_pageTitleInWindowTitle; - QString m_windowTitleFormat; - - void refreshWindowTitle(void); - -private slots: - void on_btnBack_clicked(void); - void on_btnForward_clicked(void); - void on_webView_urlChanged(const QUrl &url); - void on_webView_titleChanged(const QString &title); -}; - -#endif // BROWSERDIALOG_H |