#include <QtGui/qaccessible.h>
#ifndef QACCESSIBLE_H
#ifndef QT_NO_ACCESSIBILITY
class QAccessible{
   /* Some contents are skipped to improve readability */
   public: enum Action{
      DefaultAction = 0,
      Press = -1,
      FirstStandardAction = -1,
      SetFocus = -2,
      Increase = -3,
      Decrease = -4,
      Accept = -5,
      Cancel = -6,
      Select = -7,
      ClearSelection = -8,
      RemoveSelection = -9,
      ExtendSelection = -10,
      AddToSelection = -11,
      LastStandardAction = -11,
   };
   /* ... */
};
#endif // QT_NO_ACCESSIBILITY
#endif // QACCESSIBLE_H