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