#include <QtGui/qstyle.h>
#ifndef QSTYLE_H
class QStyle: public QObject{
   /* Some contents are skipped to improve readability */
   public: enum PrimitiveElement{
      PE_Q3CheckListController = 0,
      PE_Q3CheckListExclusiveIndicator = 1,
      PE_Q3CheckListIndicator = 2,
      PE_Q3DockWindowSeparator = 3,
      PE_Q3Separator = 4,
      PE_Frame = 5,
      PE_FrameDefaultButton = 6,
      PE_FrameDockWidget = 7,
      PE_FrameFocusRect = 8,
      PE_FrameGroupBox = 9,
      PE_FrameLineEdit = 10,
      PE_FrameMenu = 11,
      PE_FrameStatusBar = 12,
      PE_FrameTabWidget = 13,
      PE_FrameWindow = 14,
      PE_FrameButtonBevel = 15,
      PE_FrameButtonTool = 16,
      PE_FrameTabBarBase = 17,
      PE_PanelButtonCommand = 18,
      PE_PanelButtonBevel = 19,
      PE_PanelButtonTool = 20,
      PE_PanelMenuBar = 21,
      PE_PanelToolBar = 22,
      PE_PanelLineEdit = 23,
      PE_IndicatorArrowDown = 24,
      PE_IndicatorArrowLeft = 25,
      PE_IndicatorArrowRight = 26,
      PE_IndicatorArrowUp = 27,
      PE_IndicatorBranch = 28,
      PE_IndicatorButtonDropDown = 29,
      PE_IndicatorViewItemCheck = 30,
      PE_IndicatorCheckBox = 31,
      PE_IndicatorDockWidgetResizeHandle = 32,
      PE_IndicatorHeaderArrow = 33,
      PE_IndicatorMenuCheckMark = 34,
      PE_IndicatorProgressChunk = 35,
      PE_IndicatorRadioButton = 36,
      PE_IndicatorSpinDown = 37,
      PE_IndicatorSpinMinus = 38,
      PE_IndicatorSpinPlus = 39,
      PE_IndicatorSpinUp = 40,
      PE_IndicatorToolBarHandle = 41,
      PE_IndicatorToolBarSeparator = 42,
      PE_PanelTipLabel = 43,
      PE_IndicatorTabTear = 44,
      PE_PanelScrollAreaCorner = 45,
      PE_Widget = 46,
      PE_CustomBase = 251658240,
   };
   /* ... */
};
#endif // QSTYLE_H