Files
oak-editor/app/widget/toolbar/toolbarbutton.h
T
2019-06-22 20:45:55 -07:00

19 lines
334 B
C++

#ifndef TOOLBARBUTTON_H
#define TOOLBARBUTTON_H
#include <QPushButton>
#include "tool/tool.h"
class ToolbarButton : public QPushButton
{
public:
ToolbarButton(QWidget* parent, const QIcon& icon, const olive::tool::Tool& tool);
const olive::tool::Tool& tool();
private:
olive::tool::Tool tool_;
};
#endif // TOOLBARBUTTON_H