diff options
author | Orochimarufan <orochimarufan.x3@gmail.com> | 2013-02-13 00:35:35 +0100 |
---|---|---|
committer | Orochimarufan <orochimarufan.x3@gmail.com> | 2013-02-13 00:35:35 +0100 |
commit | 79c5ae121b4f4de24fe3edc57bf3f0e3a8fccfe4 (patch) | |
tree | 813a1211ed634db4dc7e7df9a8874e1cf32c14b1 /gui/browserdialog.h | |
parent | b66be337fdb4d9fe023f1c4912573f99cca5437c (diff) | |
download | PrismLauncher-79c5ae121b4f4de24fe3edc57bf3f0e3a8fccfe4.tar.gz PrismLauncher-79c5ae121b4f4de24fe3edc57bf3f0e3a8fccfe4.tar.bz2 PrismLauncher-79c5ae121b4f4de24fe3edc57bf3f0e3a8fccfe4.zip |
add first iteration of the integrated browser
Diffstat (limited to 'gui/browserdialog.h')
-rw-r--r-- | gui/browserdialog.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/gui/browserdialog.h b/gui/browserdialog.h new file mode 100644 index 00000000..9d3587ef --- /dev/null +++ b/gui/browserdialog.h @@ -0,0 +1,41 @@ +#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 |