1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-21 01:53:52 +00:00
openmw/apps/opencs/view/widget/pushbutton.hpp

42 lines
963 B
C++
Raw Normal View History

2014-07-10 09:03:55 +00:00
#ifndef CSV_WIDGET_PUSHBUTTON_H
#define CSV_WIDGET_PUSHBUTTON_H
#include <QPushButton>
namespace CSVWidget
{
class PushButton : public QPushButton
{
Q_OBJECT
bool mKeepOpen;
2014-07-10 10:53:57 +00:00
bool mPush;
private:
void setExtendedToolTip (const std::string& text);
2014-07-10 09:03:55 +00:00
protected:
virtual void keyPressEvent (QKeyEvent *event);
virtual void keyReleaseEvent (QKeyEvent *event);
2014-07-10 09:03:55 +00:00
virtual void mouseReleaseEvent (QMouseEvent *event);
public:
/// \param push Do not maintain a toggle state
2014-07-10 10:53:57 +00:00
PushButton (const QIcon& icon, bool push = false, const std::string& tooltip = "",
QWidget *parent = 0);
/// \param push Do not maintain a toggle state
2014-07-10 10:53:57 +00:00
PushButton (bool push = false, const std::string& tooltip = "",
QWidget *parent = 0);
2014-07-10 09:03:55 +00:00
bool hasKeepOpen() const;
};
}
#endif