Updated core
[LibreOffice.git] / vcl / inc / toolbox.h
blob029d3ec481818e0ed96c5f0d5960589eaee4087e
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
20 #ifndef INCLUDED_VCL_INC_TOOLBOX_H
21 #define INCLUDED_VCL_INC_TOOLBOX_H
23 #include <rtl/ustring.hxx>
24 #include <tools/gen.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>
31 #include <vector>
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
45 class Window;
47 // ----------------
48 // - ImplToolItem -
49 // ----------------
51 struct ImplToolItem
53 Window* mpWindow;
54 void* mpUserData;
55 Image maImage;
56 Image maHighImage;
57 long mnImageAngle;
58 bool mbMirrorMode;
59 OUString maText;
60 OUString maQuickHelpText;
61 OUString maHelpText;
62 OUString maCommandStr;
63 OString maHelpId;
64 Rectangle maRect;
65 Rectangle maCalcRect;
66 /// Widget layout may request size; set it as the minimal size (like, the item will always have at least this size).
67 Size maMinimalItemSize;
68 /// The overall horizontal item size, including one or more of [image size + textlength + dropdown arrow]
69 Size maItemSize;
70 long mnSepSize;
71 long mnDropDownArrowWidth;
72 /// Size of the content (bitmap or text, without dropdown) that we have in the item.
73 Size maContentSize;
74 ToolBoxItemType meType;
75 ToolBoxItemBits mnBits;
76 TriState meState;
77 sal_uInt16 mnId;
78 sal_Bool mbEnabled:1,
79 mbVisible:1,
80 mbEmptyBtn:1,
81 mbShowWindow:1,
82 mbBreak:1,
83 mbVisibleText:1; // indicates if text will definitely be drawn, influences dropdown pos
85 ImplToolItem();
86 ImplToolItem( sal_uInt16 nItemId, const Image& rImage,
87 ToolBoxItemBits nItemBits );
88 ImplToolItem( sal_uInt16 nItemId, const OUString& rTxt,
89 ToolBoxItemBits nItemBits );
90 ImplToolItem( sal_uInt16 nItemId, const Image& rImage,
91 const OUString& rTxt,
92 ToolBoxItemBits nItemBits );
93 ~ImplToolItem();
95 ImplToolItem( const ImplToolItem& );
96 ImplToolItem& operator=(const ImplToolItem&);
98 // returns the size of a item, taking toolbox orientation into account
99 // the default size is the precomputed size for standard items
100 // ie those that are just ordinary buttons (no windows or text etc.)
101 // bCheckMaxWidth indicates that item windows must not exceed maxWidth in which case they will be painted as buttons
102 Size GetSize( sal_Bool bHorz, sal_Bool bCheckMaxWidth, long maxWidth, const Size& rDefaultSize );
104 // only useful for buttons: returns if the text or image part or both can be drawn according to current button drawing style
105 void DetermineButtonDrawStyle( ButtonType eButtonType, sal_Bool& rbImage, sal_Bool& rbText ) const;
107 // returns the rectangle which contains the drop down arrow
108 // or an empty rect if there is none
109 // bHorz denotes the toolbox alignment
110 Rectangle GetDropDownRect( sal_Bool bHorz ) const;
112 // returns sal_True if the toolbar item is currently clipped, which can happen for docked toolbars
113 sal_Bool IsClipped() const;
115 // returns sal_True if the toolbar item is currently hidden i.e. they are unchecked in the toolbar Customize menu
116 sal_Bool IsItemHidden() const;
118 private:
119 void init(sal_uInt16 nItemId, ToolBoxItemBits nItemBits, sal_Bool bEmptyBtn);
122 namespace vcl
125 struct ToolBoxLayoutData : public ControlLayoutData
127 std::vector< sal_uInt16 > m_aLineItemIds;
128 std::vector< sal_uInt16 > m_aLineItemPositions;
132 } /* namespace vcl */
135 struct ImplToolBoxPrivateData
137 vcl::ToolBoxLayoutData* m_pLayoutData;
138 std::vector< ImplToolItem > m_aItems;
140 ImplToolBoxPrivateData();
141 ~ImplToolBoxPrivateData();
143 void ImplClearLayoutData() { delete m_pLayoutData; m_pLayoutData = NULL; }
145 // called when dropdown items are clicked
146 Link maDropdownClickHdl;
147 Timer maDropdownTimer; // for opening dropdown items on "long click"
149 // large or small buttons ?
150 ToolBoxButtonSize meButtonSize;
152 // the optional custom menu
153 PopupMenu* mpMenu;
154 sal_uInt16 maMenuType;
155 sal_uIntPtr mnEventId;
157 // called when menu button is clicked and before the popup menu is executed
158 Link maMenuButtonHdl;
160 // a dummy item representing the custom menu button
161 ImplToolItem maMenubuttonItem;
162 long mnMenuButtonWidth;
164 Wallpaper maDisplayBackground;
166 // support for highcontrast
167 vcl::IImageListProvider* mpImageListProvider;
168 vcl::ImageListType meImageListType;
170 sal_Bool mbIsLocked:1, // keeps last lock state from ImplDockingWindowWrapper
171 mbAssumeDocked:1, // only used during calculations to override current floating/popup mode
172 mbAssumeFloating:1,
173 mbAssumePopupMode:1,
174 mbKeyInputDisabled:1, // no KEY input if all items disabled, closing/docking will be allowed though
175 mbIsPaintLocked:1, // don't allow paints
176 mbMenubuttonSelected:1, // menu button is highlighted
177 mbPageScroll:1, // determines if we scroll a page at a time
178 mbNativeButtons:1, // system supports native toolbar buttons
179 mbWillUsePopupMode:1, // this toolbox will be opened in popup mode
180 mbDropDownByKeyboard:1; // tells whether a dropdown was started by key input
184 #endif // INCLUDED_VCL_INC_TOOLBOX_H
186 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */