qt-material-widgets/appbar.h

19 lines
242 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:
void paintEvent(QPaintEvent *event);
};
#endif // APPBAR_H