1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
23 #include <tools/gen.hxx>
24 #include <tools/string.hxx>
25 #include <tools/solar.h>
26 #include <vcl/image.hxx>
27 #include <vcl/toolbox.hxx>
28 #include <vcl/controllayout.hxx>
29 #include <vcl/ImageListProvider.hxx>
33 #define TB_DROPDOWNARROWWIDTH 11
35 #define TB_MENUBUTTON_SIZE 12
36 #define TB_MENUBUTTON_OFFSET 2
38 #define TB_SMALLIMAGESIZE 16
40 #define TB_LARGEIMAGESIZE 26
41 #define TB_LARGEIMAGESIZE_INDUSTRIAL 24
42 #define TB_LARGEIMAGESIZE_CRYSTAL 22
43 #define TB_LARGEIMAGESIZE_OXYGEN 22
60 XubString maQuickHelpText
;
66 // the overall horizontal item size, including one or more of [image size + textlength + dropdown arrow]
69 long mnDropDownArrowWidth
;
70 ToolBoxItemType meType
;
71 ToolBoxItemBits mnBits
;
79 mbVisibleText
:1; // indicates if text will definitely be drawn, influences dropdown pos
82 ImplToolItem( sal_uInt16 nItemId
, const Image
& rImage
,
83 ToolBoxItemBits nItemBits
);
84 ImplToolItem( sal_uInt16 nItemId
, const XubString
& rTxt
,
85 ToolBoxItemBits nItemBits
);
86 ImplToolItem( sal_uInt16 nItemId
, const Image
& rImage
,
87 const XubString
& rTxt
,
88 ToolBoxItemBits nItemBits
);
91 ImplToolItem( const ImplToolItem
& );
92 ImplToolItem
& operator=(const ImplToolItem
&);
94 // returns the size of a item, taking toolbox orientation into account
95 // the default size is the precomputed size for standard items
96 // ie those that are just ordinary buttons (no windows or text etc.)
97 // bCheckMaxWidth indicates that item windows must not exceed maxWidth in which case they will be painted as buttons
98 Size
GetSize( sal_Bool bHorz
, sal_Bool bCheckMaxWidth
, long maxWidth
, const Size
& rDefaultSize
);
100 // only useful for buttons: returns if the text or image part or both can be drawn according to current button drawing style
101 void DetermineButtonDrawStyle( ButtonType eButtonType
, sal_Bool
& rbImage
, sal_Bool
& rbText
) const;
103 // returns the rectangle which contains the drop down arrow
104 // or an empty rect if there is none
105 // bHorz denotes the toolbox alignment
106 Rectangle
GetDropDownRect( sal_Bool bHorz
) const;
108 // returns sal_True if the toolbar item is currently clipped, which can happen for docked toolbars
109 sal_Bool
IsClipped() const;
112 void init(sal_uInt16 nItemId
, ToolBoxItemBits nItemBits
, sal_Bool bEmptyBtn
);
118 struct ToolBoxLayoutData
: public ControlLayoutData
120 std::vector
< sal_uInt16
> m_aLineItemIds
;
121 std::vector
< sal_uInt16
> m_aLineItemPositions
;
125 } /* namespace vcl */
128 struct ImplToolBoxPrivateData
130 vcl::ToolBoxLayoutData
* m_pLayoutData
;
131 std::vector
< ImplToolItem
> m_aItems
;
133 ImplToolBoxPrivateData();
134 ~ImplToolBoxPrivateData();
136 void ImplClearLayoutData() { delete m_pLayoutData
; m_pLayoutData
= NULL
; }
138 // called when dropdown items are clicked
139 Link maDropdownClickHdl
;
140 Timer maDropdownTimer
; // for opening dropdown items on "long click"
142 // large or small buttons ?
143 ToolBoxButtonSize meButtonSize
;
145 // the optional custom menu
147 sal_uInt16 maMenuType
;
148 sal_uIntPtr mnEventId
;
150 // called when menu button is clicked and before the popup menu is executed
151 Link maMenuButtonHdl
;
153 // a dummy item representing the custom menu button
154 ImplToolItem maMenubuttonItem
;
155 long mnMenuButtonWidth
;
157 Wallpaper maDisplayBackground
;
159 // support for highcontrast
160 vcl::IImageListProvider
* mpImageListProvider
;
161 vcl::ImageListType meImageListType
;
163 sal_Bool mbIsLocked
:1, // keeps last lock state from ImplDockingWindowWrapper
164 mbAssumeDocked
:1, // only used during calculations to override current floating/popup mode
167 mbKeyInputDisabled
:1, // no KEY input if all items disabled, closing/docking will be allowed though
168 mbIsPaintLocked
:1, // don't allow paints
169 mbMenubuttonSelected
:1, // menu button is highlighted
170 mbPageScroll
:1, // determines if we scroll a page at a time
171 mbNativeButtons
:1, // system supports native toolbar buttons
172 mbWillUsePopupMode
:1, // this toolbox will be opened in popup mode
173 mbDropDownByKeyboard
:1; // tells whether a dropdown was started by key input
177 #endif // _SV_TOOLBOX_H
179 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */