add the Geometry Changed constraint

svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=741157
This commit is contained in:
Aaron J. Seigo 2007-11-24 23:37:18 +00:00
parent 6c5aea1f60
commit 1e1b63b9fe

View File

@ -40,7 +40,8 @@ enum Constraint { NoConstraint = 0,
FormFactorConstraint = 1 /** The FormFactor for an object */,
LocationConstraint = 2 /** The Location of an object */,
ScreenConstraint = 4 /** Which screen an object is on */,
AllConstraints = FormFactorConstraint | LocationConstraint | ScreenConstraint
SizeConstraint = 8 /** the size of the applet was changed */,
AllConstraints = FormFactorConstraint | LocationConstraint | ScreenConstraint | SizeConstraint
};
Q_DECLARE_FLAGS(Constraints, Constraint)