#include <QtGui/qstyle.h>
#ifndef QSTYLE_H
class QStyle: public QObject{
   /* Some contents are skipped to improve readability */
   public: enum StateFlag{
      State_None = 0,
      State_Enabled = 1,
      State_Raised = 2,
      State_Sunken = 4,
      State_Off = 8,
      State_NoChange = 16,
      State_On = 32,
      State_DownArrow = 64,
      State_Horizontal = 128,
      State_HasFocus = 256,
      State_Top = 512,
      State_Bottom = 1024,
      State_FocusAtBorder = 2048,
      State_AutoRaise = 4096,
      State_MouseOver = 8192,
      State_UpArrow = 16384,
      State_Selected = 32768,
      State_Active = 65536,
      State_Open = 262144,
      State_Children = 524288,
      State_Item = 1048576,
      State_Sibling = 2097152,
      State_Editing = 4194304,
      State_KeyboardFocusChange = 8388608,
      State_ReadOnly = 33554432,
   };
   /* ... */
};
#endif // QSTYLE_H