summaryrefslogtreecommitdiffstats
path: root/src/kernel
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-11-03 20:34:16 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-11-03 20:34:16 -0500
commit380f29a7b4539f4b22e37774389f0845a742ad24 (patch)
treeb43d69e05e5147da556df01368e115193a5cd3cb /src/kernel
parent180abfff4d31bc8db66fea92cf070ff21b7a5e2f (diff)
downloadqt3-380f29a7b4539f4b22e37774389f0845a742ad24.tar.gz
qt3-380f29a7b4539f4b22e37774389f0845a742ad24.zip
Extend style information structures slightly
Diffstat (limited to 'src/kernel')
-rw-r--r--src/kernel/qstyle.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/kernel/qstyle.h b/src/kernel/qstyle.h
index 111a987..f068462 100644
--- a/src/kernel/qstyle.h
+++ b/src/kernel/qstyle.h
@@ -202,6 +202,7 @@ class QStyleControlElementGenericWidgetData {
QPixmap icon;
QPalette palette;
QFont font;
+ QColor paletteBgColor;
};
class QStyleControlElementTabBarData {
@@ -276,6 +277,9 @@ class Q_EXPORT QStyleControlElementData {
QRect sliderRect;
QPainter* activePainter;
QStyleControlElementToolBarWidgetData toolBarData;
+ Q_UINT32 comboBoxListBoxFlags;
+ QColor paletteBgColor;
+ Q_UINT32 parentWidgetFlags;
public:
QStyleControlElementData();
@@ -1050,6 +1054,12 @@ public:
// int - width of menu check column
SH_MenuIndicatorColumnWidth,
+ // bool - whether or not the lower two button drawing areas should be combined into one
+ SH_ScrollBar_CombineAddLineRegionDrawingAreas,
+
+ // bool - whether or not the upper two button drawing areas should be combined into one
+ SH_ScrollBar_CombineSubLineRegionDrawingAreas,
+
// do not add any values below/greater than this
SH_CustomBase = 0xf0000000
};