#include <QtGui/qaccessible.h>
#ifndef QACCESSIBLE_H
#ifndef QT_NO_ACCESSIBILITY
class QAccessible{
   /* Some contents are skipped to improve readability */
   public: enum Event{
      SoundPlayed = 1,
      Alert = 2,
      ForegroundChanged = 3,
      MenuStart = 4,
      MenuEnd = 5,
      PopupMenuStart = 6,
      PopupMenuEnd = 7,
      ContextHelpStart = 12,
      ContextHelpEnd = 13,
      DragDropStart = 14,
      DragDropEnd = 15,
      DialogStart = 16,
      DialogEnd = 17,
      ScrollingStart = 18,
      ScrollingEnd = 19,
      MenuCommand = 24,
      ObjectCreated = 32768,
      ObjectDestroyed = 32769,
      ObjectShow = 32770,
      ObjectHide = 32771,
      ObjectReorder = 32772,
      Focus = 32773,
      Selection = 32774,
      SelectionAdd = 32775,
      SelectionRemove = 32776,
      SelectionWithin = 32777,
      StateChanged = 32778,
      LocationChanged = 32779,
      NameChanged = 32780,
      DescriptionChanged = 32781,
      ValueChanged = 32782,
      ParentChanged = 32783,
      HelpChanged = 32928,
      DefaultActionChanged = 32944,
      AcceleratorChanged = 32960,
   };
   /* ... */
};
#endif // QT_NO_ACCESSIBILITY
#endif // QACCESSIBLE_H