/
githubmirror
/
x64dbg
Обзор
Документация
Войти
/
githubmirror
/
x64dbg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
development
src/gui/Src/Gui/DebugStatusLabel.h
25 строк
472 B
Duncan Ogilvie
Refactor parent = 0 -> parent = nullptr
19 сен 2023, 07:25
19 сен 2023, 07:25
663bfbb
Код
Авторство
О чём код?
#pragma once #include <QLabel> #include <QStatusBar> #include "Bridge.h" class DebugStatusLabel : public QLabel { Q_OBJECT public: Q_PROPERTY(QString state READ state NOTIFY stateChanged) explicit DebugStatusLabel(QStatusBar* parent = nullptr); QString state() const; public slots: void debugStateChangedSlot(DBGSTATE state); signals: void stateChanged(); private: QString mStatusTexts[4]; QString mState; };