combjs

diff gui/gui.h @ 1:dd02002227a2

- added a few commandline arguments to combjs - trying to make a gui frontend
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 14 Jul 2011 15:40:20 +0300
parents
children 4e8f2bbe8426
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/gui/gui.h	Thu Jul 14 15:40:20 2011 +0300
     1.3 @@ -0,0 +1,18 @@
     1.4 +#ifndef GUI_H_
     1.5 +#define GUI_H_
     1.6 +
     1.7 +#include "ui_main.h"
     1.8 +
     1.9 +class MainWindow : public QMainWindow, private Ui::MainWindow {
    1.10 +	Q_OBJECT
    1.11 +private slots:
    1.12 +	void jslist_select();
    1.13 +
    1.14 +private:
    1.15 +	void closeEvent(QCloseEvent *ev);
    1.16 +
    1.17 +public:
    1.18 +	MainWindow(QWidget *parent = 0);
    1.19 +};
    1.20 +
    1.21 +#endif	/* GUI_H_ */