2016-08-08 22:45:57 +03:00
|
|
|
#ifndef GLOBALS_QOBJECTS_H
|
|
|
|
#define GLOBALS_QOBJECTS_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include "profiler/profiler.h"
|
|
|
|
|
|
|
|
namespace profiler_gui {
|
2016-08-18 23:26:41 +03:00
|
|
|
|
|
|
|
class EasyGlobalSignals final : public QObject
|
2016-08-08 22:45:57 +03:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2016-08-18 23:26:41 +03:00
|
|
|
EasyGlobalSignals();
|
|
|
|
virtual ~EasyGlobalSignals();
|
2016-08-08 22:45:57 +03:00
|
|
|
|
|
|
|
signals:
|
|
|
|
|
|
|
|
void selectedThreadChanged(::profiler::thread_id_t _id);
|
|
|
|
void selectedBlockChanged(unsigned int _block_index);
|
2016-08-18 23:26:41 +03:00
|
|
|
void itemsExpandStateChanged();
|
2016-08-24 01:00:24 +03:00
|
|
|
void drawBordersChanged();
|
|
|
|
void chronoPositionChanged();
|
2016-08-18 23:26:41 +03:00
|
|
|
|
|
|
|
}; // END of class EasyGlobalSignals.
|
2016-08-08 22:45:57 +03:00
|
|
|
|
2016-08-18 23:26:41 +03:00
|
|
|
} // END of namespace profiler_gui.
|
2016-08-08 22:45:57 +03:00
|
|
|
|
|
|
|
#endif // GLOBALS_QOBJECTS_H
|