File indexing completed on 2025-01-19 03:59:48
0001 // This file is generated by kconfig_compiler_kf5 from breeze.kcfg. 0002 // All changes you do to this file will be lost. 0003 #ifndef BREEZE_STYLECONFIGDATA_H 0004 #define BREEZE_STYLECONFIGDATA_H 0005 0006 #include <kconfigskeleton.h> 0007 #include <QCoreApplication> 0008 #include <QDebug> 0009 0010 namespace Breeze { 0011 0012 class StyleConfigData : public KConfigSkeleton 0013 { 0014 public: 0015 enum EnumShadowSize { ShadowNone, ShadowSmall, ShadowMedium, ShadowLarge, ShadowVeryLarge }; 0016 enum EnumMnemonicsMode { MN_NEVER, MN_AUTO, MN_ALWAYS }; 0017 enum EnumWindowDragMode { WD_NONE, WD_MINIMAL, WD_FULL }; 0018 0019 static StyleConfigData *self(); 0020 ~StyleConfigData() override; 0021 0022 /** 0023 Set ShadowStrength 0024 */ 0025 static 0026 void setShadowStrength( int v ) 0027 { 0028 if (v < 25) 0029 { 0030 qDebug() << "setShadowStrength: value " << v << " is less than the minimum value of 25"; 0031 v = 25; 0032 } 0033 0034 if (v > 255) 0035 { 0036 qDebug() << "setShadowStrength: value " << v << " is greater than the maximum value of 255"; 0037 v = 255; 0038 } 0039 0040 if (!self()->isShadowStrengthImmutable()) 0041 self()->mShadowStrength = v; 0042 } 0043 0044 /** 0045 Get ShadowStrength 0046 */ 0047 static 0048 int shadowStrength() 0049 { 0050 return self()->mShadowStrength; 0051 } 0052 0053 /** 0054 Is ShadowStrength Immutable 0055 */ 0056 static 0057 bool isShadowStrengthImmutable() 0058 { 0059 return self()->isImmutable( QStringLiteral( "ShadowStrength" ) ); 0060 } 0061 0062 /** 0063 Set ShadowSize 0064 */ 0065 static 0066 void setShadowSize( int v ) 0067 { 0068 if (!self()->isShadowSizeImmutable()) 0069 self()->mShadowSize = v; 0070 } 0071 0072 /** 0073 Get ShadowSize 0074 */ 0075 static 0076 int shadowSize() 0077 { 0078 return self()->mShadowSize; 0079 } 0080 0081 /** 0082 Is ShadowSize Immutable 0083 */ 0084 static 0085 bool isShadowSizeImmutable() 0086 { 0087 return self()->isImmutable( QStringLiteral( "ShadowSize" ) ); 0088 } 0089 0090 /** 0091 Set ShadowColor 0092 */ 0093 static 0094 void setShadowColor( const QColor & v ) 0095 { 0096 if (!self()->isShadowColorImmutable()) 0097 self()->mShadowColor = v; 0098 } 0099 0100 /** 0101 Get ShadowColor 0102 */ 0103 static 0104 QColor shadowColor() 0105 { 0106 return self()->mShadowColor; 0107 } 0108 0109 /** 0110 Is ShadowColor Immutable 0111 */ 0112 static 0113 bool isShadowColorImmutable() 0114 { 0115 return self()->isImmutable( QStringLiteral( "ShadowColor" ) ); 0116 } 0117 0118 /** 0119 Set OutlineCloseButton 0120 */ 0121 static 0122 void setOutlineCloseButton( bool v ) 0123 { 0124 if (!self()->isOutlineCloseButtonImmutable()) 0125 self()->mOutlineCloseButton = v; 0126 } 0127 0128 /** 0129 Get OutlineCloseButton 0130 */ 0131 static 0132 bool outlineCloseButton() 0133 { 0134 return self()->mOutlineCloseButton; 0135 } 0136 0137 /** 0138 Is OutlineCloseButton Immutable 0139 */ 0140 static 0141 bool isOutlineCloseButtonImmutable() 0142 { 0143 return self()->isImmutable( QStringLiteral( "OutlineCloseButton" ) ); 0144 } 0145 0146 /** 0147 Set AnimationsEnabled 0148 */ 0149 static 0150 void setAnimationsEnabled( bool v ) 0151 { 0152 if (!self()->isAnimationsEnabledImmutable()) 0153 self()->mAnimationsEnabled = v; 0154 } 0155 0156 /** 0157 Get AnimationsEnabled 0158 */ 0159 static 0160 bool animationsEnabled() 0161 { 0162 return self()->mAnimationsEnabled; 0163 } 0164 0165 /** 0166 Is AnimationsEnabled Immutable 0167 */ 0168 static 0169 bool isAnimationsEnabledImmutable() 0170 { 0171 return self()->isImmutable( QStringLiteral( "AnimationsEnabled" ) ); 0172 } 0173 0174 /** 0175 Set AnimationSteps 0176 */ 0177 static 0178 void setAnimationSteps( int v ) 0179 { 0180 if (!self()->isAnimationStepsImmutable()) 0181 self()->mAnimationSteps = v; 0182 } 0183 0184 /** 0185 Get AnimationSteps 0186 */ 0187 static 0188 int animationSteps() 0189 { 0190 return self()->mAnimationSteps; 0191 } 0192 0193 /** 0194 Is AnimationSteps Immutable 0195 */ 0196 static 0197 bool isAnimationStepsImmutable() 0198 { 0199 return self()->isImmutable( QStringLiteral( "AnimationSteps" ) ); 0200 } 0201 0202 /** 0203 Set AnimationsDuration 0204 */ 0205 static 0206 void setAnimationsDuration( int v ) 0207 { 0208 if (!self()->isAnimationsDurationImmutable()) 0209 self()->mAnimationsDuration = v; 0210 } 0211 0212 /** 0213 Get AnimationsDuration 0214 */ 0215 static 0216 int animationsDuration() 0217 { 0218 return self()->mAnimationsDuration; 0219 } 0220 0221 /** 0222 Is AnimationsDuration Immutable 0223 */ 0224 static 0225 bool isAnimationsDurationImmutable() 0226 { 0227 return self()->isImmutable( QStringLiteral( "AnimationsDuration" ) ); 0228 } 0229 0230 /** 0231 Set StackedWidgetTransitionsEnabled 0232 */ 0233 static 0234 void setStackedWidgetTransitionsEnabled( bool v ) 0235 { 0236 if (!self()->isStackedWidgetTransitionsEnabledImmutable()) 0237 self()->mStackedWidgetTransitionsEnabled = v; 0238 } 0239 0240 /** 0241 Get StackedWidgetTransitionsEnabled 0242 */ 0243 static 0244 bool stackedWidgetTransitionsEnabled() 0245 { 0246 return self()->mStackedWidgetTransitionsEnabled; 0247 } 0248 0249 /** 0250 Is StackedWidgetTransitionsEnabled Immutable 0251 */ 0252 static 0253 bool isStackedWidgetTransitionsEnabledImmutable() 0254 { 0255 return self()->isImmutable( QStringLiteral( "StackedWidgetTransitionsEnabled" ) ); 0256 } 0257 0258 /** 0259 Set ProgressBarAnimated 0260 */ 0261 static 0262 void setProgressBarAnimated( bool v ) 0263 { 0264 if (!self()->isProgressBarAnimatedImmutable()) 0265 self()->mProgressBarAnimated = v; 0266 } 0267 0268 /** 0269 Get ProgressBarAnimated 0270 */ 0271 static 0272 bool progressBarAnimated() 0273 { 0274 return self()->mProgressBarAnimated; 0275 } 0276 0277 /** 0278 Is ProgressBarAnimated Immutable 0279 */ 0280 static 0281 bool isProgressBarAnimatedImmutable() 0282 { 0283 return self()->isImmutable( QStringLiteral( "ProgressBarAnimated" ) ); 0284 } 0285 0286 /** 0287 Set ProgressBarBusyStepDuration 0288 */ 0289 static 0290 void setProgressBarBusyStepDuration( int v ) 0291 { 0292 if (!self()->isProgressBarBusyStepDurationImmutable()) 0293 self()->mProgressBarBusyStepDuration = v; 0294 } 0295 0296 /** 0297 Get ProgressBarBusyStepDuration 0298 */ 0299 static 0300 int progressBarBusyStepDuration() 0301 { 0302 return self()->mProgressBarBusyStepDuration; 0303 } 0304 0305 /** 0306 Is ProgressBarBusyStepDuration Immutable 0307 */ 0308 static 0309 bool isProgressBarBusyStepDurationImmutable() 0310 { 0311 return self()->isImmutable( QStringLiteral( "ProgressBarBusyStepDuration" ) ); 0312 } 0313 0314 /** 0315 Set ScrollBarAddLineButtons 0316 */ 0317 static 0318 void setScrollBarAddLineButtons( int v ) 0319 { 0320 if (!self()->isScrollBarAddLineButtonsImmutable()) 0321 self()->mScrollBarAddLineButtons = v; 0322 } 0323 0324 /** 0325 Get ScrollBarAddLineButtons 0326 */ 0327 static 0328 int scrollBarAddLineButtons() 0329 { 0330 return self()->mScrollBarAddLineButtons; 0331 } 0332 0333 /** 0334 Is ScrollBarAddLineButtons Immutable 0335 */ 0336 static 0337 bool isScrollBarAddLineButtonsImmutable() 0338 { 0339 return self()->isImmutable( QStringLiteral( "ScrollBarAddLineButtons" ) ); 0340 } 0341 0342 /** 0343 Set ScrollBarSubLineButtons 0344 */ 0345 static 0346 void setScrollBarSubLineButtons( int v ) 0347 { 0348 if (!self()->isScrollBarSubLineButtonsImmutable()) 0349 self()->mScrollBarSubLineButtons = v; 0350 } 0351 0352 /** 0353 Get ScrollBarSubLineButtons 0354 */ 0355 static 0356 int scrollBarSubLineButtons() 0357 { 0358 return self()->mScrollBarSubLineButtons; 0359 } 0360 0361 /** 0362 Is ScrollBarSubLineButtons Immutable 0363 */ 0364 static 0365 bool isScrollBarSubLineButtonsImmutable() 0366 { 0367 return self()->isImmutable( QStringLiteral( "ScrollBarSubLineButtons" ) ); 0368 } 0369 0370 /** 0371 Set MnemonicsMode 0372 */ 0373 static 0374 void setMnemonicsMode( int v ) 0375 { 0376 if (!self()->isMnemonicsModeImmutable()) 0377 self()->mMnemonicsMode = v; 0378 } 0379 0380 /** 0381 Get MnemonicsMode 0382 */ 0383 static 0384 int mnemonicsMode() 0385 { 0386 return self()->mMnemonicsMode; 0387 } 0388 0389 /** 0390 Is MnemonicsMode Immutable 0391 */ 0392 static 0393 bool isMnemonicsModeImmutable() 0394 { 0395 return self()->isImmutable( QStringLiteral( "MnemonicsMode" ) ); 0396 } 0397 0398 /** 0399 Set ToolBarDrawItemSeparator 0400 */ 0401 static 0402 void setToolBarDrawItemSeparator( bool v ) 0403 { 0404 if (!self()->isToolBarDrawItemSeparatorImmutable()) 0405 self()->mToolBarDrawItemSeparator = v; 0406 } 0407 0408 /** 0409 Get ToolBarDrawItemSeparator 0410 */ 0411 static 0412 bool toolBarDrawItemSeparator() 0413 { 0414 return self()->mToolBarDrawItemSeparator; 0415 } 0416 0417 /** 0418 Is ToolBarDrawItemSeparator Immutable 0419 */ 0420 static 0421 bool isToolBarDrawItemSeparatorImmutable() 0422 { 0423 return self()->isImmutable( QStringLiteral( "ToolBarDrawItemSeparator" ) ); 0424 } 0425 0426 /** 0427 Set ViewDrawFocusIndicator 0428 */ 0429 static 0430 void setViewDrawFocusIndicator( bool v ) 0431 { 0432 if (!self()->isViewDrawFocusIndicatorImmutable()) 0433 self()->mViewDrawFocusIndicator = v; 0434 } 0435 0436 /** 0437 Get ViewDrawFocusIndicator 0438 */ 0439 static 0440 bool viewDrawFocusIndicator() 0441 { 0442 return self()->mViewDrawFocusIndicator; 0443 } 0444 0445 /** 0446 Is ViewDrawFocusIndicator Immutable 0447 */ 0448 static 0449 bool isViewDrawFocusIndicatorImmutable() 0450 { 0451 return self()->isImmutable( QStringLiteral( "ViewDrawFocusIndicator" ) ); 0452 } 0453 0454 /** 0455 Set SliderDrawTickMarks 0456 */ 0457 static 0458 void setSliderDrawTickMarks( bool v ) 0459 { 0460 if (!self()->isSliderDrawTickMarksImmutable()) 0461 self()->mSliderDrawTickMarks = v; 0462 } 0463 0464 /** 0465 Get SliderDrawTickMarks 0466 */ 0467 static 0468 bool sliderDrawTickMarks() 0469 { 0470 return self()->mSliderDrawTickMarks; 0471 } 0472 0473 /** 0474 Is SliderDrawTickMarks Immutable 0475 */ 0476 static 0477 bool isSliderDrawTickMarksImmutable() 0478 { 0479 return self()->isImmutable( QStringLiteral( "SliderDrawTickMarks" ) ); 0480 } 0481 0482 /** 0483 Set ViewDrawTreeBranchLines 0484 */ 0485 static 0486 void setViewDrawTreeBranchLines( bool v ) 0487 { 0488 if (!self()->isViewDrawTreeBranchLinesImmutable()) 0489 self()->mViewDrawTreeBranchLines = v; 0490 } 0491 0492 /** 0493 Get ViewDrawTreeBranchLines 0494 */ 0495 static 0496 bool viewDrawTreeBranchLines() 0497 { 0498 return self()->mViewDrawTreeBranchLines; 0499 } 0500 0501 /** 0502 Is ViewDrawTreeBranchLines Immutable 0503 */ 0504 static 0505 bool isViewDrawTreeBranchLinesImmutable() 0506 { 0507 return self()->isImmutable( QStringLiteral( "ViewDrawTreeBranchLines" ) ); 0508 } 0509 0510 /** 0511 Set ViewInvertSortIndicator 0512 */ 0513 static 0514 void setViewInvertSortIndicator( bool v ) 0515 { 0516 if (!self()->isViewInvertSortIndicatorImmutable()) 0517 self()->mViewInvertSortIndicator = v; 0518 } 0519 0520 /** 0521 Get ViewInvertSortIndicator 0522 */ 0523 static 0524 bool viewInvertSortIndicator() 0525 { 0526 return self()->mViewInvertSortIndicator; 0527 } 0528 0529 /** 0530 Is ViewInvertSortIndicator Immutable 0531 */ 0532 static 0533 bool isViewInvertSortIndicatorImmutable() 0534 { 0535 return self()->isImmutable( QStringLiteral( "ViewInvertSortIndicator" ) ); 0536 } 0537 0538 /** 0539 Set TabBarDrawCenteredTabs 0540 */ 0541 static 0542 void setTabBarDrawCenteredTabs( bool v ) 0543 { 0544 if (!self()->isTabBarDrawCenteredTabsImmutable()) 0545 self()->mTabBarDrawCenteredTabs = v; 0546 } 0547 0548 /** 0549 Get TabBarDrawCenteredTabs 0550 */ 0551 static 0552 bool tabBarDrawCenteredTabs() 0553 { 0554 return self()->mTabBarDrawCenteredTabs; 0555 } 0556 0557 /** 0558 Is TabBarDrawCenteredTabs Immutable 0559 */ 0560 static 0561 bool isTabBarDrawCenteredTabsImmutable() 0562 { 0563 return self()->isImmutable( QStringLiteral( "TabBarDrawCenteredTabs" ) ); 0564 } 0565 0566 /** 0567 Set DockWidgetDrawFrame 0568 */ 0569 static 0570 void setDockWidgetDrawFrame( bool v ) 0571 { 0572 if (!self()->isDockWidgetDrawFrameImmutable()) 0573 self()->mDockWidgetDrawFrame = v; 0574 } 0575 0576 /** 0577 Get DockWidgetDrawFrame 0578 */ 0579 static 0580 bool dockWidgetDrawFrame() 0581 { 0582 return self()->mDockWidgetDrawFrame; 0583 } 0584 0585 /** 0586 Is DockWidgetDrawFrame Immutable 0587 */ 0588 static 0589 bool isDockWidgetDrawFrameImmutable() 0590 { 0591 return self()->isImmutable( QStringLiteral( "DockWidgetDrawFrame" ) ); 0592 } 0593 0594 /** 0595 Set SidePanelDrawFrame 0596 */ 0597 static 0598 void setSidePanelDrawFrame( bool v ) 0599 { 0600 if (!self()->isSidePanelDrawFrameImmutable()) 0601 self()->mSidePanelDrawFrame = v; 0602 } 0603 0604 /** 0605 Get SidePanelDrawFrame 0606 */ 0607 static 0608 bool sidePanelDrawFrame() 0609 { 0610 return self()->mSidePanelDrawFrame; 0611 } 0612 0613 /** 0614 Is SidePanelDrawFrame Immutable 0615 */ 0616 static 0617 bool isSidePanelDrawFrameImmutable() 0618 { 0619 return self()->isImmutable( QStringLiteral( "SidePanelDrawFrame" ) ); 0620 } 0621 0622 /** 0623 Set MenuItemDrawStrongFocus 0624 */ 0625 static 0626 void setMenuItemDrawStrongFocus( bool v ) 0627 { 0628 if (!self()->isMenuItemDrawStrongFocusImmutable()) 0629 self()->mMenuItemDrawStrongFocus = v; 0630 } 0631 0632 /** 0633 Get MenuItemDrawStrongFocus 0634 */ 0635 static 0636 bool menuItemDrawStrongFocus() 0637 { 0638 return self()->mMenuItemDrawStrongFocus; 0639 } 0640 0641 /** 0642 Is MenuItemDrawStrongFocus Immutable 0643 */ 0644 static 0645 bool isMenuItemDrawStrongFocusImmutable() 0646 { 0647 return self()->isImmutable( QStringLiteral( "MenuItemDrawStrongFocus" ) ); 0648 } 0649 0650 /** 0651 Set WindowDragMode 0652 */ 0653 static 0654 void setWindowDragMode( int v ) 0655 { 0656 if (!self()->isWindowDragModeImmutable()) 0657 self()->mWindowDragMode = v; 0658 } 0659 0660 /** 0661 Get WindowDragMode 0662 */ 0663 static 0664 int windowDragMode() 0665 { 0666 return self()->mWindowDragMode; 0667 } 0668 0669 /** 0670 Is WindowDragMode Immutable 0671 */ 0672 static 0673 bool isWindowDragModeImmutable() 0674 { 0675 return self()->isImmutable( QStringLiteral( "WindowDragMode" ) ); 0676 } 0677 0678 /** 0679 Set WindowDragWhiteList 0680 */ 0681 static 0682 void setWindowDragWhiteList( const QStringList & v ) 0683 { 0684 if (!self()->isWindowDragWhiteListImmutable()) 0685 self()->mWindowDragWhiteList = v; 0686 } 0687 0688 /** 0689 Get WindowDragWhiteList 0690 */ 0691 static 0692 QStringList windowDragWhiteList() 0693 { 0694 return self()->mWindowDragWhiteList; 0695 } 0696 0697 /** 0698 Is WindowDragWhiteList Immutable 0699 */ 0700 static 0701 bool isWindowDragWhiteListImmutable() 0702 { 0703 return self()->isImmutable( QStringLiteral( "WindowDragWhiteList" ) ); 0704 } 0705 0706 /** 0707 Set WindowDragBlackList 0708 */ 0709 static 0710 void setWindowDragBlackList( const QStringList & v ) 0711 { 0712 if (!self()->isWindowDragBlackListImmutable()) 0713 self()->mWindowDragBlackList = v; 0714 } 0715 0716 /** 0717 Get WindowDragBlackList 0718 */ 0719 static 0720 QStringList windowDragBlackList() 0721 { 0722 return self()->mWindowDragBlackList; 0723 } 0724 0725 /** 0726 Is WindowDragBlackList Immutable 0727 */ 0728 static 0729 bool isWindowDragBlackListImmutable() 0730 { 0731 return self()->isImmutable( QStringLiteral( "WindowDragBlackList" ) ); 0732 } 0733 0734 /** 0735 Set SplitterProxyEnabled 0736 */ 0737 static 0738 void setSplitterProxyEnabled( bool v ) 0739 { 0740 if (!self()->isSplitterProxyEnabledImmutable()) 0741 self()->mSplitterProxyEnabled = v; 0742 } 0743 0744 /** 0745 Get SplitterProxyEnabled 0746 */ 0747 static 0748 bool splitterProxyEnabled() 0749 { 0750 return self()->mSplitterProxyEnabled; 0751 } 0752 0753 /** 0754 Is SplitterProxyEnabled Immutable 0755 */ 0756 static 0757 bool isSplitterProxyEnabledImmutable() 0758 { 0759 return self()->isImmutable( QStringLiteral( "SplitterProxyEnabled" ) ); 0760 } 0761 0762 /** 0763 Set SplitterProxyWidth 0764 */ 0765 static 0766 void setSplitterProxyWidth( int v ) 0767 { 0768 if (!self()->isSplitterProxyWidthImmutable()) 0769 self()->mSplitterProxyWidth = v; 0770 } 0771 0772 /** 0773 Get SplitterProxyWidth 0774 */ 0775 static 0776 int splitterProxyWidth() 0777 { 0778 return self()->mSplitterProxyWidth; 0779 } 0780 0781 /** 0782 Is SplitterProxyWidth Immutable 0783 */ 0784 static 0785 bool isSplitterProxyWidthImmutable() 0786 { 0787 return self()->isImmutable( QStringLiteral( "SplitterProxyWidth" ) ); 0788 } 0789 0790 /** 0791 Set WidgetExplorerEnabled 0792 */ 0793 static 0794 void setWidgetExplorerEnabled( bool v ) 0795 { 0796 if (!self()->isWidgetExplorerEnabledImmutable()) 0797 self()->mWidgetExplorerEnabled = v; 0798 } 0799 0800 /** 0801 Get WidgetExplorerEnabled 0802 */ 0803 static 0804 bool widgetExplorerEnabled() 0805 { 0806 return self()->mWidgetExplorerEnabled; 0807 } 0808 0809 /** 0810 Is WidgetExplorerEnabled Immutable 0811 */ 0812 static 0813 bool isWidgetExplorerEnabledImmutable() 0814 { 0815 return self()->isImmutable( QStringLiteral( "WidgetExplorerEnabled" ) ); 0816 } 0817 0818 /** 0819 Set DrawWidgetRects 0820 */ 0821 static 0822 void setDrawWidgetRects( bool v ) 0823 { 0824 if (!self()->isDrawWidgetRectsImmutable()) 0825 self()->mDrawWidgetRects = v; 0826 } 0827 0828 /** 0829 Get DrawWidgetRects 0830 */ 0831 static 0832 bool drawWidgetRects() 0833 { 0834 return self()->mDrawWidgetRects; 0835 } 0836 0837 /** 0838 Is DrawWidgetRects Immutable 0839 */ 0840 static 0841 bool isDrawWidgetRectsImmutable() 0842 { 0843 return self()->isImmutable( QStringLiteral( "DrawWidgetRects" ) ); 0844 } 0845 0846 /** 0847 Set MenuOpacity 0848 */ 0849 static 0850 void setMenuOpacity( int v ) 0851 { 0852 if (!self()->isMenuOpacityImmutable()) 0853 self()->mMenuOpacity = v; 0854 } 0855 0856 /** 0857 Get MenuOpacity 0858 */ 0859 static 0860 int menuOpacity() 0861 { 0862 return self()->mMenuOpacity; 0863 } 0864 0865 /** 0866 Is MenuOpacity Immutable 0867 */ 0868 static 0869 bool isMenuOpacityImmutable() 0870 { 0871 return self()->isImmutable( QStringLiteral( "MenuOpacity" ) ); 0872 } 0873 0874 protected: 0875 StyleConfigData(); 0876 friend class StyleConfigDataHelper; 0877 0878 0879 // Common 0880 int mShadowStrength; 0881 int mShadowSize; 0882 QColor mShadowColor; 0883 bool mOutlineCloseButton; 0884 0885 // Style 0886 bool mAnimationsEnabled; 0887 int mAnimationSteps; 0888 int mAnimationsDuration; 0889 bool mStackedWidgetTransitionsEnabled; 0890 bool mProgressBarAnimated; 0891 int mProgressBarBusyStepDuration; 0892 int mScrollBarAddLineButtons; 0893 int mScrollBarSubLineButtons; 0894 int mMnemonicsMode; 0895 bool mToolBarDrawItemSeparator; 0896 bool mViewDrawFocusIndicator; 0897 bool mSliderDrawTickMarks; 0898 bool mViewDrawTreeBranchLines; 0899 bool mViewInvertSortIndicator; 0900 bool mTabBarDrawCenteredTabs; 0901 bool mDockWidgetDrawFrame; 0902 bool mSidePanelDrawFrame; 0903 bool mMenuItemDrawStrongFocus; 0904 int mWindowDragMode; 0905 QStringList mWindowDragWhiteList; 0906 QStringList mWindowDragBlackList; 0907 bool mSplitterProxyEnabled; 0908 int mSplitterProxyWidth; 0909 bool mWidgetExplorerEnabled; 0910 bool mDrawWidgetRects; 0911 int mMenuOpacity; 0912 0913 private: 0914 }; 0915 0916 } 0917 0918 #endif 0919