combjs

view 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 source
1 #ifndef GUI_H_
2 #define GUI_H_
4 #include "ui_main.h"
6 class MainWindow : public QMainWindow, private Ui::MainWindow {
7 Q_OBJECT
8 private slots:
9 void jslist_select();
11 private:
12 void closeEvent(QCloseEvent *ev);
14 public:
15 MainWindow(QWidget *parent = 0);
16 };
18 #endif /* GUI_H_ */