#include <QtGui/qstyle.h>
#ifndef QSTYLE_H
class QStyle: public QObject{
   /* Some contents are skipped to improve readability */
   public: enum StyleHint{
      SH_EtchDisabledText = 0,
      SH_DitherDisabledText = 1,
      SH_ScrollBar_MiddleClickAbsolutePosition = 2,
      SH_ScrollBar_ScrollWhenPointerLeavesControl = 3,
      SH_TabBar_SelectMouseType = 4,
      SH_TabBar_Alignment = 5,
      SH_Header_ArrowAlignment = 6,
      SH_Slider_SnapToValue = 7,
      SH_Slider_SloppyKeyEvents = 8,
      SH_ProgressDialog_CenterCancelButton = 9,
      SH_ProgressDialog_TextLabelAlignment = 10,
      SH_PrintDialog_RightAlignButtons = 11,
      SH_MainWindow_SpaceBelowMenuBar = 12,
      SH_FontDialog_SelectAssociatedText = 13,
      SH_Menu_AllowActiveAndDisabled = 14,
      SH_Menu_SpaceActivatesItem = 15,
      SH_Menu_SubMenuPopupDelay = 16,
      SH_ScrollView_FrameOnlyAroundContents = 17,
      SH_MenuBar_AltKeyNavigation = 18,
      SH_ComboBox_ListMouseTracking = 19,
      SH_Menu_MouseTracking = 20,
      SH_MenuBar_MouseTracking = 21,
      SH_ItemView_ChangeHighlightOnFocus = 22,
      SH_Widget_ShareActivation = 23,
      SH_Workspace_FillSpaceOnMaximize = 24,
      SH_ComboBox_Popup = 25,
      SH_TitleBar_NoBorder = 26,
      SH_Slider_StopMouseOverSlider = 27,
      SH_ScrollBar_StopMouseOverSlider = 27,
      SH_BlinkCursorWhenTextSelected = 28,
      SH_RichText_FullWidthSelection = 29,
      SH_Menu_Scrollable = 30,
      SH_GroupBox_TextLabelVerticalAlignment = 31,
      SH_GroupBox_TextLabelColor = 32,
      SH_Menu_SloppySubMenus = 33,
      SH_Table_GridLineColor = 34,
      SH_LineEdit_PasswordCharacter = 35,
      SH_DialogButtons_DefaultButton = 36,
      SH_ToolBox_SelectedPageTitleBold = 37,
      SH_TabBar_PreferNoArrows = 38,
      SH_ScrollBar_LeftClickAbsolutePosition = 39,
      SH_Q3ListViewExpand_SelectMouseType = 40,
      SH_UnderlineShortcut = 41,
      SH_SpinBox_AnimateButton = 42,
      SH_SpinBox_KeyPressAutoRepeatRate = 43,
      SH_SpinBox_ClickAutoRepeatRate = 44,
      SH_Menu_FillScreenWithScroll = 45,
      SH_ToolTipLabel_Opacity = 46,
      SH_DrawMenuBarSeparator = 47,
      SH_TitleBar_ModifyNotification = 48,
      SH_Button_FocusPolicy = 49,
      SH_MenuBar_DismissOnSecondClick = 50,
      SH_MessageBox_UseBorderForButtonSpacing = 51,
      SH_TitleBar_AutoRaise = 52,
      SH_ToolButton_PopupDelay = 53,
      SH_FocusFrame_Mask = 54,
      SH_RubberBand_Mask = 55,
      SH_WindowFrame_Mask = 56,
      SH_SpinControls_DisableOnBounds = 57,
      SH_Dial_BackgroundRole = 58,
      SH_ComboBox_LayoutDirection = 59,
      SH_ItemView_EllipsisLocation = 60,
      SH_ItemView_ShowDecorationSelected = 61,
      SH_ItemView_ActivateItemOnSingleClick = 62,
      SH_ScrollBar_ContextMenu = 63,
      SH_ScrollBar_RollBetweenButtons = 64,
      SH_Slider_AbsoluteSetButtons = 65,
      SH_Slider_PageSetButtons = 66,
      SH_Menu_KeyboardSearch = 67,
      SH_TabBar_ElideMode = 68,
      SH_DialogButtonLayout = 69,
      SH_ComboBox_PopupFrameStyle = 70,
      SH_MessageBox_TextInteractionFlags = 71,
      SH_DialogButtonBox_ButtonsHaveIcons = 72,
      SH_SpellCheckUnderlineStyle = 73,
      SH_MessageBox_CenterButtons = 74,
      SH_Menu_SelectionWrap = 75,
      SH_ItemView_MovementWithoutUpdatingSelection = 76,
      SH_CustomBase = -268435456,
   };
   /* ... */
};
#endif // QSTYLE_H