summaryrefslogblamecommitdiffstats
path: root/src/fbgui.h
blob: 49f66a0b1b713dd96de3e98df8336f34e67b9c53 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11


               
                 
                      
 
                            



                
                
                 
                                                   
                            
 
 
        

                                        
                        
 


                 
#ifndef FBGUI_H
#define FBGUI_H

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

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