Added FreeObserver() and all assorted code that goes with it.
[aesalon.git] / src / gui / ActiveSessionOverview.h
bloba9238e49c78e262cdf04ddc2f742fe5822a9b0ec
1 #ifndef AESALON_GUI_ACTIVE_SESSION_OVERVIEW_H
2 #define AESALON_GUI_ACTIVE_SESSION_OVERVIEW_H
4 #include <QWidget>
5 #include <QFormLayout>
6 #include <QLabel>
7 #include <QTime>
8 #include <QTimer>
10 #include "Session.h"
12 namespace Aesalon {
13 namespace GUI {
15 class ActiveSessionOverview : public QWidget { Q_OBJECT
16 private:
17 Session *session;
18 QFormLayout *info_form;
19 QLabel *status;
20 public:
21 ActiveSessionOverview(Session *session, QWidget *parent = 0);
22 virtual ~ActiveSessionOverview() {}
23 public slots:
24 void update_status(QString new_status);
27 } // namespace GUI
28 } // namespace Aesalon
30 #endif