blob: c9e7048b3449e932456c8bd74ca8d969d95cb0d1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef CUSTOMTOOLBUTTON_H
#define CUSTOMTOOLBUTTON_H
#include <QToolButton>
class customToolButton : public QToolButton
{
public:
customToolButton(QWidget* parent = 0);
void paintEvent(QPaintEvent* event);
QSize sizeHint() const;
};
#endif // CUSTOMTOOLBUTTON_H
|