From af6b35e2ebfea3633e92b6f9496dd06ef8523c79 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 31 Oct 2012 23:30:53 -0500 Subject: [PATCH] Automated update from Qt3 --- src/kernel/ntqstyle.h | 6 ++++++ src/styles/qcommonstyle.cpp | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/src/kernel/ntqstyle.h b/src/kernel/ntqstyle.h index 994eff81..90f4eacf 100644 --- a/src/kernel/ntqstyle.h +++ b/src/kernel/ntqstyle.h @@ -178,6 +178,11 @@ class TQStyleControlElementDockWidgetData { TQt::Orientation areaOrientation; }; +class TQStyleControlElementToolBarWidgetData { + public: + TQt::Orientation orientation; +}; + class TQStyleControlElementGenericWidgetData { public: TQStringList widgetObjectTypes; @@ -270,6 +275,7 @@ class Q_EXPORT TQStyleControlElementData { TQ_UINT32 frameStyle; TQRect sliderRect; TQPainter* activePainter; + TQStyleControlElementToolBarWidgetData toolBarData; public: TQStyleControlElementData(); diff --git a/src/styles/qcommonstyle.cpp b/src/styles/qcommonstyle.cpp index 213f0478..402354c6 100644 --- a/src/styles/qcommonstyle.cpp +++ b/src/styles/qcommonstyle.cpp @@ -576,6 +576,10 @@ TQStyleControlElementData populateControlElementDataFromWidget(const TQWidget* w } ceData.dwData.closeEnabled = dw->isCloseEnabled(); } + const TQToolBar * toolbar = dynamic_cast(parentWidget); + if (toolbar) { + ceData.toolBarData.orientation = toolbar->orientation(); + } } TQCheckListItem *item = opt.checkListItem();