DPS/DataPlatform/TitleBar.h

23 lines
420 B
C
Raw Permalink Normal View History

2025-06-23 10:41:33 +08:00
#pragma once
#include "EventModule.h"
/**
2025-06-23 18:01:09 +08:00
* @brief
2025-06-23 10:41:33 +08:00
*/
class TitleBar : public EventModule
{
Q_OBJECT
public:
TitleBar(QWidget* parent);
~TitleBar();
/**
2025-06-23 18:01:09 +08:00
* @brief
* @param title
2025-06-23 10:41:33 +08:00
*/
void setTitleText(const std::string title);
protected:
bool onMessage(const std::string& eventName, json& parameter);
private:
QWidget* _parent;
};