mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-06 06:19:52 +08:00
24 lines
430 B
C++
24 lines
430 B
C++
#ifndef VUETITLECONTENTPANEL_H
|
|
#define VUETITLECONTENTPANEL_H
|
|
|
|
#include <QWidget>
|
|
|
|
class QLabel;
|
|
|
|
class VUETitleContentPanel : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit VUETitleContentPanel(QWidget *p_contentWidget,
|
|
QWidget *p_parent = nullptr);
|
|
|
|
void setTitle(const QString &p_title);
|
|
|
|
void clearTitle();
|
|
|
|
private:
|
|
QLabel *m_titleLabel;
|
|
};
|
|
|
|
#endif // VUETITLECONTENTPANEL_H
|