TGUI 1.8
Loading...
Searching...
No Matches
MenuWidgetBase.hpp
1
2//
3// TGUI - Texus' Graphical User Interface
4// Copyright (C) 2012-2025 Bruno Van de Velde (vdv_b@tgui.eu)
5//
6// This software is provided 'as-is', without any express or implied warranty.
7// In no event will the authors be held liable for any damages arising from the use of this software.
8//
9// Permission is granted to anyone to use this software for any purpose,
10// including commercial applications, and to alter it and redistribute it freely,
11// subject to the following restrictions:
12//
13// 1. The origin of this software must not be misrepresented;
14// you must not claim that you wrote the original software.
15// If you use this software in a product, an acknowledgment
16// in the product documentation would be appreciated but is not required.
17//
18// 2. Altered source versions must be plainly marked as such,
19// and must not be misrepresented as being the original software.
20//
21// 3. This notice may not be removed or altered from any source distribution.
22//
24
25#ifndef TGUI_MENU_WIDGET_BASE_HPP
26#define TGUI_MENU_WIDGET_BASE_HPP
27
28#include <TGUI/Widget.hpp>
29#include <TGUI/Renderers/MenuWidgetBaseRenderer.hpp>
30#include <TGUI/Text.hpp>
31
33
34TGUI_MODULE_EXPORT namespace tgui
35{
37
43 class TGUI_API MenuWidgetBase : public Widget
44 {
45 public:
46
49 {
50 String text;
51 bool enabled;
52 std::vector<GetMenusElement> menuItems;
53 };
54
55 public:
57 // Copy constructor
59 MenuWidgetBase(const MenuWidgetBase& other);
60
62 // Move constructor
64 MenuWidgetBase(MenuWidgetBase&& other) noexcept;
65
67 // Copy assignment operator
69 MenuWidgetBase& operator=(const MenuWidgetBase& other);
70
72 // Move assignment operator
74 MenuWidgetBase& operator=(MenuWidgetBase&& other) noexcept;
75
80 TGUI_NODISCARD MenuWidgetBaseRenderer* getSharedRenderer() override;
81 TGUI_NODISCARD const MenuWidgetBaseRenderer* getSharedRenderer() const override;
82
88 TGUI_NODISCARD MenuWidgetBaseRenderer* getRenderer() override;
89
93 virtual void closeMenu() = 0;
94
96 protected:
97
98 struct Menu
99 {
100 Text text;
101 bool enabled = true;
102 int selectedMenuItem = -1;
103 std::vector<Menu> menuItems;
104 };
105
107 protected:
108
114 MenuWidgetBase(const char* typeName, bool initRenderer);
115
125 TGUI_NODISCARD Signal& getSignal(String signalName) override;
126
132 void rendererChanged(const String& property) override;
133
136 void createMenu(std::vector<Menu>& menus, const String& text);
137
141 TGUI_NODISCARD Menu* findMenuItemParent(const std::vector<String>& hierarchy, unsigned int parentIndex, std::vector<Menu>& menus, bool createParents);
142
146 TGUI_NODISCARD const Menu* findMenuItemParent(const std::vector<String>& hierarchy, unsigned int parentIndex, const std::vector<Menu>& menus) const;
147
150 TGUI_NODISCARD Menu* findMenuItem(const std::vector<String>& hierarchy, std::vector<Menu>& menus);
151
154 TGUI_NODISCARD const Menu* findMenuItem(const std::vector<String>& hierarchy, const std::vector<Menu>& menus) const;
155
158 void loadMenus(const std::unique_ptr<DataIO::Node>& node, std::vector<Menu>& menus);
159
162 void closeSubMenus(std::vector<Menu>& menus, int& selectedMenu);
163
165 void updateMenuTextColor(Menu& menu, bool selected);
166
168 void updateTextColors(std::vector<Menu>& menus, int selectedMenu);
169
171 void updateTextOpacity(std::vector<Menu>& menus);
172
174 void updateTextFont(std::vector<Menu>& menus);
175
178 TGUI_NODISCARD float calculateMenuWidth(const Menu& menu) const;
179
182 TGUI_NODISCARD float getMenuItemHeight(const Menu& menuItem) const;
183
186 TGUI_NODISCARD float calculateOpenMenuHeight(const std::vector<Menu>& menuItems) const;
187
189 TGUI_NODISCARD Vector2f calculateSubmenuOffset(const Menu& menu, float globalLeftPos, float menuWidth, float subMenuWidth, bool& openSubMenuToRight) const;
190
192 TGUI_NODISCARD bool isMouseOnTopOfMenu(Vector2f menuPos, Vector2f mousePos, bool openSubMenuToRight, const Menu& menu, float menuWidth) const;
193
195 TGUI_NODISCARD bool findMenuItemBelowMouse(Vector2f menuPos, Vector2f mousePos, bool openSubMenuToRight, Menu& menu, float menuWidth, Menu** resultMenu, std::size_t* resultSelectedMenuItem);
196
198 static bool isSeparator(const Menu& menuItem);
199
201 static bool removeMenuImpl(const std::vector<String>& hierarchy, bool removeParentsWhenEmpty, unsigned int parentIndex, std::vector<Menu>& menus);
202
204 static bool removeSubMenusImpl(const std::vector<String>& hierarchy, unsigned int parentIndex, std::vector<Menu>& menus);
205
207 static void setTextSizeImpl(std::vector<Menu>& menus, unsigned int textSize);
208
210 static std::vector<GetMenusElement> getMenusImpl(const std::vector<Menu>& menus);
211
213 static void saveMenus(const std::unique_ptr<DataIO::Node>& parentNode, const std::vector<Menu>& menus);
214
217 void drawMenu(BackendRenderTarget& target, RenderStates states, const Menu& menu, float menuWidth, float globalLeftPos, bool openSubMenuToRight) const;
218
220 void leftMouseReleasedOnMenu(const Menu* menu);
221
223 bool isMouseOnOpenMenu(Vector2f pos, const Menu& menu, Vector2f menuOffset) const;
224
226 void mouseMovedOnMenu(Vector2f pos, Menu& menu, Vector2f menuOffset);
227
229 void deselectDeepestItem(Menu* menu);
230
232 void drawOpenMenu(BackendRenderTarget& target, RenderStates states, const Menu& menu, Vector2f menuOffset) const;
233
238 virtual void emitMenuItemClick(const std::vector<String>& hierarchy) = 0;
239
244 TGUI_NODISCARD virtual float getDefaultMenuItemHeight() const = 0;
245
250 virtual void leftMouseReleasedOnMenu() = 0;
251
258 TGUI_NODISCARD virtual bool isMouseOnOpenMenu(Vector2f pos) const = 0;
259
265 virtual void mouseMovedOnMenu(Vector2f pos) = 0;
266
271 virtual void deselectDeepestItem() = 0;
272
279 virtual void drawOpenMenu(BackendRenderTarget& target, RenderStates states) const = 0;
280
282 public:
283
289
291 protected:
292
293 std::shared_ptr<OpenMenuPlaceholder> m_openMenuPlaceholder;
294
295 float m_minimumMenuWidth = 125;
296
297 Sprite m_spriteItemBackground;
298 Sprite m_spriteSelectedItemBackground;
299
300 // Cached renderer properties
301 Color m_backgroundColorCached;
302 Color m_selectedBackgroundColorCached;
303 Color m_textColorCached;
304 Color m_selectedTextColorCached;
305 Color m_textColorDisabledCached;
306 Color m_separatorColorCached = Color::Black;
307 float m_separatorThicknessCached = 1;
308 float m_separatorVerticalPaddingCached = 0;
309 float m_separatorSidePaddingCached = 0;
310 float m_distanceToSideCached = 0;
311
312 bool m_invertedMenuDirection = false; // Only used by MenuBar
313
314 friend class OpenMenuPlaceholder;
315 };
316
317
322 class OpenMenuPlaceholder : public Widget
323 {
324 public:
325
326 // Instances of this class can't be copied
327 OpenMenuPlaceholder(const OpenMenuPlaceholder&) = delete;
328 OpenMenuPlaceholder& operator=(const OpenMenuPlaceholder&) = delete;
329
335
343 TGUI_NODISCARD Vector2f getFullSize() const override;
344
352 TGUI_NODISCARD Vector2f getWidgetOffset() const override;
353
358 TGUI_NODISCARD bool isMouseOnWidget(Vector2f pos) const override;
359
366 void draw(BackendRenderTarget& target, RenderStates states) const override;
367
371 void leftMouseButtonNoLongerDown() override;
372
376 void rightMousePressed(Vector2f pos) override;
377
381 void mouseMoved(Vector2f pos) override;
382
386 void keyPressed(const Event::KeyEvent& event) override;
387
389 // Makes a copy of the widget
391 TGUI_NODISCARD Widget::Ptr clone() const override;
392
394 private:
395 MenuWidgetBase* m_menuWidget;
396 bool m_mouseWasOnMenuWidget = true; // When a menu opens then the mouse will be on top of the menu bar
397 };
398
399 using MenuBarMenuPlaceholder TGUI_DEPRECATED("Use OpenMenuPlaceholder instead") = OpenMenuPlaceholder;
400
402}
403
405
406#endif // TGUI_MENU_WIDGET_BASE_HPP
Base class for render targets.
Definition BackendRenderTarget.hpp:46
Wrapper for colors.
Definition Color.hpp:73
static const Color Black
Black predefined color.
Definition Color.hpp:259
Renderer for the MenuBar widget.
Definition MenuWidgetBaseRenderer.hpp:38
Base class for MenuBar and ContextMenu.
Definition MenuWidgetBase.hpp:44
Signal & getSignal(String signalName) override
Retrieves a signal based on its name.
virtual void closeMenu()=0
Closes the menu if it was open.
void rendererChanged(const String &property) override
Function called when one of the properties of the renderer is changed.
SignalItemHierarchy onMenuItemClick
Definition MenuWidgetBase.hpp:288
MenuWidgetBaseRenderer * getRenderer() override
Returns the renderer, which gives access to functions that determine how the widget is displayed.
MenuWidgetBaseRenderer * getSharedRenderer() override
Returns the renderer, which gives access to functions that determine how the widget is displayed.
MenuWidgetBase(const char *typeName, bool initRenderer)
Constructor.
Widget that is added to a container when the user clicks on the menu bar. This widget will be added i...
Definition MenuWidgetBase.hpp:323
bool isMouseOnWidget(Vector2f pos) const override
Returns whether the mouse position (which is relative to the parent widget) lies on top of an open me...
Vector2f getFullSize() const override
Returns the entire size that the widget is using.
Vector2f getWidgetOffset() const override
Returns the distance between the position where the widget is drawn and where the widget is placed.
void draw(BackendRenderTarget &target, RenderStates states) const override
Draw the widget to a render target.
OpenMenuPlaceholder(MenuWidgetBase *menuWidget)
Constructor.
Widget::Ptr clone() const override
Makes a copy of the widget if you don't know its exact type.
Signal to which the user can subscribe to get callbacks from.
Definition Signal.hpp:1060
Signal to which the user can subscribe to get callbacks from.
Definition Signal.hpp:61
Definition Sprite.hpp:47
Wrapper class to store strings.
Definition String.hpp:96
Backend-independent wrapper around the backend-specific text class.
Definition Text.hpp:48
std::shared_ptr< Widget > Ptr
Shared widget pointer.
Definition Widget.hpp:86
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:38
KeyPressed event parameters.
Definition Event.hpp:168
Used for return value of getMenus.
Definition MenuWidgetBase.hpp:49
Definition MenuWidgetBase.hpp:99
States used for drawing.
Definition RenderStates.hpp:38