vnote/src/vuetitlecontentpanel.h
Le Tan 6212bb48bc UniversalEntry
1. Use VListWidget in VListFolderUE;
2. Add j to list history;
2018-06-01 16:26:00 +08:00

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