qt-material-widgets/components/appbar.h

19 lines
258 B
C
Raw Normal View History

2016-03-19 08:53:28 +00:00
#ifndef APPBAR_H
#define APPBAR_H
#include <QWidget>
class AppBar : public QWidget
{
Q_OBJECT
public:
explicit AppBar(QWidget *parent = 0);
~AppBar();
protected:
2016-03-26 10:36:44 +00:00
void paintEvent(QPaintEvent *event) Q_DECL_OVERRIDE;
2016-03-19 08:53:28 +00:00
};
#endif // APPBAR_H