combjs

view gui/gui.h @ 2:4e8f2bbe8426

doing the gui
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 15 Jul 2011 06:54:32 +0300
parents dd02002227a2
children
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();
10 void clist_select();
12 void add_js();
13 void remove_js();
15 void start_virt();
16 void stop_virt();
18 private:
19 void closeEvent(QCloseEvent *ev);
21 public:
22 MainWindow(QWidget *parent = 0);
23 };
25 #endif /* GUI_H_ */