1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
/***************************** LICENSE START ***********************************
Copyright 2012 ECMWF and INPE. This software is distributed under the terms
of the Apache License version 2.0. In applying this license, ECMWF does not
waive the privileges and immunities granted to it by virtue of its status as
an Intergovernmental Organization or submit itself to any jurisdiction.
***************************** LICENSE END *************************************/
#include <QPushButton>
#include <QStyleOptionButton>
class MvQPushButton : public QPushButton
{
public:
MvQPushButton(QWidget* parent = 0);
MvQPushButton(const QString& text, QWidget* parent = 0);
MvQPushButton(const QIcon& icon, const QString& text, QWidget* parent = 0);
~MvQPushButton();
Qt::Orientation orientation() const;
void setOrientation(Qt::Orientation orientation);
bool mirrored() const;
void setMirrored(bool mirrored);
QSize sizeHint() const;
QSize minimumSizeHint() const;
protected:
void paintEvent(QPaintEvent* event);
private:
QStyleOptionButton getStyleOption() const;
void init();
Qt::Orientation orientation_;
bool mirrored_;
};
|