qt-material-widgets/components/fab.h

20 lines
329 B
C
Raw Normal View History

2016-06-12 08:21:58 +00:00
#ifndef FAB_H
#define FAB_H
2016-06-12 10:26:38 +00:00
#include "raisedbutton.h"
2016-06-12 08:21:58 +00:00
2016-06-12 10:26:38 +00:00
class FloatingActionButton : public RaisedButton
2016-06-12 08:21:58 +00:00
{
Q_OBJECT
public:
explicit FloatingActionButton(QWidget *parent = 0);
~FloatingActionButton();
private:
Q_DISABLE_COPY(FloatingActionButton)
2016-06-12 10:26:38 +00:00
Q_DECLARE_PRIVATE(FloatingActionButton)
2016-06-12 08:21:58 +00:00
};
#endif // FAB_H