reorder together the other Plasma enums

This commit is contained in:
Marco Martin 2011-04-14 19:50:57 +02:00
parent 06f753173a
commit 469f2076dd

View File

@ -130,6 +130,14 @@ enum AspectRatioMode {
FixedSize = 4 /** The applet cannot be resized */
};
enum ItemStatus {
UnknownStatus = 0, /**< The status is unknown **/
PassiveStatus = 1, /**< The Item is passive **/
ActiveStatus = 2, /**< The Item is active **/
NeedsAttentionStatus = 3, /**< The Item needs attention **/
AcceptingInputStatus = 4 /**< The Item is accepting input **/
};
//From Qt namespace
enum QtModifiers {
QtNoModifier = Qt::NoModifier,
@ -223,14 +231,6 @@ enum IntervalAlignment {
AlignToHour
};
enum ItemStatus {
UnknownStatus = 0, /**< The status is unknown **/
PassiveStatus = 1, /**< The Item is passive **/
ActiveStatus = 2, /**< The Item is active **/
NeedsAttentionStatus = 3, /**< The Item needs attention **/
AcceptingInputStatus = 4 /**< The Item is accepting input **/
};
//-------------------------------------------------------------------
Q_INVOKABLE void gc();