#ifndef STATEDEBUGDIALOG_H #define STATEDEBUGDIALOG_H #include #include "fshost.h" namespace Ui { class StateDebugDialog; } class StateDebugDialog : public QDialog { Q_OBJECT public: StateDebugDialog(QWidget *parent = 0); ~StateDebugDialog(); private slots: void newEvent(QSharedPointer event); void currentUuidChanged(); void currentEventsChanged(); protected: void changeEvent(QEvent *e); private: Ui::StateDebugDialog *ui; QHash > > _events; }; #endif // STATEDEBUGDIALOG_H