summaryrefslogtreecommitdiffstats
path: root/src/fbgui.h
blob: fdd4477e2f662b65fa1fcf8ed56fdc0e4dd5881f (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
#ifndef FBGUI_H
#define FBGUI_H

#include <QtCore>
#include <QMainWindow>
#include <QtWebKit>

#define DEFAULT_URL "http://www.google.com"

extern QUrl baseURL;
extern QDir downloadDirectory;
extern bool debug;

class fbgui : public QMainWindow
{
	Q_OBJECT

public:
	fbgui(QApplication *parent);

public slots:
	void quit();
};

#endif // FBGUI_H