Ok, the long awaited config wizard is here (at least in a very basic state). There...
[quassel.git] / src / contrib / libqxt-2007-10-24 / tests / QxtGui / app / mainwindow.h
1 #ifndef MAINWINDOW_H
2 #define MAINWINDOW_H
3
4 #include "ui_mainwindow.h"
5
6 class MainWindow : public QMainWindow
7 {
8         Q_OBJECT
9
10 public:
11         MainWindow(QWidget* parent = 0, Qt::WindowFlags flags = 0);
12         ~MainWindow();
13
14 protected:
15         void closeEvent(QCloseEvent* event);
16         
17 private slots:
18         void aboutQxtGui();
19         void addTab();
20         void switchLayoutDirection();
21         void toggleVisibility();
22         void configure();
23         
24 private:
25         void createProgressBar();
26         Ui::MainWindow ui;
27 };
28
29 #endif // MAINWINDOW_H