- doc comments live before the thing they describe
svn path=/trunk/KDE/kdelibs/; revision=926249
This commit is contained in:
parent
7be090da64
commit
8db000f7e6
21
plasma.h
21
plasma.h
@ -42,13 +42,20 @@ namespace Plasma
|
|||||||
*/
|
*/
|
||||||
enum Constraint {
|
enum Constraint {
|
||||||
NoConstraint = 0,
|
NoConstraint = 0,
|
||||||
FormFactorConstraint = 1, /** The FormFactor for an object */
|
/** The FormFactor for an object */
|
||||||
LocationConstraint = 2, /** The Location of an object */
|
FormFactorConstraint = 1,
|
||||||
ScreenConstraint = 4, /** Which screen an object is on */
|
/** The Location of an object */
|
||||||
SizeConstraint = 8, /** the size of the applet was changed */
|
LocationConstraint = 2,
|
||||||
ImmutableConstraint = 16, /** the immutability (locked) nature of the applet changed */
|
/** Which screen an object is on */
|
||||||
StartupCompletedConstraint = 32, /** application startup has completed */
|
ScreenConstraint = 4,
|
||||||
ContextConstraint = 64, /** the desktop context has changed */
|
/** the size of the applet was changed */
|
||||||
|
SizeConstraint = 8,
|
||||||
|
/** the immutability (locked) nature of the applet changed */
|
||||||
|
ImmutableConstraint = 16,
|
||||||
|
/** application startup has completed */
|
||||||
|
StartupCompletedConstraint = 32,
|
||||||
|
/** the desktop context has changed */
|
||||||
|
ContextConstraint = 64,
|
||||||
AllConstraints = FormFactorConstraint | LocationConstraint | ScreenConstraint |
|
AllConstraints = FormFactorConstraint | LocationConstraint | ScreenConstraint |
|
||||||
SizeConstraint | ImmutableConstraint | ContextConstraint
|
SizeConstraint | ImmutableConstraint | ContextConstraint
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user