#pragma once #include "EventModule.h" /** * @brief 标题栏消息处理模块 */ class TitleBar : public EventModule { Q_OBJECT public: TitleBar(QWidget* parent); ~TitleBar(); /** * @brief 设置标题栏自定义副标题 * @param title 副标题内容 */ void setTitleText(const std::string title); protected: bool onMessage(const std::string& eventName, json& parameter); private: QWidget* _parent; };