TGUI 1.8
Loading...
Searching...
No Matches
MenuBar.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_BAR_HPP
26#define TGUI_MENU_BAR_HPP
27
28#include <TGUI/Widgets/MenuWidgetBase.hpp>
29#include <TGUI/Renderers/MenuBarRenderer.hpp>
30
32
33TGUI_MODULE_EXPORT namespace tgui
34{
38 class TGUI_API MenuBar : public MenuWidgetBase
39 {
40 public:
41
42 using Ptr = std::shared_ptr<MenuBar>;
43 using ConstPtr = std::shared_ptr<const MenuBar>;
44
45 static constexpr const char StaticWidgetType[] = "MenuBar";
46
54 MenuBar(const char* typeName = StaticWidgetType, bool initRenderer = true);
55
61 TGUI_NODISCARD static MenuBar::Ptr create();
62
70 TGUI_NODISCARD static MenuBar::Ptr copy(const MenuBar::ConstPtr& menuBar);
71
76 TGUI_NODISCARD MenuBarRenderer* getSharedRenderer() override;
77 TGUI_NODISCARD const MenuBarRenderer* getSharedRenderer() const override;
78
84 TGUI_NODISCARD MenuBarRenderer* getRenderer() override;
85
99 template <typename Func, typename... Args>
100 unsigned int connectMenuItem(const String& menu, const String& menuItem, Func&& handler, const Args&... args)
101 {
102 return connectMenuItem({menu, menuItem}, std::forward<Func>(handler), args...);
103 }
104
118 template <typename Func, typename... Args>
119 unsigned int connectMenuItem(const std::vector<String>& hierarchy, Func&& handler, const Args&... args)
120 {
121#if defined(__cpp_lib_invoke) && (__cpp_lib_invoke >= 201411L)
122 return onMenuItemClick.connect(
123 [=](const std::vector<String>& clickedMenuItem)
124 {
125 if (clickedMenuItem == hierarchy)
126 std::invoke(handler, args...);
127 }
128 );
129#else
130 return onMenuItemClick.connect(
131 [f=std::function<void(const Args&...)>(handler),args...,hierarchy](const std::vector<String>& clickedMenuItem)
132 {
133 if (clickedMenuItem == hierarchy)
134 f(args...);
135 }
136 );
137#endif
138 }
139
147 void setSize(const Layout2d& size) override;
148 using Widget::setSize;
149
157 void setEnabled(bool enabled) override;
158
164 void addMenu(const String& text);
165
183 bool addMenuItem(const String& text);
184
203 bool addMenuItem(const String& menu, const String& text);
204
221 bool addMenuItem(const std::vector<String>& hierarchy, bool createParents = true);
222
239 bool changeMenuItem(const std::vector<String>& hierarchy, const String& text);
240
245
255 bool removeMenu(const String& menu);
256
265 bool removeMenuItem(const String& menu, const String& menuItem);
266
280 bool removeMenuItem(const std::vector<String>& hierarchy, bool removeParentsWhenEmpty = true);
281
289 bool removeMenuItems(const String& menu);
290
302 bool removeSubMenuItems(const std::vector<String>& hierarchy);
303
310 bool setMenuEnabled(const String& menu, bool enabled);
311
317 TGUI_NODISCARD bool getMenuEnabled(const String& menu) const;
318
326 bool setMenuItemEnabled(const String& menu, const String& menuItem, bool enabled);
327
334 bool setMenuItemEnabled(const std::vector<String>& hierarchy, bool enabled);
335
342 TGUI_NODISCARD bool getMenuItemEnabled(const String& menu, const String& menuItem) const;
343
349 TGUI_NODISCARD bool getMenuItemEnabled(const std::vector<String>& hierarchy) const;
350
358 void setMinimumSubMenuWidth(float minimumWidth);
359
367 TGUI_NODISCARD float getMinimumSubMenuWidth() const;
368
374 void setInvertedMenuDirection(bool invertDirection);
375
381 TGUI_NODISCARD bool getInvertedMenuDirection() const;
382
387 TGUI_NODISCARD std::vector<GetMenusElement> getMenus() const;
388
392 void closeMenu() override;
393
399 TGUI_NODISCARD bool isMouseOnWidget(Vector2f pos) const override;
400
404 bool leftMousePressed(Vector2f pos) override;
405
409 void leftMouseReleased(Vector2f pos) override;
410
414 void mouseMoved(Vector2f pos) override;
415
422 void draw(BackendRenderTarget& target, RenderStates states) const override;
423
425 protected:
426
432 void rendererChanged(const String& property) override;
433
437 TGUI_NODISCARD std::unique_ptr<DataIO::Node> save(SavingRenderersMap& renderers) const override;
438
442 void load(const std::unique_ptr<DataIO::Node>& node, const LoadingRenderersMap& renderers) override;
443
447 void updateTextSize() override;
448
450 // Makes a copy of the widget
452 TGUI_NODISCARD Widget::Ptr clone() const override;
453
458 void openMenu(std::size_t menuIndex);
459
464 void drawMenusOnBar(BackendRenderTarget& target, RenderStates states) const;
465
470 TGUI_NODISCARD Vector2f calculateMenuOffset(std::size_t visibleMenuIdx) const;
471
476 void emitMenuItemClick(const std::vector<String>& hierarchy) override;
477
482 void deselectDeepestItem() override;
483
490 TGUI_NODISCARD bool isMouseOnOpenMenu(Vector2f pos) const override;
491
496 TGUI_NODISCARD float getDefaultMenuItemHeight() const override;
497
502 void leftMouseReleasedOnMenu() override;
503
509 void mouseMovedOnMenu(Vector2f pos) override;
510
517 void drawOpenMenu(BackendRenderTarget& target, RenderStates states) const override;
518
520 protected:
521
522 std::vector<Menu> m_menus;
523 int m_visibleMenu = -1;
524 Sprite m_spriteBackground;
525 };
526
528}
529
531
532#endif // TGUI_MENU_BAR_HPP
Base class for render targets.
Definition BackendRenderTarget.hpp:46
Class to store the position or size of a widget.
Definition Layout.hpp:323
Renderer for the MenuBar widget.
Definition MenuBarRenderer.hpp:38
bool setMenuItemEnabled(const String &menu, const String &menuItem, bool enabled)
Enable or disable a menu item.
bool removeMenuItems(const String &menu)
Removes all menu items from a menu.
bool setMenuEnabled(const String &menu, bool enabled)
Enable or disable an entire menu.
void setEnabled(bool enabled) override
Enables or disables the widget.
unsigned int connectMenuItem(const std::vector< String > &hierarchy, Func &&handler, const Args &... args)
Connects a signal handler to the "MenuItemClicked" callback that will only be called when a specific ...
Definition MenuBar.hpp:119
bool removeSubMenuItems(const std::vector< String > &hierarchy)
Removes a all menu items below a (sub) menu.
Widget::Ptr clone() const override
Makes a copy of the widget if you don't know its exact type.
bool changeMenuItem(const std::vector< String > &hierarchy, const String &text)
Changes the text of an existing menu item.
std::unique_ptr< DataIO::Node > save(SavingRenderersMap &renderers) const override
Saves the widget as a tree node in order to save it to a file.
float getMinimumSubMenuWidth() const
Returns the minimum width of the submenus.
void rendererChanged(const String &property) override
Function called when one of the properties of the renderer is changed.
bool addMenuItem(const String &menu, const String &text)
Adds a new menu item to an existing menu.
bool addMenuItem(const std::vector< String > &hierarchy, bool createParents=true)
Adds a new menu item (or sub menu item)
bool leftMousePressed(Vector2f pos) override
Called by the parent when the left mouse button goes down on top of the widget.
bool getInvertedMenuDirection() const
Returns whether the menus open above or below the menu bar.
void openMenu(std::size_t menuIndex)
Opens a menu.
std::shared_ptr< const MenuBar > ConstPtr
Shared constant widget pointer.
Definition MenuBar.hpp:43
bool isMouseOnWidget(Vector2f pos) const override
Returns whether the mouse position (which is relative to the parent widget) lies on top of the widget...
void draw(BackendRenderTarget &target, RenderStates states) const override
Draw the widget to a render target.
void load(const std::unique_ptr< DataIO::Node > &node, const LoadingRenderersMap &renderers) override
Loads the widget from a tree of nodes.
std::vector< GetMenusElement > getMenus() const
Returns the menus and their menu items, including submenus.
void addMenu(const String &text)
Adds a new menu.
MenuBarRenderer * getRenderer() override
Returns the renderer, which gives access to functions that determine how the widget is displayed.
void removeAllMenus()
Removes all menus.
void updateTextSize() override
Called when the text size is changed (either by setTextSize or via the renderer)
bool removeMenuItem(const String &menu, const String &menuItem)
Removes a menu item.
void closeMenu() override
Closes the open menu when one of the menus is open.
static MenuBar::Ptr copy(const MenuBar::ConstPtr &menuBar)
Makes a copy of another menu bar.
bool getMenuEnabled(const String &menu) const
Check if an entire menu is enabled or disabled.
void setMinimumSubMenuWidth(float minimumWidth)
Changes the minimum width of the submenus.
std::shared_ptr< MenuBar > Ptr
Shared widget pointer.
Definition MenuBar.hpp:42
static MenuBar::Ptr create()
Creates a new menu bar widget.
bool addMenuItem(const String &text)
Adds a new menu item to the last added menu.
bool setMenuItemEnabled(const std::vector< String > &hierarchy, bool enabled)
Enable or disable a menu item.
bool removeMenuItem(const std::vector< String > &hierarchy, bool removeParentsWhenEmpty=true)
Removes a menu item (or sub menu item)
bool getMenuItemEnabled(const std::vector< String > &hierarchy) const
Check if a menu item is enabled or disabled.
unsigned int connectMenuItem(const String &menu, const String &menuItem, Func &&handler, const Args &... args)
Connects a signal handler to the "MenuItemClicked" callback that will only be called when a specific ...
Definition MenuBar.hpp:100
void setInvertedMenuDirection(bool invertDirection)
Changes whether the menus open above or below the menu bar.
MenuBarRenderer * getSharedRenderer() override
Returns the renderer, which gives access to functions that determine how the widget is displayed.
static constexpr const char StaticWidgetType[]
Type name of the widget.
Definition MenuBar.hpp:45
void setSize(const Layout2d &size) override
Changes the size of the menu bar.
bool getMenuItemEnabled(const String &menu, const String &menuItem) const
Check if a menu item is enabled or disabled.
bool removeMenu(const String &menu)
Removes a menu.
SignalItemHierarchy onMenuItemClick
Definition MenuWidgetBase.hpp:288
Definition Sprite.hpp:47
Wrapper class to store strings.
Definition String.hpp:96
std::shared_ptr< Widget > Ptr
Shared widget pointer.
Definition Widget.hpp:86
virtual void setSize(const Layout2d &size)
Changes the size of the widget.
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:38
States used for drawing.
Definition RenderStates.hpp:38