summaryrefslogtreecommitdiffstats
path: root/BrowserWindow.h
blob: d48f2f8a660682b7f03a315abd5a7e0083a2e82a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef BROWSERWINDOW_H
#define BROWSERWINDOW_H

#include <QWidget>
class QLineEdit;
class QWebView;
class QUrl;

class BrowserWindow : public QWidget
{
	Q_OBJECT
public:
	BrowserWindow(QWidget *parent = 0);
private:
	QLineEdit *m_urlBox;
	QWebView *m_browser;
private slots:
	void updateUrlBox(const QUrl &url);
	void navigateToPage();
};

#endif // BROWSERWINDOW_H