1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 15:35:23 +00:00
OpenMW/apps/opencs/view/widget/pushbutton.hpp

29 lines
515 B
C++
Raw Normal View History

2014-07-10 11:03:55 +02:00
#ifndef CSV_WIDGET_PUSHBUTTON_H
#define CSV_WIDGET_PUSHBUTTON_H
#include <QPushButton>
namespace CSVWidget
{
class PushButton : public QPushButton
{
Q_OBJECT
bool mKeepOpen;
protected:
virtual void keyPressEvent (QKeyEvent *event);
virtual void mouseReleaseEvent (QMouseEvent *event);
public:
PushButton (const QIcon& icon, const QString& text, QWidget *parent = 0);
bool hasKeepOpen() const;
};
}
#endif