summaryrefslogtreecommitdiffstats
path: root/src/fbgui.h
blob: 8a62a32675b45f8e8ce6884205b835e6e77455b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef FBGUI_H
#define FBGUI_H

#include <QtCore>
#include "fbbrowser.h"

#define DEFAULT_URL "http://132.230.4.3/webkitTest.html"

class fbgui : public QObject
{
	Q_OBJECT

public:
	fbgui();
	~fbgui();
	void setOption(QString key, QString value);
	void startBrowser();


private:
	QMap<QString, QString> _options;
	// stuff
	fbbrowser* _fbb;

};

#endif // FBGUI_H