#ifndef _SMALLPUSHBUTTON_H #define _SMALLPUSHBUTTON_H #include #include class SmallPushButton : public QPushButton { public: SmallPushButton(const QString & text, QWidget * parent) : QPushButton(text, parent) {} virtual QSize sizeHint() const; }; #endif