TGUI 1.13
Loading...
Searching...
No Matches
TreeViewRenderer.hpp
1
2//
3// TGUI - Texus' Graphical User Interface
4// Copyright (C) 2012-2026 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_TREE_VIEW_RENDERER_HPP
26#define TGUI_TREE_VIEW_RENDERER_HPP
27
28#include <TGUI/Renderers/WidgetRenderer.hpp>
29
31
32namespace tgui
33{
34 class TGUI_API TreeViewRenderer : public WidgetRenderer
35 {
36 public:
38
43 void setBorders(const Borders& borders);
44
49 [[nodiscard]] Borders getBorders() const;
50
55 void setPadding(const Padding& padding);
56
61 [[nodiscard]] Padding getPadding() const;
62
68
73 [[nodiscard]] Color getBackgroundColor() const;
74
79 void setBorderColor(Color color);
80
85 [[nodiscard]] Color getBorderColor() const;
86
91 void setTextColor(Color color);
92
97 [[nodiscard]] Color getTextColor() const;
98
104
109 [[nodiscard]] Color getTextColorHover() const;
110
116
121 [[nodiscard]] Color getSelectedTextColor() const;
122
128
133 [[nodiscard]] Color getSelectedTextColorHover() const;
134
140
145 [[nodiscard]] Color getSelectedBackgroundColor() const;
146
152
157 [[nodiscard]] Color getBackgroundColorHover() const;
158
164
170
175 void setScrollbar(std::shared_ptr<RendererData> scrollbarRendererData);
176
181 [[nodiscard]] std::shared_ptr<RendererData> getScrollbar() const;
182
187 void setScrollbarWidth(float scrollbarWidth);
188
193 [[nodiscard]] float getScrollbarWidth() const;
194
202 void setTextureBackground(const Texture& texture);
203
209 [[nodiscard]] const Texture& getTextureBackground() const;
210
220 void setTextureBranchExpanded(const Texture& textureBranchExpanded);
221
226 [[nodiscard]] const Texture& getTextureBranchExpanded() const;
227
237 void setTextureBranchCollapsed(const Texture& textureBranchCollapsed);
238
243 [[nodiscard]] const Texture& getTextureBranchCollapsed() const;
244
252 void setTextureLeaf(const Texture& textureLeaf);
253
258 [[nodiscard]] const Texture& getTextureLeaf() const;
259 };
260} // namespace tgui
261
262#endif // TGUI_TREE_VIEW_RENDERER_HPP
Wrapper for colors.
Definition Color.hpp:63
Texture wrapper that internally reuses resources when multiple Texture objects are loaded from the sa...
Definition Texture.hpp:53
Definition TreeViewRenderer.hpp:35
void setTextureLeaf(const Texture &textureLeaf)
Changes the image used in front of a lead item.
Color getSelectedTextColor() const
Returns the color of the text from the selected item.
void setSelectedBackgroundColor(Color color)
Changes the background color of the selected item.
void setTextColorHover(Color color)
Changes the color of the text of the item below the mouse.
void setScrollbarWidth(float scrollbarWidth)
Sets the wanted width of the scrollbar.
void setTextColor(Color color)
Changes the color of the text.
Borders getBorders() const
Returns the size of the borders.
Color getSelectedTextColorHover() const
Returns the color of the text of the selected item when it is below the mouse.
float getScrollbarWidth() const
Returns the wanted width of the scrollbar.
Color getSelectedBackgroundColor() const
Returns the background color of the selected item.
Color getTextColor() const
Returns the color of the text.
std::shared_ptr< RendererData > getScrollbar() const
Returns the renderer data of the scrollbar.
void setTextureBranchExpanded(const Texture &textureBranchExpanded)
Changes the image used in front of an expanded item.
void setSelectedBackgroundColorHover(Color backgroundColor)
Changes the background color used for the selected item when the mouse hovers over it.
Color getBackgroundColorHover() const
Returns the background color used for the item below the mouse.
void setTextureBranchCollapsed(const Texture &textureBranchCollapsed)
Changes the image used in front of a collapsed item.
const Texture & getTextureLeaf() const
Returns the image used in front of a leaf item.
void setBackgroundColorHover(Color color)
Changes the background color used for the item below the mouse.
void setBorders(const Borders &borders)
Changes the size of the borders.
void setBorderColor(Color color)
Changes the color of the borders.
const Texture & getTextureBranchExpanded() const
Returns the image used in front of an expanded item.
Color getSelectedBackgroundColorHover() const
Returns the background color used for the selected item when the mouse hovers over it.
void setSelectedTextColor(Color color)
Changes the color of the text from the selected item.
void setPadding(const Padding &padding)
Changes the padding of the tree view.
const Texture & getTextureBackground() const
Returns the background image of the tree view.
void setScrollbar(std::shared_ptr< RendererData > scrollbarRendererData)
Sets the renderer data of the scrollbar.
const Texture & getTextureBranchCollapsed() const
Returns the image used in front of a collapsed item.
WidgetRenderer()=default
Default constructor.
Color getTextColorHover() const
Returns the color of the text of the item below the mouse.
void setSelectedTextColorHover(Color color)
Changes the color of the text of the selected item when it is below the mouse.
void setBackgroundColor(Color color)
Changes the background color of the tree view.
void setTextureBackground(const Texture &texture)
Changes the background image of the tree view.
Color getBackgroundColor() const
Returns the background color.
Padding getPadding() const
Returns the size of the padding.
Color getBorderColor() const
Returns the color of the borders.
WidgetRenderer()=default
Default constructor.
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:37