25#ifndef TGUI_LIST_BOX_HPP
26#define TGUI_LIST_BOX_HPP
28#include <TGUI/Widgets/Scrollbar.hpp>
29#include <TGUI/Renderers/ListBoxRenderer.hpp>
30#include <TGUI/Text.hpp>
34TGUI_MODULE_EXPORT
namespace tgui
43 using Ptr = std::shared_ptr<ListBox>;
44 using ConstPtr = std::shared_ptr<const ListBox>;
339 TGUI_NODISCARD std::vector<String>
getItems()
const;
370 template <
typename DataType>
373 if (index < m_items.size())
374 return AnyCast<DataType>(m_items[index].data);
376 throw std::bad_cast();
467 TGUI_DEPRECATED(
"Use getScrollbar()->setValue(value) instead") void
setScrollbarValue(
unsigned int value);
474 TGUI_DEPRECATED(
"Use getScrollbar()->getValue() instead") TGUI_NODISCARD
unsigned int getScrollbarValue() const;
483 TGUI_DEPRECATED(
"Use getScrollbar()->getMaxValue() instead") TGUI_NODISCARD
unsigned int getScrollbarMaxValue() const;
500 void leftMouseReleased(Vector2f pos) override;
505 void rightMousePressed(Vector2f pos) override;
510 void mouseMoved(Vector2f pos) override;
515 bool scrolled(
float delta, Vector2f pos,
bool touch) override;
520 void mouseNoLongerOnWidget() override;
525 void leftMouseButtonNoLongerDown() override;
530 void keyPressed(const
Event::KeyEvent& event) override;
575 TGUI_NODISCARD std::unique_ptr<DataIO::Node>
save(SavingRenderersMap& renderers) const override;
580 void load(const std::unique_ptr<DataIO::Node>& node, const LoadingRenderersMap& renderers) override;
595 TGUI_NODISCARD Vector2f getInnerSize() const;
600 void updateItemPositions();
605 void updateSelectedAndHoveringItemColorsAndStyle();
610 void updateItemColorsAndStyle();
615 void updateHoveringItem(
int item);
620 void updateSelectedItem(
int item);
625 void setHoveredItemBasedOnMousePos(Vector2f innerPos);
630 void setSelectedItemBasedOnMousePos(Vector2f innerPos);
635 void triggerOnScroll();
640 void addItemImpl(const
String& itemName, const
String&
id);
645 bool updateTime(
Duration elapsedTime) override;
672 std::vector<Item> m_items;
676 int m_selectedItem = -1;
678 int m_hoveringItem = -1;
680 unsigned int m_itemHeight = 0;
683 std::size_t m_maxItems = 0;
686 unsigned int m_lastScrollbarValue = 0;
689 bool m_possibleDoubleClick =
false;
691 bool m_autoScroll =
true;
694 Sprite m_spriteBackground;
697 Borders m_bordersCached;
698 Borders m_paddingCached;
699 Color m_borderColorCached;
700 Color m_backgroundColorCached;
701 Color m_backgroundColorHoverCached;
702 Color m_selectedBackgroundColorCached;
703 Color m_selectedBackgroundColorHoverCached;
704 Color m_textColorCached;
705 Color m_textColorHoverCached;
706 Color m_selectedTextColorCached;
707 Color m_selectedTextColorHoverCached;
Base class for render targets.
Definition BackendRenderTarget.hpp:46
Wrapper for colors.
Definition Color.hpp:73
Wrapper for durations.
Definition Duration.hpp:55
Class to store the position or size of a widget.
Definition Layout.hpp:323
Definition ListBoxRenderer.hpp:35
unsigned int getScrollbarMaxValue() const
Returns the maximum thumb position of the scrollbar.
std::vector< String > getItemIds() const
Returns a copy of the item ids in the list box.
bool changeItem(const String &originalValue, const String &newValue)
Changes an item with name originalValue to newValue.
DataType getItemData(std::size_t index) const
Returns user data stored in the item.
Definition ListBox.hpp:371
void setItemHeight(unsigned int itemHeight)
Changes the height of the items in the list box.
std::size_t getItemCount() const
Returns the amount of items in the list box.
bool changeItemByIndex(std::size_t index, const String &newValue)
Changes the name of an item at the given index to newValue.
bool changeItemById(const String &id, const String &newValue)
Changes the name of an item with the given id to newValue.
void setTextAlignment(HorizontalAlignment alignment)
Changes the horizontal text alignment.
unsigned int getScrollbarValue() const
Returns the thumb position of the scrollbar.
unsigned int getItemHeight() const
Returns the height of the items in the list box.
std::vector< String > getItems() const
Returns a copy of the items in the list box.
HorizontalAlignment getTextAlignment() const
Gets the current horizontal text alignment.
static ListBox::Ptr copy(const ListBox::ConstPtr &listBox)
Makes a copy of another list box.
void addMultipleItems(const std::vector< String > &itemNames)
Adds multiple items to the list.
ListBoxRenderer * getRenderer() override
Returns the renderer, which gives access to functions that determine how the widget is displayed.
void setItemData(std::size_t index, Any data)
Store some user data with the item.
String getItemById(const String &id) const
Returns the item name of the item with the given id.
void scrollbarValueChanged() override
Called when the value of the scrollbar has been changed via getScrollbar()->setValue(....
void updateTextSize() override
Called when the text size is changed (either by setTextSize or via the renderer)
void deselectItem()
Deselects the selected item.
SignalItem onItemSelect
An item was selected in the list box. Optional parameter: selected item or its index.
Definition ListBox.hpp:655
ListBoxRenderer * getSharedRenderer() override
Returns the renderer, which gives access to functions that determine how the widget is displayed.
std::shared_ptr< const ListBox > ConstPtr
Shared constant widget pointer.
Definition ListBox.hpp:44
void setMaximumItems(std::size_t maximumItems=0)
Changes the maximum items that the list box can contain.
SignalItem onDoubleClick
An item was double clicked. Optional parameter: selected item or its index.
Definition ListBox.hpp:658
int getHoveredItemIndex() const
Gets the index of the item below the mouse cursor.
void draw(BackendRenderTarget &target, RenderStates states) const override
Draw the widget to a render target.
bool leftMousePressed(Vector2f pos) override
Called by the parent when the left mouse button goes down on top of the widget.
bool canHandleKeyPress(const Event::KeyEvent &event) override
Called by the parent of the widget to check if keyPressed would process the event.
SignalItem onMousePress
The mouse went down on an item. Optional parameter: selected item or its index.
Definition ListBox.hpp:656
String getSelectedItemId() const
Gets the id of the selected item.
static ListBox::Ptr create()
Creates a new list box widget.
bool contains(const String &item) const
Returns whether the list box contains the given item.
void removeAllItems()
Removes all items from the list.
SignalItem onMouseRelease
The mouse was released on one of the items. Optional parameter: selected item or its index.
Definition ListBox.hpp:657
bool removeItemByIndex(std::size_t index)
Removes the item from the list box.
Signal & getSignal(String signalName) override
Retrieves a signal based on its name.
void load(const std::unique_ptr< DataIO::Node > &node, const LoadingRenderersMap &renderers) override
Loads the widget from a tree of nodes.
bool removeItemById(const String &id)
Removes the item that were added with the given id.
bool scrolled(float delta, Vector2f pos, bool touch) override
Called by the parent on scroll event (either from mouse wheel of from two finger scrolling on a touch...
String getIdByIndex(std::size_t index) const
Returns the id of the item at the given index.
bool setSelectedItemById(const String &id)
Selects an item in the list box.
bool setSelectedItem(const String &itemName)
Selects an item in the list box.
void setScrollbarValue(unsigned int value)
Changes the thumb position of the scrollbar.
Widget::Ptr clone() const override
Makes a copy of the widget if you don't know its exact type.
bool removeItem(const String &itemName)
Removes the item from the list with the given name.
void setSize(const Layout2d &size) override
Changes the size of the list box.
bool containsId(const String &id) const
Returns whether the list box contains an item with the given id.
String getItemByIndex(std::size_t index) const
Returns the item name of the item at the given index.
SignalUInt onScroll
The list was scrolled. Optional parameter: new value of scrollbar.
Definition ListBox.hpp:660
std::size_t addItem(const String &itemName, const String &id="")
Adds an item to the list.
bool getAutoScroll() const
Returns whether the list box scrolls to the bottom when a new item is added.
bool isMouseOnWidget(Vector2f pos) const override
Returns whether the mouse position (which is relative to the parent widget) lies on top of the widget...
int getSelectedItemIndex() const
Gets the index of the selected item.
void rendererChanged(const String &property) override
Function called when one of the properties of the renderer is changed.
HorizontalAlignment TextAlignment
The horizontal text alignment.
Definition ListBox.hpp:51
void setAutoScroll(bool autoScroll)
Changes whether the list box scrolls to the bottom when a new item is added.
std::size_t getMaximumItems() const
Returns the maximum items that the list box can contain.
static constexpr const char StaticWidgetType[]
Type name of the widget.
Definition ListBox.hpp:46
std::shared_ptr< ListBox > Ptr
Shared widget pointer.
Definition ListBox.hpp:43
bool setSelectedItemByIndex(std::size_t index)
Selects an item in the list box.
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.
int getIndexById(const String &id) const
Returns the index of the item with the given id.
SignalItem onRightClick
Right mouse pressed on list box (also fires if not on top of item). Optional parameter: selected item...
Definition ListBox.hpp:659
String getSelectedItem() const
Returns the currently selected item.
Signal to which the user can subscribe to get callbacks from.
Definition Signal.hpp:522
Signal to which the user can subscribe to get callbacks from.
Definition Signal.hpp:61
Wrapper class to store strings.
Definition String.hpp:96
Wrapper for text styles.
Definition TextStyle.hpp:55
Backend-independent wrapper around the backend-specific text class.
Definition Text.hpp:48
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:38
HorizontalAlignment
The horizontal alignment.
Definition Layout.hpp:62
@ Left
Align to the left side.
Definition Layout.hpp:63
SignalTyped< unsigned int > SignalUInt
Signal with one "unsigned int" as optional unbound parameter.
Definition Signal.hpp:424
Definition ListBox.hpp:666
States used for drawing.
Definition RenderStates.hpp:38