41 lines
969 B
C++
41 lines
969 B
C++
#ifndef QTMATERIALAPPBAR_H
|
|
#define QTMATERIALAPPBAR_H
|
|
|
|
#include <QtWidgets/QWidget>
|
|
|
|
class QtMaterialAppBarPrivate;
|
|
|
|
class QtMaterialAppBar : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(QColor foregroundColor WRITE setForegroundColor READ foregroundColor)
|
|
Q_PROPERTY(QColor backgroundColor WRITE setBackgroundColor READ backgroundColor)
|
|
|
|
public:
|
|
explicit QtMaterialAppBar(QWidget *parent = 0);
|
|
~QtMaterialAppBar();
|
|
|
|
QSize sizeHint() const Q_DECL_OVERRIDE;
|
|
|
|
void setUseThemeColors(bool value);
|
|
bool useThemeColors() const;
|
|
|
|
void setForegroundColor(const QColor &color);
|
|
QColor foregroundColor() const;
|
|
|
|
void setBackgroundColor(const QColor &color);
|
|
QColor backgroundColor() const;
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *event) Q_DECL_OVERRIDE;
|
|
|
|
const QScopedPointer<QtMaterialAppBarPrivate> d_ptr;
|
|
|
|
private:
|
|
Q_DISABLE_COPY(QtMaterialAppBar)
|
|
Q_DECLARE_PRIVATE(QtMaterialAppBar)
|
|
};
|
|
|
|
#endif // QTMATERIALAPPBAR_H
|