mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2025-01-31 00:09:13 +08:00
74f6ba333f
change. It might be use to re-polish style sheets.
23 lines
390 B
C++
23 lines
390 B
C++
#ifndef ICONTITLEWIDGET_H
|
|
#define ICONTITLEWIDGET_H
|
|
|
|
#include <QFrame>
|
|
class QIcon;
|
|
class QString;
|
|
class QLabel;
|
|
|
|
class IconTitleWidget : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit IconTitleWidget(const QIcon& icon, const QString& title, QWidget *parent = 0);
|
|
void polishUpdate();
|
|
|
|
public:
|
|
QLabel* _iconLabel;
|
|
QLabel* _titleLabel;
|
|
};
|
|
|
|
#endif // ICONTITLEWIDGET_H
|