DPS/DataPlatform/TitleBar.h

23 lines
395 B
C++
Raw Blame History

#pragma once
#include "EventModule.h"
/**
* @brief 깃痙으句口뇹잿친욥
*/
class TitleBar : public EventModule
{
Q_OBJECT
public:
TitleBar(QWidget* parent);
~TitleBar();
/**
* @brief <20>零깃痙으菱땍屢릴깃痙
* @param title 릴깃痙코휭
*/
void setTitleText(const std::string title);
protected:
bool onMessage(const std::string& eventName, json& parameter);
private:
QWidget* _parent;
};