0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-28 01:04:41 +08:00
easy_profiler/profiler_gui/globals_qobjects.h

31 lines
652 B
C
Raw Normal View History

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 {
class EasyGlobalSignals final : public QObject
2016-08-08 22:45:57 +03:00
{
Q_OBJECT
public:
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);
void itemsExpandStateChanged();
void drawBordersChanged();
void chronoPositionChanged();
}; // END of class EasyGlobalSignals.
2016-08-08 22:45:57 +03:00
} // END of namespace profiler_gui.
2016-08-08 22:45:57 +03:00
#endif // GLOBALS_QOBJECTS_H