Successfully replaced the ptrace-based allocation gathering with LD_PRELOAD.
[aesalon.git] / gui / src / MainArea.h
blobd76c3095d273334fb5e30c1b5248df2c51b06887
1 #ifndef AESALON_GUI_MAIN_AREA_H
2 #define AESALON_GUI_MAIN_AREA_H
4 #include <QWidget>
5 #include <QTabWidget>
10 class MainArea : public QTabWidget { Q_OBJECT
11 public:
12 MainArea(QWidget *parent = 0);
13 virtual ~MainArea() {}
14 public slots:
15 void add_tab(QWidget *new_tab, QString name);
16 void remove_tab(QWidget *tab);
18 void tab_close_requested(int index);
24 #endif