TGUI
0.9.5
|
List view widget. More...
#include <TGUI/Widgets/ListView.hpp>
Classes | |
struct | Column |
struct | Item |
Public Types | |
enum class | ColumnAlignment { Left , Center , Right } |
The text alignment for all texts within a column. More... | |
typedef std::shared_ptr< ListView > | Ptr |
Shared widget pointer. | |
typedef std::shared_ptr< const ListView > | ConstPtr |
Shared constant widget pointer. | |
Public Types inherited from tgui::Widget | |
typedef std::shared_ptr< Widget > | Ptr |
Shared widget pointer. | |
typedef std::shared_ptr< const Widget > | ConstPtr |
Shared constant widget pointer. | |
Public Member Functions | |
ListView (const char *typeName="ListView", bool initRenderer=true) | |
ListViewRenderer * | getSharedRenderer () |
Returns the renderer, which gives access to functions that determine how the widget is displayed. | |
const ListViewRenderer * | getSharedRenderer () const |
ListViewRenderer * | getRenderer () |
Returns the renderer, which gives access to functions that determine how the widget is displayed. | |
const ListViewRenderer * | getRenderer () const |
void | setSize (const Layout2d &size) override |
Changes the size of the list view. | |
std::size_t | addColumn (const String &text, float width=0, ColumnAlignment alignment=ColumnAlignment::Left) |
Adds a column. | |
void | setColumnText (std::size_t index, const String &text) |
Changes the text of a column. | |
String | getColumnText (std::size_t index) const |
Returns the text of a column. | |
void | setColumnWidth (std::size_t index, float width) |
Changes the width of a column. | |
float | getColumnWidth (std::size_t index) const |
Returns the width of a column. | |
void | setColumnAlignment (std::size_t columnIndex, ColumnAlignment alignment) |
Changes the text alignment within a column. | |
ColumnAlignment | getColumnAlignment (std::size_t columnIndex) const |
Returns the current text alignment within a column. | |
void | removeAllColumns () |
Removes all columns. | |
std::size_t | getColumnCount () const |
Returns the amount of columns in the list view. | |
void | setHeaderHeight (float height) |
Changes the height of the header row. | |
float | getHeaderHeight () const |
Returns the height of the header row. | |
float | getCurrentHeaderHeight () const |
Returns the height of the header or 0 if no header row is shown. | |
void | setHeaderVisible (bool showHeader) |
Changes whether the header is shown. | |
bool | getHeaderVisible () const |
Returns whether the header is shown. | |
std::size_t | addItem (const String &text) |
Adds an item to the list. | |
std::size_t | addItem (const std::vector< String > &item) |
Adds an item with values for multiple columns to the list. | |
void | addMultipleItems (const std::vector< std::vector< String > > &items) |
Adds multiple items to the list. | |
void | insertItem (std::size_t index, const String &text) |
Inserts an item into the list. | |
void | insertItem (std::size_t index, const std::vector< String > &item) |
Inserts an item into the list. | |
void | insertMultipleItems (std::size_t index, const std::vector< std::vector< String > > &items) |
Inserts multiple items into the list. | |
bool | changeItem (std::size_t index, const std::vector< String > &item) |
Changes an item with values for multiple columns to the list. | |
bool | changeSubItem (std::size_t index, std::size_t column, const String &item) |
Changes the caption of a single value in the item. | |
bool | removeItem (std::size_t index) |
Removes the item from the list view. | |
void | removeAllItems () |
Removes all items from the list. | |
void | setSelectedItem (std::size_t index) |
Selects an item in the list view. | |
void | setSelectedItems (const std::set< std::size_t > &indices) |
Selects items in the list view. | |
void | deselectItems () |
Deselects the selected items. | |
int | getSelectedItemIndex () const |
Gets the index of the selected item. | |
std::set< std::size_t > | getSelectedItemIndices () const |
Gets the indices of the selected items. | |
void | setMultiSelect (bool multiSelect) |
Allow multi selection of the items. | |
bool | getMultiSelect () const |
Returns multi selection of the items is allowed. | |
void | setItemData (std::size_t index, Any data) |
Store some user data with the item. | |
template<typename T > | |
T | getItemData (std::size_t index) const |
Returns user data stored in the item. | |
void | setItemIcon (std::size_t index, const Texture &texture) |
Sets a small icon in front of the item. | |
Texture | getItemIcon (std::size_t index) const |
Gets the icon displayed in front of the item. | |
std::size_t | getItemCount () const |
Returns the amount of items in the list view. | |
String | getItem (std::size_t index) const |
Retrieves an item in the list. | |
std::vector< String > | getItemRow (std::size_t index) const |
Retrieves the values of all columns for an item in the list. | |
String | getItemCell (std::size_t rowIndex, std::size_t columnIndex) const |
Retrieves the value for a cell in the list. | |
std::vector< String > | getItems () const |
Returns a list of the texts in the first column for all items in the list view. | |
std::vector< std::vector< String > > | getItemRows () const |
Returns a list of all column values for all items in the list view. | |
void | sort (std::size_t index, const std::function< bool(const String &, const String &)> &cmp) |
Sort items. | |
void | setItemHeight (unsigned int itemHeight) |
Changes the height of the items in the list view. | |
unsigned int | getItemHeight () const |
Returns the height of the items in the list view. | |
void | setTextSize (unsigned int textSize) override |
Changes the text size of the items. | |
void | setHeaderTextSize (unsigned int textSize) |
Changes the text size of the header caption. | |
unsigned int | getHeaderTextSize () const |
Returns the text size of the header caption. | |
void | setSeparatorWidth (unsigned int width) |
Changes the width of the column separator. | |
unsigned int | getSeparatorWidth () const |
Returns the width of the column separator. | |
void | setHeaderSeparatorHeight (unsigned int height) |
Changes the height of the separator between the header and the items. | |
unsigned int | getHeaderSeparatorHeight () const |
Returns the height of the separator between the header and the items. | |
void | setGridLinesWidth (unsigned int width) |
Changes the width of the grid lines. | |
unsigned int | getGridLinesWidth () const |
Returns the width of the grid lines. | |
void | setAutoScroll (bool autoScroll) |
Changes whether the list view scrolls to the bottom when a new item is added. | |
bool | getAutoScroll () const |
Returns whether the list view scrolls to the bottom when a new item is added. | |
void | setShowVerticalGridLines (bool showGridLines) |
Changes whether lines are drawn between columns. | |
bool | getShowVerticalGridLines () const |
Returns whether lines are drawn between items. | |
void | setShowHorizontalGridLines (bool showGridLines) |
Changes whether lines are drawn between items. | |
bool | getShowHorizontalGridLines () const |
Returns whether lines are drawn between items. | |
void | setExpandLastColumn (bool expand) |
Changes whether the last column is expanded to fill the list view (if all columns fit inside the list view) | |
bool | getExpandLastColumn () const |
Returns whether the last column is expanded to fill the list view (if all columns fit inside the list view) | |
void | setVerticalScrollbarPolicy (Scrollbar::Policy policy) |
Changes when the vertical scrollbar should be displayed. | |
Scrollbar::Policy | getVerticalScrollbarPolicy () const |
Returns when the vertical scrollbar should be displayed. | |
void | setHorizontalScrollbarPolicy (Scrollbar::Policy policy) |
Changes when the horizontal scrollbar should be displayed. | |
Scrollbar::Policy | getHorizontalScrollbarPolicy () const |
Returns when the horizontal scrollbar should be displayed. | |
void | setVerticalScrollbarValue (unsigned int value) |
Changes the thumb position of the vertical scrollbar. | |
unsigned int | getVerticalScrollbarValue () const |
Returns the thumb position of the vertical scrollbar. | |
void | setHorizontalScrollbarValue (unsigned int value) |
Changes the thumb position of the horizontal scrollbar. | |
unsigned int | getHorizontalScrollbarValue () const |
Returns the thumb position of the horizontal scrollbar. | |
void | setFixedIconSize (Vector2f iconSize) |
Sets a size to which all icons should be scaled. | |
Vector2f | getFixedIconSize () const |
Returns to which size all icons should be scaled. | |
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 | leftMousePressed (Vector2f pos) override |
void | leftMouseReleased (Vector2f pos) override |
void | rightMousePressed (Vector2f pos) override |
void | mouseMoved (Vector2f pos) override |
bool | mouseWheelScrolled (float delta, Vector2f pos) override |
void | mouseNoLongerOnWidget () override |
void | leftMouseButtonNoLongerDown () override |
void | keyPressed (const Event::KeyEvent &event) override |
void | draw (BackendRenderTargetBase &target, RenderStates states) const override |
Draw the widget to a render target. | |
virtual void | setSize (const Layout2d &size) |
Changes the size of the widget. | |
void | setSize (Layout width, Layout height) |
Changes the size of the widget. | |
Public Member Functions inherited from tgui::Widget | |
Widget (const char *typeName, bool initRenderer) | |
Widget (const Widget &) | |
Copy constructor. | |
Widget (Widget &&) | |
Move constructor. | |
virtual | ~Widget () |
Destructor. | |
Widget & | operator= (const Widget &) |
Overload of copy assignment operator. | |
Widget & | operator= (Widget &&) |
Move assignment. | |
void | setRenderer (std::shared_ptr< RendererData > rendererData) |
Sets a new renderer for the widget. The renderer determines how the widget looks. | |
WidgetRenderer * | getSharedRenderer () |
Returns the renderer, which gives access to functions that determine how the widget is displayed. | |
const WidgetRenderer * | getSharedRenderer () const |
WidgetRenderer * | getRenderer () |
Returns the renderer, which gives access to functions that determine how the widget is displayed. | |
const WidgetRenderer * | getRenderer () const |
virtual void | setPosition (const Layout2d &position) |
sets the position of the widget | |
void | setPosition (Layout x, Layout y) |
Sets the position of the widget. | |
Vector2f | getPosition () const |
Gets the position of the widget. | |
void | setSize (Layout width, Layout height) |
Changes the size of the widget. | |
void | setWidth (Layout width) |
Changes the width of the widget. | |
void | setHeight (Layout height) |
Changes the height of the widget. | |
Vector2f | getSize () const |
Returns the size of the widget. | |
virtual Vector2f | getFullSize () const |
Returns the entire size that the widget is using. | |
virtual Vector2f | getAbsolutePosition () const |
Get the absolute position of the top-left point of the widget instead of the relative position to its parent. | |
virtual Vector2f | getWidgetOffset () const |
Returns the distance between the position where the widget is drawn and where the widget is placed. | |
void | setOrigin (float x, float y) |
Sets the origin point on which the position, scale and rotation is based. | |
void | setOrigin (Vector2f origin) |
Sets the origin point on which the position, scale and rotation is based. | |
Vector2f | getOrigin () const |
Returns the relative origin point on which the position, scale and rotation is based. | |
void | setScale (Vector2f scaleFactors) |
Sets the scaling to be applied to the widget. | |
void | setScale (Vector2f scaleFactors, Vector2f origin) |
Sets the scaling to be applied to the widget. | |
void | setScale (float scaleFactor) |
Sets the scaling to be applied to the widget. | |
void | setScale (float scaleFactor, Vector2f origin) |
Sets the scaling to be applied to the widget. | |
Vector2f | getScale () const |
Returns the scaling to be applied to the widget. | |
Vector2f | getScaleOrigin () const |
Returns the origin used for scaling. | |
void | setRotation (float angle) |
Sets the rotation to be applied to the widget. | |
void | setRotation (float angle, Vector2f origin) |
Sets the rotation to be applied to the widget. | |
float | getRotation () const |
Returns the rotation to be applied to the widget. | |
Vector2f | getRotationOrigin () const |
Returns the origin used for rotations. | |
void | showWithEffect (ShowEffectType type, Duration duration) |
Shows the widget by introducing it with an animation. | |
void | hideWithEffect (ShowEffectType type, Duration duration) |
Hides the widget by making it leave with an animation. | |
virtual void | setVisible (bool visible) |
Shows or hides a widget. | |
bool | isVisible () const |
Returns true when the widget is visible. | |
virtual void | setEnabled (bool enabled) |
Enables or disables the widget. | |
bool | isEnabled () const |
Returns true when the widget is enabled. | |
virtual void | setFocused (bool focused) |
Focus or unfocus the widget. | |
bool | isFocused () const |
Returns true when the widget is focused and false otherwise. | |
const String & | getWidgetType () const |
Returns the type of the widget. | |
Container * | getParent () const |
Returns a pointer to the parent widget. | |
GuiBase * | getParentGui () const |
Returns a pointer to the gui to which this widget belongs. | |
bool | isAnimationPlaying () const |
Returns whether there is an active animation (started with showWithEffect or hideWithEffect) | |
void | moveToFront () |
Places the widget before all other widgets. | |
void | moveToBack () |
Places the widget behind all other widgets. | |
void | setUserData (Any userData) |
Stores some data into the widget. | |
template<typename T > | |
T | getUserData () const |
Returns data stored in the widget. | |
void | setInheritedFont (const Font &font) |
Sets the font of the widget that is used when no font is set in the renderer. | |
const Font & | getInheritedFont () const |
Returns the font of the widget that is used when no font is set in the renderer. | |
void | setInheritedOpacity (float opacity) |
Sets the opacity of the widget that will be multiplied with the opacity set in the renderer. | |
float | getInheritedOpacity () const |
Returns the opacity of the widget that is multiplied with the opacity set in the renderer. | |
virtual unsigned int | getTextSize () const |
Returns the character size of text in this widget. | |
void | setToolTip (Widget::Ptr toolTip) |
Sets the tool tip that should be displayed when hovering over the widget. | |
Widget::Ptr | getToolTip () const |
Returns the tool tip that is displayed when hovering over the widget. | |
void | setWidgetName (const String &name) |
Changes the name of a widget. | |
String | getWidgetName () const |
Returns the name of a widget. | |
void | setMouseCursor (Cursor::Type cursor) |
Changes which mouse cursor is shown when hovering over the widget. | |
Cursor::Type | getMouseCursor () const |
Returns which mouse cursor is shown when hovering over the widget. | |
void | setFocusable (bool focusable) |
Changes whether a widget could be focused. | |
bool | isFocusable () const |
Returns whether a widget could be focused. | |
virtual bool | canGainFocus () const |
Returns whether the widget can currently gain focus. | |
bool | isContainer () const |
Returns whether the widget is a container widget or not. | |
bool | isDraggableWidget () const |
Returns whether the widget has something to drag (e.g. slider or scrollbar thumbs) | |
bool | isMouseDown () const |
Returns whether the left mouse button has been pressed on top of the widget. | |
virtual void | setParent (Container *parent) |
virtual void | rightMouseReleased (Vector2f pos) |
virtual void | mousePressed (Event::MouseButton button, Vector2f pos) |
virtual void | mouseReleased (Event::MouseButton button, Vector2f pos) |
virtual void | textEntered (char32_t key) |
virtual void | rightMouseButtonNoLongerDown () |
virtual Widget::Ptr | askToolTip (Vector2f mousePos) |
const Layout2d & | getPositionLayout () const |
const Layout2d & | getSizeLayout () const |
void | bindPositionLayout (Layout *layout) |
void | unbindPositionLayout (Layout *layout) |
void | bindSizeLayout (Layout *layout) |
void | unbindSizeLayout (Layout *layout) |
template<typename WidgetType > | |
std::shared_ptr< const WidgetType > | cast () const |
Downcast const widget. | |
template<typename WidgetType > | |
std::shared_ptr< WidgetType > | cast () |
Downcast widget. | |
Static Public Member Functions | |
static ListView::Ptr | create () |
Creates a new list view widget. | |
static ListView::Ptr | copy (ListView::ConstPtr listView) |
Makes a copy of another list view. | |
Public Attributes | |
SignalInt | onItemSelect = {"ItemSelected"} |
SignalInt | onDoubleClick = {"DoubleClicked"} |
An item was double clicked. Optional parameter: selected item index. | |
SignalInt | onRightClick = {"RightClicked"} |
Right mouse clicked. Optional parameter: index of item below mouse (-1 when not on top of item) | |
SignalInt | onHeaderClick = {"HeaderClicked"} |
The header was clicked. Optional parameter: column index. | |
Public Attributes inherited from tgui::Widget | |
SignalVector2f | onPositionChange = {"PositionChanged"} |
The position of the widget changed. Optional parameter: new position. | |
SignalVector2f | onSizeChange = {"SizeChanged"} |
The size of the widget changed. Optional parameter: new size. | |
Signal | onFocus = {"Focused"} |
The widget was focused. | |
Signal | onUnfocus = {"Unfocused"} |
The widget was unfocused. | |
Signal | onMouseEnter = {"MouseEntered"} |
The mouse entered the widget. | |
Signal | onMouseLeave = {"MouseLeft"} |
The mouse left the widget. | |
SignalShowEffect | onAnimationFinish = {"AnimationFinished"} |
SignalShowEffect | onShowEffectFinish = {"ShowEffectFinished"} |
A show or hide animation finished. Optional parameters: animation type, new widget visibility or both. | |
Protected Member Functions | |
Signal & | getSignal (String signalName) override |
Retrieves a signal based on its name. | |
void | rendererChanged (const String &property) override |
Function called when one of the properties of the renderer is changed. | |
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. | |
void | load (const std::unique_ptr< DataIO::Node > &node, const LoadingRenderersMap &renderers) override |
Loads the widget from a tree of nodes. | |
Vector2f | getInnerSize () const |
Text | createText (const String &caption) |
Text | createHeaderText (const String &caption) |
virtual void | setItemColor (std::size_t index, const Color &color) |
float | calculateAutoColumnWidth (const Text &text) |
void | updateSelectedAndhoveredItemColors () |
void | updateItemColors () |
void | updateHeaderTextsColor () |
void | updateHoveredItem (int item) |
void | updateSelectedItem (int item) |
void | selectRangeFromEvent (std::size_t item) |
bool | updateLastColumnMaxItemWidth () |
bool | updateLastColumnMaxItemWidthWithNewItem (const Item &item) |
bool | updateLastColumnMaxItemWidthWithModifiedItem (const Item &modifiedItem, float oldDesiredWidthInLastColumn) |
void | addSelectedItem (int item) |
void | removeSelectedItem (std::size_t item) |
void | updateHoveredItemByMousePos (Vector2f mousePos) |
unsigned int | getTotalSeparatorWidth () const |
float | getItemTotalWidth (const Item &item, std::size_t columnIndex) const |
int | getColumnIndexBelowMouse (float mouseLeft) |
void | updateScrollbars () |
void | updateVerticalScrollbarMaximum () |
void | updateHorizontalScrollbarMaximum () |
void | drawHeaderText (BackendRenderTargetBase &target, RenderStates states, float columnWidth, float headerHeight, std::size_t column) const |
void | drawColumn (BackendRenderTargetBase &target, RenderStates states, std::size_t firstItem, std::size_t lastItem, std::size_t column, float columnWidth) const |
bool | updateTime (Duration elapsedTime) override |
Widget::Ptr | clone () const override |
Makes a copy of the widget if you don't know its exact type. | |
Protected Member Functions inherited from tgui::Widget | |
virtual void | mouseEnteredWidget () |
This function is called when the mouse enters the widget. | |
virtual void | mouseLeftWidget () |
This function is called when the mouse leaves the widget. | |
Protected Attributes | |
std::vector< Column > | m_columns |
std::vector< Item > | m_items |
std::set< std::size_t > | m_selectedItems |
int | m_hoveredItem = -1 |
int | m_firstSelectedItemIndex = -1 |
int | m_focusedItemIndex = -1 |
float | m_requestedHeaderHeight = 0 |
unsigned int | m_itemHeight = 0 |
unsigned int | m_requestedTextSize = 0 |
unsigned int | m_headerTextSize = 0 |
unsigned int | m_headerSeparatorHeight = 0 |
unsigned int | m_separatorWidth = 1 |
unsigned int | m_gridLinesWidth = 1 |
unsigned int | m_iconCount = 0 |
float | m_maxIconWidth = 0 |
float | m_maxItemWidth = 0 |
bool | m_headerVisible = true |
bool | m_showHorizontalGridLines = false |
bool | m_showVerticalGridLines = true |
bool | m_expandLastColumn = false |
bool | m_multiSelect = false |
Vector2f | m_fixedIconSize |
CopiedSharedPtr< ScrollbarChildWidget > | m_horizontalScrollbar |
CopiedSharedPtr< ScrollbarChildWidget > | m_verticalScrollbar |
Scrollbar::Policy | m_verticalScrollbarPolicy = Scrollbar::Policy::Automatic |
Scrollbar::Policy | m_horizontalScrollbarPolicy = Scrollbar::Policy::Automatic |
int | m_mouseOnHeaderIndex = -1 |
int | m_possibleDoubleClick = false |
bool | m_autoScroll = true |
Borders | m_bordersCached |
Borders | m_paddingCached |
Color | m_borderColorCached |
Color | m_separatorColorCached |
Color | m_gridLinesColorCached |
Color | m_headerTextColorCached |
Color | m_headerBackgroundColorCached |
Color | m_backgroundColorCached |
Color | m_backgroundColorHoverCached |
Color | m_selectedBackgroundColorCached |
Color | m_selectedBackgroundColorHoverCached |
Color | m_textColorCached |
Color | m_textColorHoverCached |
Color | m_selectedTextColorCached |
Color | m_selectedTextColorHoverCached |
Protected Attributes inherited from tgui::Widget | |
String | m_type |
String | m_name |
Layout2d | m_position |
Layout2d | m_size |
unsigned int | m_textSize = 0 |
Vector2f | m_origin |
Optional< Vector2f > | m_rotationOrigin |
Optional< Vector2f > | m_scaleOrigin |
Vector2f | m_scaleFactors = {1, 1} |
float | m_rotationDeg = 0 |
Vector2f | m_prevPosition |
Vector2f | m_prevSize |
std::unordered_set< Layout * > | m_boundPositionLayouts |
std::unordered_set< Layout * > | m_boundSizeLayouts |
bool | m_enabled = true |
bool | m_visible = true |
Container * | m_parent = nullptr |
GuiBase * | m_parentGui = nullptr |
bool | m_mouseHover = false |
bool | m_mouseDown = false |
bool | m_focused = false |
bool | m_focusable = true |
Duration | m_animationTimeElapsed |
bool | m_draggableWidget = false |
bool | m_containerWidget = false |
Widget::Ptr | m_toolTip = nullptr |
aurora::CopiedPtr< WidgetRenderer > | m_renderer = nullptr |
std::vector< std::shared_ptr< priv::Animation > > | m_showAnimations |
Font | m_inheritedFont |
float | m_inheritedOpacity = 1 |
Font | m_fontCached = Font::getGlobalFont() |
float | m_opacityCached = 1 |
bool | m_transparentTextureCached = false |
Any | m_userData |
Cursor::Type | m_mouseCursor = Cursor::Type::Arrow |
std::function< void(const String &property)> | m_rendererChangedCallback = [this](const String& property){ rendererChangedCallback(property); } |
Additional Inherited Members | |
Protected Types inherited from tgui::Widget | |
using | SavingRenderersMap = std::map< const Widget *, std::pair< std::unique_ptr< DataIO::Node >, String > > |
using | LoadingRenderersMap = std::map< String, std::shared_ptr< RendererData > > |
List view widget.
When no columns are added, the list view acts like a ListBox with a few extra functionalities.
|
strong |
std::size_t tgui::ListView::addColumn | ( | const String & | text, |
float | width = 0 , |
||
ColumnAlignment | alignment = ColumnAlignment::Left |
||
) |
Adds a column.
text | The caption of the new column |
width | Width of the column. Set width to 0 to make it depend on the width of the column caption. |
alignment | The text alignment for all texts in the column |
std::size_t tgui::ListView::addItem | ( | const std::vector< String > & | item | ) |
Adds an item with values for multiple columns to the list.
item | Texts for each column |
std::size_t tgui::ListView::addItem | ( | const String & | text | ) |
Adds an item to the list.
text | The caption of the item you want to add |
void tgui::ListView::addMultipleItems | ( | const std::vector< std::vector< String > > & | items | ) |
Adds multiple items to the list.
items | List of items that should be passed to the addItem |
bool tgui::ListView::changeItem | ( | std::size_t | index, |
const std::vector< String > & | item | ||
) |
Changes an item with values for multiple columns to the list.
index | Index of the item to update |
item | Texts for each column |
bool tgui::ListView::changeSubItem | ( | std::size_t | index, |
std::size_t | column, | ||
const String & | item | ||
) |
Changes the caption of a single value in the item.
index | Index of the item to update |
column | Index of the column to change |
item | Texts for the given column for the given item |
|
inlineoverrideprotectedvirtual |
Makes a copy of the widget if you don't know its exact type.
This function should only be used when you don't know the type of the widget. If you know what kind of widget you are copying, you should use the copy function.
Implements tgui::Widget.
|
static |
Makes a copy of another list view.
listView | The other list view |
|
static |
Creates a new list view widget.
|
overridevirtual |
Draw the widget to a render target.
target | Render target to draw to |
states | Current render states |
Implements tgui::Widget.
bool tgui::ListView::getAutoScroll | ( | ) | const |
Returns whether the list view scrolls to the bottom when a new item is added.
ColumnAlignment tgui::ListView::getColumnAlignment | ( | std::size_t | columnIndex | ) | const |
Returns the current text alignment within a column.
columnIndex | Index of the column to inspect |
std::size_t tgui::ListView::getColumnCount | ( | ) | const |
Returns the amount of columns in the list view.
String tgui::ListView::getColumnText | ( | std::size_t | index | ) | const |
Returns the text of a column.
index | Index of the column |
float tgui::ListView::getColumnWidth | ( | std::size_t | index | ) | const |
Returns the width of a column.
index | Index of the column |
float tgui::ListView::getCurrentHeaderHeight | ( | ) | const |
Returns the height of the header or 0 if no header row is shown.
bool tgui::ListView::getExpandLastColumn | ( | ) | const |
Returns whether the last column is expanded to fill the list view (if all columns fit inside the list view)
Vector2f tgui::ListView::getFixedIconSize | ( | ) | const |
Returns to which size all icons should be scaled.
By default the fixed icon size is set to (0,0) which doesn't scale the icons and lets each icon use the texture size.
unsigned int tgui::ListView::getGridLinesWidth | ( | ) | const |
Returns the width of the grid lines.
float tgui::ListView::getHeaderHeight | ( | ) | const |
Returns the height of the header row.
unsigned int tgui::ListView::getHeaderSeparatorHeight | ( | ) | const |
Returns the height of the separator between the header and the items.
unsigned int tgui::ListView::getHeaderTextSize | ( | ) | const |
Returns the text size of the header caption.
bool tgui::ListView::getHeaderVisible | ( | ) | const |
Returns whether the header is shown.
Scrollbar::Policy tgui::ListView::getHorizontalScrollbarPolicy | ( | ) | const |
Returns when the horizontal scrollbar should be displayed.
unsigned int tgui::ListView::getHorizontalScrollbarValue | ( | ) | const |
Returns the thumb position of the horizontal scrollbar.
String tgui::ListView::getItem | ( | std::size_t | index | ) | const |
Retrieves an item in the list.
index | The index of the item |
String tgui::ListView::getItemCell | ( | std::size_t | rowIndex, |
std::size_t | columnIndex | ||
) | const |
Retrieves the value for a cell in the list.
rowIndex | The index of the row |
columnIndex | The index of the column |
std::size_t tgui::ListView::getItemCount | ( | ) | const |
Returns the amount of items in the list view.
|
inline |
Returns user data stored in the item.
std::bad_cast | if the template type does not match the type inside the std::any variable passed in setItemData or when the index was too high (which acts as if you access an empty std::any variable). |
unsigned int tgui::ListView::getItemHeight | ( | ) | const |
Returns the height of the items in the list view.
Texture tgui::ListView::getItemIcon | ( | std::size_t | index | ) | const |
Gets the icon displayed in front of the item.
index | Index of the item |
std::vector< String > tgui::ListView::getItemRow | ( | std::size_t | index | ) | const |
Retrieves the values of all columns for an item in the list.
index | The index of the item |
The returned list has the same length as the amount of columns.
std::vector< std::vector< String > > tgui::ListView::getItemRows | ( | ) | const |
Returns a list of all column values for all items in the list view.
std::vector< String > tgui::ListView::getItems | ( | ) | const |
Returns a list of the texts in the first column for all items in the list view.
bool tgui::ListView::getMultiSelect | ( | ) | const |
Returns multi selection of the items is allowed.
ListViewRenderer * tgui::ListView::getRenderer | ( | ) |
Returns the renderer, which gives access to functions that determine how the widget is displayed.
int tgui::ListView::getSelectedItemIndex | ( | ) | const |
Gets the index of the selected item.
std::set< std::size_t > tgui::ListView::getSelectedItemIndices | ( | ) | const |
Gets the indices of the selected items.
unsigned int tgui::ListView::getSeparatorWidth | ( | ) | const |
Returns the width of the column separator.
ListViewRenderer * tgui::ListView::getSharedRenderer | ( | ) |
Returns the renderer, which gives access to functions that determine how the widget is displayed.
bool tgui::ListView::getShowHorizontalGridLines | ( | ) | const |
Returns whether lines are drawn between items.
bool tgui::ListView::getShowVerticalGridLines | ( | ) | const |
Returns whether lines are drawn between items.
Retrieves a signal based on its name.
signalName | Name of the signal |
Exception | when the name does not match any signal |
Reimplemented from tgui::Widget.
Scrollbar::Policy tgui::ListView::getVerticalScrollbarPolicy | ( | ) | const |
Returns when the vertical scrollbar should be displayed.
unsigned int tgui::ListView::getVerticalScrollbarValue | ( | ) | const |
Returns the thumb position of the vertical scrollbar.
void tgui::ListView::insertItem | ( | std::size_t | index, |
const std::vector< String > & | item | ||
) |
Inserts an item into the list.
index | Index to insert the item at |
item | Texts for each column |
void tgui::ListView::insertItem | ( | std::size_t | index, |
const String & | text | ||
) |
Inserts an item into the list.
index | Index to insert the item at |
text | The caption of the item you want to add |
void tgui::ListView::insertMultipleItems | ( | std::size_t | index, |
const std::vector< std::vector< String > > & | items | ||
) |
Inserts multiple items into the list.
index | Index to insert the items at |
items | List of items that should be passed to the insertItem |
|
overridevirtual |
Returns whether the mouse position (which is relative to the parent widget) lies on top of the widget.
Implements tgui::Widget.
|
overridevirtual |
Reimplemented from tgui::Widget.
|
overridevirtual |
Reimplemented from tgui::Widget.
|
overridevirtual |
Reimplemented from tgui::Widget.
|
overridevirtual |
Reimplemented from tgui::Widget.
|
overrideprotectedvirtual |
Loads the widget from a tree of nodes.
Reimplemented from tgui::Widget.
|
overridevirtual |
Reimplemented from tgui::Widget.
|
overridevirtual |
Reimplemented from tgui::Widget.
|
overridevirtual |
Reimplemented from tgui::Widget.
bool tgui::ListView::removeItem | ( | std::size_t | index | ) |
Removes the item from the list view.
index | Index of the item in the list view |
|
overrideprotectedvirtual |
Function called when one of the properties of the renderer is changed.
property | Name of the property that was changed |
Reimplemented from tgui::Widget.
|
overridevirtual |
Reimplemented from tgui::Widget.
|
overrideprotectedvirtual |
Saves the widget as a tree node in order to save it to a file.
Reimplemented from tgui::Widget.
void tgui::ListView::setAutoScroll | ( | bool | autoScroll | ) |
Changes whether the list view scrolls to the bottom when a new item is added.
autoScroll | Should list view scroll to the bottom when new items are added? |
Auto scrolling is enabled by default.
void tgui::ListView::setColumnAlignment | ( | std::size_t | columnIndex, |
ColumnAlignment | alignment | ||
) |
Changes the text alignment within a column.
columnIndex | Index of the column to change |
alignment | The text alignment for all texts in the column |
void tgui::ListView::setColumnText | ( | std::size_t | index, |
const String & | text | ||
) |
Changes the text of a column.
index | Index of the column to change |
text | Caption of the column |
void tgui::ListView::setColumnWidth | ( | std::size_t | index, |
float | width | ||
) |
Changes the width of a column.
index | Index of the column to change |
width | Width of the column. Set width to 0 to make it depend on the width of the column caption. |
void tgui::ListView::setExpandLastColumn | ( | bool | expand | ) |
Changes whether the last column is expanded to fill the list view (if all columns fit inside the list view)
expand | Make the last column larger to make it fill the list view when it isn't full yet? |
void tgui::ListView::setFixedIconSize | ( | Vector2f | iconSize | ) |
Sets a size to which all icons should be scaled.
iconSize | Wanted size for all icons |
By default the fixed icon size is set to (0,0) which doesn't scale the icons and lets each icon use the texture size. By setting only the x or y component of the vector to 0, that dimension will be calculated to keep the icon ratio.
void tgui::ListView::setGridLinesWidth | ( | unsigned int | width | ) |
Changes the width of the grid lines.
width | Width of the grid lines |
void tgui::ListView::setHeaderHeight | ( | float | height | ) |
Changes the height of the header row.
height | Height of the header or 0 to make the header size depend on the row height |
void tgui::ListView::setHeaderSeparatorHeight | ( | unsigned int | height | ) |
Changes the height of the separator between the header and the items.
height | Height of the line below the header |
void tgui::ListView::setHeaderTextSize | ( | unsigned int | textSize | ) |
Changes the text size of the header caption.
textSize | The character size of the header text |
By default, header text size is the same as the text size of the items.
void tgui::ListView::setHeaderVisible | ( | bool | showHeader | ) |
Changes whether the header is shown.
showHeader | Whether the header containing the column names shoud be visible |
void tgui::ListView::setHorizontalScrollbarPolicy | ( | Scrollbar::Policy | policy | ) |
Changes when the horizontal scrollbar should be displayed.
policy | The policy for displaying the horizontal scrollbar |
void tgui::ListView::setHorizontalScrollbarValue | ( | unsigned int | value | ) |
Changes the thumb position of the horizontal scrollbar.
value | New value of the horizontal scrollbar |
void tgui::ListView::setItemData | ( | std::size_t | index, |
Any | data | ||
) |
Store some user data with the item.
index | Index of the item |
data | User data to store |
Examples:
void tgui::ListView::setItemHeight | ( | unsigned int | itemHeight | ) |
Changes the height of the items in the list view.
itemHeight | The size of a single item in the list |
void tgui::ListView::setItemIcon | ( | std::size_t | index, |
const Texture & | texture | ||
) |
Sets a small icon in front of the item.
index | Index of the item |
texture | Texture of the item icon |
void tgui::ListView::setMultiSelect | ( | bool | multiSelect | ) |
Allow multi selection of the items.
multiSelect | Whether several items can be selected |
void tgui::ListView::setSelectedItem | ( | std::size_t | index | ) |
Selects an item in the list view.
index | Index of the item in the list view |
void tgui::ListView::setSelectedItems | ( | const std::set< std::size_t > & | indices | ) |
Selects items in the list view.
indices | Indices of the items in the list view |
void tgui::ListView::setSeparatorWidth | ( | unsigned int | width | ) |
Changes the width of the column separator.
width | Width of the line separating the columns |
void tgui::ListView::setShowHorizontalGridLines | ( | bool | showGridLines | ) |
Changes whether lines are drawn between items.
showGridLines | Is there a horizontal line to separate items? |
Horizontal grid lines are hidden by default.
void tgui::ListView::setShowVerticalGridLines | ( | bool | showGridLines | ) |
Changes whether lines are drawn between columns.
showGridLines | Is there a vertical line to separate columns? |
Vertical grid lines are shown by default.
|
virtual |
Changes the size of the widget.
size | Size of the widget |
Usage examples:
Reimplemented from tgui::Widget.
|
overridevirtual |
Changes the size of the list view.
size | The new size of the list view |
Reimplemented from tgui::Widget.
Changes the size of the widget.
width | Width of the widget |
height | Height of the widget |
|
overridevirtual |
Changes the text size of the items.
textSize | The character size of the text |
This will not change the height that each item has. When passing 0 to this function, the text will be auto-sized to nicely fit inside this item height.
Reimplemented from tgui::Widget.
void tgui::ListView::setVerticalScrollbarPolicy | ( | Scrollbar::Policy | policy | ) |
Changes when the vertical scrollbar should be displayed.
policy | The policy for displaying the vertical scrollbar |
void tgui::ListView::setVerticalScrollbarValue | ( | unsigned int | value | ) |
Changes the thumb position of the vertical scrollbar.
value | New value of the vertical scrollbar |
void tgui::ListView::sort | ( | std::size_t | index, |
const std::function< bool(const String &, const String &)> & | cmp | ||
) |
Sort items.
index | The index of the column for sorting |
cmp | The comparator |
|
overrideprotectedvirtual |
Reimplemented from tgui::Widget.
SignalInt tgui::ListView::onItemSelect = {"ItemSelected"} |
An item was selected in the list view Optional parameter: selected item index (-1 when deselecting)
Note that when MultiSelect is true, this signal is triggered for every change to the selected items. The optional parameter will contain the lowest index in the selected items or -1 when none of the items are selected.