TGUI 1.8
Loading...
Searching...
No Matches
ContextMenu.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_CONTEXT_MENU_HPP
26#define TGUI_CONTEXT_MENU_HPP
27
28#include <TGUI/Widgets/MenuWidgetBase.hpp>
29#include <TGUI/Renderers/ContextMenuRenderer.hpp>
30
32
33TGUI_MODULE_EXPORT namespace tgui
34{
40 class TGUI_API ContextMenu : public MenuWidgetBase
41 {
42 public:
43
44 using Ptr = std::shared_ptr<ContextMenu>;
45 using ConstPtr = std::shared_ptr<const ContextMenu>;
46
47 static constexpr const char StaticWidgetType[] = "ContextMenu";
48
56 ContextMenu(const char* typeName = StaticWidgetType, bool initRenderer = true);
57
63 TGUI_NODISCARD static ContextMenu::Ptr create();
64
72 TGUI_NODISCARD static ContextMenu::Ptr copy(const ContextMenu::ConstPtr& menuBar);
73
78 TGUI_NODISCARD ContextMenuRenderer* getSharedRenderer() override;
79 TGUI_NODISCARD const ContextMenuRenderer* getSharedRenderer() const override;
80
86 TGUI_NODISCARD ContextMenuRenderer* getRenderer() override;
87
94 TGUI_NODISCARD bool isMenuOpen() const;
95
103 void openMenu();
104
114 void openMenu(Vector2f position);
115
124
128 void closeMenu() override;
129
135 void setItemHeight(float itemHeight);
136
142 TGUI_NODISCARD float getItemHeight() const;
143
156 template <typename Func, typename... Args>
157 unsigned int connectMenuItem(const String& menuItem, Func&& handler, const Args&... args)
158 {
159 return connectMenuItem(std::vector<String>{menuItem}, std::forward<Func>(handler), args...);
160 }
161
174 template <typename Func, typename... Args>
175 unsigned int connectMenuItem(const std::vector<String>& hierarchy, Func&& handler, const Args&... args)
176 {
177#if defined(__cpp_lib_invoke) && (__cpp_lib_invoke >= 201411L)
178 return onMenuItemClick.connect(
179 [=](const std::vector<String>& clickedMenuItem)
180 {
181 if (clickedMenuItem == hierarchy)
182 std::invoke(handler, args...);
183 }
184 );
185#else
186 return onMenuItemClick.connect(
187 [f=std::function<void(const Args&...)>(handler),args...,hierarchy](const std::vector<String>& clickedMenuItem)
188 {
189 if (clickedMenuItem == hierarchy)
190 f(args...);
191 }
192 );
193#endif
194 }
195
203 void setSize(const Layout2d& size) override;
204 using Widget::setSize;
205
213 void setEnabled(bool enabled) override;
214
228 void addMenuItem(const String& text);
229
246 bool addMenuItem(const std::vector<String>& hierarchy, bool createParents = true);
247
263 bool changeMenuItem(const std::vector<String>& hierarchy, const String& text);
264
269
277 bool removeMenuItem(const String& menuItem);
278
291 bool removeMenuItem(const std::vector<String>& hierarchy, bool removeParentsWhenEmpty = true);
292
304 bool removeSubMenuItems(const std::vector<String>& hierarchy);
305
312 bool setMenuItemEnabled(const String& menuItem, bool enabled);
313
320 bool setMenuItemEnabled(const std::vector<String>& hierarchy, bool enabled);
321
327 TGUI_NODISCARD bool getMenuItemEnabled(const String& menuItem) const;
328
334 TGUI_NODISCARD bool getMenuItemEnabled(const std::vector<String>& hierarchy) const;
335
343 void setMinimumMenuWidth(float minimumWidth);
344
352 TGUI_NODISCARD float getMinimumMenuWidth() const;
353
358 TGUI_NODISCARD std::vector<GetMenusElement> getMenuItems() const;
359
365 TGUI_NODISCARD bool isMouseOnWidget(Vector2f pos) const override;
366
373 void draw(BackendRenderTarget& target, RenderStates states) const override;
374
375 protected:
376
382 void rendererChanged(const String& property) override;
383
387 TGUI_NODISCARD std::unique_ptr<DataIO::Node> save(SavingRenderersMap& renderers) const override;
388
392 void load(const std::unique_ptr<DataIO::Node>& node, const LoadingRenderersMap& renderers) override;
393
397 void updateTextSize() override;
398
400 // Makes a copy of the widget
402 TGUI_NODISCARD Widget::Ptr clone() const override;
403
408 void emitMenuItemClick(const std::vector<String>& hierarchy) override;
409
414 TGUI_NODISCARD float getDefaultMenuItemHeight() const override;
415
420 void leftMouseReleasedOnMenu() override;
421
428 TGUI_NODISCARD bool isMouseOnOpenMenu(Vector2f pos) const override;
429
435 void mouseMovedOnMenu(Vector2f pos) override;
436
441 void deselectDeepestItem() override;
442
449 void drawOpenMenu(BackendRenderTarget& target, RenderStates states) const override;
450
452 protected:
453
454 Menu m_menu;
455 bool m_menuOpen = false;
456 float m_itemHeight = 0;
457 };
458
460}
461
463
464#endif // TGUI_CONTEXT_MENU_HPP
Base class for render targets.
Definition BackendRenderTarget.hpp:46
Renderer for the ContextMenu widget.
Definition ContextMenuRenderer.hpp:38
bool changeMenuItem(const std::vector< String > &hierarchy, const String &text)
Changes the text of an existing menu item.
bool addMenuItem(const std::vector< String > &hierarchy, bool createParents=true)
Adds a new sub 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.
std::shared_ptr< const ContextMenu > ConstPtr
Shared constant widget pointer.
Definition ContextMenu.hpp:45
static constexpr const char StaticWidgetType[]
Type name of the widget.
Definition ContextMenu.hpp:47
void draw(BackendRenderTarget &target, RenderStates states) const override
Draw the widget to a render target.
bool removeMenuItem(const std::vector< String > &hierarchy, bool removeParentsWhenEmpty=true)
Removes a sub menu item.
float getMinimumMenuWidth() const
Returns the minimum width of the menus.
bool getMenuItemEnabled(const std::vector< String > &hierarchy) const
Check if a menu item is enabled or disabled.
std::shared_ptr< ContextMenu > Ptr
Shared widget pointer.
Definition ContextMenu.hpp:44
void setMinimumMenuWidth(float minimumWidth)
Changes the minimum width of the menus.
void setSize(const Layout2d &size) override
This function is overriden to do nothing.
static ContextMenu::Ptr copy(const ContextMenu::ConstPtr &menuBar)
Makes a copy of another menu bar.
bool getMenuItemEnabled(const String &menuItem) const
Check if a menu item is enabled or disabled.
void rendererChanged(const String &property) override
Function called when one of the properties of the renderer is changed.
ContextMenuRenderer * getSharedRenderer() override
Returns the renderer, which gives access to functions that determine how the widget is displayed.
void updateTextSize() override
Called when the text size is changed (either by setTextSize or via the renderer)
bool removeSubMenuItems(const std::vector< String > &hierarchy)
Removes a all menu items below a (sub) menu.
void openMenu(Vector2f position)
Opens the context menu at a certain position.
ContextMenuRenderer * getRenderer() override
Returns the renderer, which gives access to functions that determine how the widget is displayed.
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 ContextMenu.hpp:175
void closeMenu() override
Closes the context menu if it was open.
static ContextMenu::Ptr create()
Creates a new menu bar widget.
void removeAllMenuItems()
Removes all menu items.
void openMenuAtMouseCursor()
Opens the context menu at the last mouse cursor position.
bool setMenuItemEnabled(const String &menuItem, bool enabled)
Enable or disable a menu item.
float getItemHeight() const
Returns the height of the items in the context menu.
void openMenu()
Opens the context menu at the position of this widget.
void setEnabled(bool enabled) override
Enables or disables the widget.
std::vector< GetMenusElement > getMenuItems() const
Returns the menu items, including submenus.
bool isMouseOnWidget(Vector2f pos) const override
Returns whether the mouse position (which is relative to the parent widget) lies on top of the widget...
bool setMenuItemEnabled(const std::vector< String > &hierarchy, bool enabled)
Enable or disable a menu item.
unsigned int connectMenuItem(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 ContextMenu.hpp:157
void setItemHeight(float itemHeight)
Changes the height of the items in the context menu.
bool isMenuOpen() const
Returns whether the context menu is open.
Widget::Ptr clone() const override
Makes a copy of the widget if you don't know its exact type.
bool removeMenuItem(const String &menuItem)
Removes a menu item.
void addMenuItem(const String &text)
Adds a new menu item to the menu.
void load(const std::unique_ptr< DataIO::Node > &node, const LoadingRenderersMap &renderers) override
Loads the widget from a tree of nodes.
Class to store the position or size of a widget.
Definition Layout.hpp:323
SignalItemHierarchy onMenuItemClick
Definition MenuWidgetBase.hpp:288
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
Definition MenuWidgetBase.hpp:99
States used for drawing.
Definition RenderStates.hpp:38