summaryrefslogtreecommitdiff
path: root/vcl/inc/svdata.hxx
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@suse.cz>2012-05-11 14:18:23 +0200
committerJan Holesovsky <kendy@suse.cz>2012-05-15 08:39:31 +0200
commitedec6d134a4265fe6c69f3e51a173a5cd395c615 (patch)
treee7373d063b41064358a1d35c8842ce9576fd68ca /vcl/inc/svdata.hxx
parent9d2b1ec8e85b0786eae452198a7f57a3c00ec33b (diff)
Pack the bools.
Change-Id: I71bf94a87f8d7092b472e7a8eb58045a82749c29
Diffstat (limited to 'vcl/inc/svdata.hxx')
-rw-r--r--vcl/inc/svdata.hxx48
1 files changed, 24 insertions, 24 deletions
diff --git a/vcl/inc/svdata.hxx b/vcl/inc/svdata.hxx
index b6a31b0e2be4..242d58cea052 100644
--- a/vcl/inc/svdata.hxx
+++ b/vcl/inc/svdata.hxx
@@ -300,30 +300,30 @@ struct ImplSVHelpData
struct ImplSVNWFData
{
- bool mbMenuBarDockingAreaCommonBG; // e.g. WinXP default theme
- bool mbDockingAreaSeparateTB; // individual toolbar backgrounds
- // instead of one for docking area
- bool mbToolboxDropDownSeparate; // two adjacent buttons for
- // toolbox dropdown buttons
- int mnMenuFormatExtraBorder; // inner popup menu border
- bool mbFlatMenu; // no popup 3D border
- ::Color maMenuBarHighlightTextColor; // override higlight text color
- // in menubar if not transparent
- bool mbOpenMenuOnF10; // on gnome the first menu opens on F10
- bool mbNoFocusRects; // on Aqua focus rects are not used
- bool mbNoBoldTabFocus; // on Aqua and Gnome the focused tab has not bold text
- bool mbCenteredTabs; // on Aqua, tabs are centered
- bool mbNoActiveTabTextRaise; // on Aqua the text for the selected tab
- // should not "jump up" a pixel
- bool mbProgressNeedsErase; // set true for platforms that should draw the
- // window background before drawing the native
- // progress bar
- bool mbCheckBoxNeedsErase; // set true for platforms that should draw the
- // window background before drawing the native
- // checkbox
- bool mbScrollbarJumpPage; // true for "jump to here" behavior
- int mnStatusBarLowerRightOffset; // amount in pixel to avoid in the lower righthand corner
- bool mbCanDrawWidgetAnySize; // set to true currently on gtk
+ int mnStatusBarLowerRightOffset; // amount in pixel to avoid in the lower righthand corner
+ int mnMenuFormatExtraBorder; // inner popup menu border
+ ::Color maMenuBarHighlightTextColor; // override higlight text color
+ // in menubar if not transparent
+ bool mbMenuBarDockingAreaCommonBG:1; // e.g. WinXP default theme
+ bool mbDockingAreaSeparateTB:1; // individual toolbar backgrounds
+ // instead of one for docking area
+ bool mbToolboxDropDownSeparate:1; // two adjacent buttons for
+ // toolbox dropdown buttons
+ bool mbFlatMenu:1; // no popup 3D border
+ bool mbOpenMenuOnF10:1; // on gnome the first menu opens on F10
+ bool mbNoFocusRects:1; // on Aqua focus rects are not used
+ bool mbNoBoldTabFocus:1; // on Aqua and Gnome the focused tab has not bold text
+ bool mbCenteredTabs:1; // on Aqua, tabs are centered
+ bool mbNoActiveTabTextRaise:1; // on Aqua the text for the selected tab
+ // should not "jump up" a pixel
+ bool mbProgressNeedsErase:1; // set true for platforms that should draw the
+ // window background before drawing the native
+ // progress bar
+ bool mbCheckBoxNeedsErase:1; // set true for platforms that should draw the
+ // window background before drawing the native
+ // checkbox
+ bool mbScrollbarJumpPage:1; // true for "jump to here" behavior
+ bool mbCanDrawWidgetAnySize:1; // set to true currently on gtk
};