animation direction
svn path=/trunk/KDE/kdebase/runtime/; revision=1073407
This commit is contained in:
parent
11c94def34
commit
a8c5f32de4
@ -21,6 +21,7 @@
|
||||
#ifndef APPLETINTERFACE_H
|
||||
#define APPLETINTERFACE_H
|
||||
|
||||
#include <QAbstractAnimation>
|
||||
#include <QObject>
|
||||
#include <QSizePolicy>
|
||||
#include <QScriptValue>
|
||||
@ -54,6 +55,7 @@ class AppletInterface : public QObject
|
||||
Q_ENUMS(QtCorner)
|
||||
Q_ENUMS(QtSizePolicy)
|
||||
Q_ENUMS(QtAlignment)
|
||||
Q_ENUMS(AnimationDirection)
|
||||
Q_PROPERTY(AspectRatioMode aspectRatioMode READ aspectRatioMode WRITE setAspectRatioMode)
|
||||
Q_PROPERTY(FormFactor formFactor READ formFactor)
|
||||
Q_PROPERTY(Location location READ location)
|
||||
@ -170,6 +172,11 @@ enum QtScrollBarPolicy {
|
||||
QtScrollBarAlwaysOff = Qt::ScrollBarAlwaysOff,
|
||||
QtScrollBarAlwaysOn = Qt::ScrollBarAlwaysOn
|
||||
};
|
||||
|
||||
enum AnimationDirection {
|
||||
AnimationForward = QAbstractAnimation::Forward,
|
||||
AnimationBackward = QAbstractAnimation::Backward
|
||||
};
|
||||
//-------------------------------------------------------------------
|
||||
|
||||
Q_INVOKABLE void gc();
|
||||
|
Loading…
x
Reference in New Issue
Block a user