qt-material-widgets/__old/components/appbar.h

19 lines
258 B
C
Raw Normal View History

2017-09-29 14:26:27 +00:00
#ifndef APPBAR_H
#define APPBAR_H
#include <QWidget>
class AppBar : public QWidget
{
Q_OBJECT
public:
explicit AppBar(QWidget *parent = 0);
~AppBar();
protected:
void paintEvent(QPaintEvent *event) Q_DECL_OVERRIDE;
};
#endif // APPBAR_H