missing enum
svn path=/branches/KDE/4.4/kdebase/runtime/; revision=1077845
This commit is contained in:
parent
ced5e76676
commit
c9c777aafc
@ -56,6 +56,7 @@ class AppletInterface : public QObject
|
|||||||
Q_ENUMS(QtCorner)
|
Q_ENUMS(QtCorner)
|
||||||
Q_ENUMS(QtSizePolicy)
|
Q_ENUMS(QtSizePolicy)
|
||||||
Q_ENUMS(QtAlignment)
|
Q_ENUMS(QtAlignment)
|
||||||
|
Q_ENUMS(QtMouseButton)
|
||||||
Q_ENUMS(AnimationDirection)
|
Q_ENUMS(AnimationDirection)
|
||||||
Q_PROPERTY(AspectRatioMode aspectRatioMode READ aspectRatioMode WRITE setAspectRatioMode)
|
Q_PROPERTY(AspectRatioMode aspectRatioMode READ aspectRatioMode WRITE setAspectRatioMode)
|
||||||
Q_PROPERTY(FormFactor formFactor READ formFactor)
|
Q_PROPERTY(FormFactor formFactor READ formFactor)
|
||||||
@ -168,6 +169,15 @@ enum QtAlignment {
|
|||||||
QtAlignVCenter = 0x0080
|
QtAlignVCenter = 0x0080
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enum QtMouseButton {
|
||||||
|
QtNoButton = Qt::NoButton,
|
||||||
|
QtLeftButton = Qt::LeftButton,
|
||||||
|
QtRightButton = Qt::RightButton,
|
||||||
|
QtMidButton = Qt::MidButton,
|
||||||
|
QtXButton1 = Qt::XButton1,
|
||||||
|
QtXButton2 = Qt::XButton2
|
||||||
|
};
|
||||||
|
|
||||||
enum QtScrollBarPolicy {
|
enum QtScrollBarPolicy {
|
||||||
QtScrollBarAsNeeded = Qt::ScrollBarAsNeeded,
|
QtScrollBarAsNeeded = Qt::ScrollBarAsNeeded,
|
||||||
QtScrollBarAlwaysOff = Qt::ScrollBarAlwaysOff,
|
QtScrollBarAlwaysOff = Qt::ScrollBarAlwaysOff,
|
||||||
|
Loading…
Reference in New Issue
Block a user