#include <QtGui/qaccessible.h>
#ifndef QACCESSIBLE_H
#ifndef QT_NO_ACCESSIBILITY
class QAccessible{
   /* Some contents are skipped to improve readability */
   public: enum StateFlag{
      Normal = 0,
      Unavailable = 1,
      Selected = 2,
      Focused = 4,
      Pressed = 8,
      Checked = 16,
      Mixed = 32,
      ReadOnly = 64,
      HotTracked = 128,
      DefaultButton = 256,
      Expanded = 512,
      Collapsed = 1024,
      Busy = 2048,
      Marqueed = 8192,
      Animated = 16384,
      Invisible = 32768,
      Offscreen = 65536,
      Sizeable = 131072,
      Movable = 262144,
      SelfVoicing = 524288,
      Focusable = 1048576,
      Selectable = 2097152,
      Linked = 4194304,
      Traversed = 8388608,
      MultiSelectable = 16777216,
      ExtSelectable = 33554432,
      Protected = 536870912,
      HasPopup = 1073741824,
      Modal = -2147483648,
      HasInvokeExtension = 268435456,
   };
   /* ... */
};
#endif // QT_NO_ACCESSIBILITY
#endif // QACCESSIBLE_H