#include <QtGui/qaccessible.h>
#ifndef QACCESSIBLE_H
#ifndef QT_NO_ACCESSIBILITY
class QAccessible{
public: enum RelationFlag{
Unrelated = 0,
Self = 1,
Ancestor = 2,
Child = 4,
Descendent = 8,
Sibling = 16,
HierarchyMask = 255,
Up = 256,
Down = 512,
Left = 1024,
Right = 2048,
Covers = 4096,
Covered = 8192,
GeometryMask = 65280,
FocusChild = 65536,
Label = 131072,
Labelled = 262144,
Controller = 524288,
Controlled = 1048576,
LogicalMask = 16711680,
};
};
#endif // QT_NO_ACCESSIBILITY
#endif // QACCESSIBLE_H