mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2025-01-24 13:32:06 +08:00
20 lines
323 B
C++
20 lines
323 B
C++
#ifndef ICONTITLEWIDGET_H
|
|
#define ICONTITLEWIDGET_H
|
|
|
|
#include <QFrame>
|
|
class QIcon;
|
|
class QString;
|
|
|
|
class IconTitleWidget : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit IconTitleWidget(const QIcon& icon, const QString& title, QWidget *parent = 0);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif // ICONTITLEWIDGET_H
|