TGUI  1.3-dev
Loading...
Searching...
No Matches
TreeViewRenderer.hpp
1
2//
3// TGUI - Texus' Graphical User Interface
4// Copyright (C) 2012-2024 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
26#ifndef TGUI_TREE_VIEW_RENDERER_HPP
27#define TGUI_TREE_VIEW_RENDERER_HPP
28
29
30#include <TGUI/Renderers/WidgetRenderer.hpp>
31
33
34TGUI_MODULE_EXPORT namespace tgui
35{
36 class TGUI_API TreeViewRenderer : public WidgetRenderer
37 {
38 public:
39
40 using WidgetRenderer::WidgetRenderer;
41
42
47 void setBorders(const Borders& borders);
48
53 TGUI_NODISCARD Borders getBorders() const;
54
55
60 void setPadding(const Padding& padding);
61
66 TGUI_NODISCARD Padding getPadding() const;
67
68
74
79 TGUI_NODISCARD Color getBackgroundColor() const;
80
81
86 void setBorderColor(Color color);
87
92 TGUI_NODISCARD Color getBorderColor() const;
93
94
99 void setTextColor(Color color);
100
105 TGUI_NODISCARD Color getTextColor() const;
106
107
113
118 TGUI_NODISCARD Color getTextColorHover() const;
119
120
126
131 TGUI_NODISCARD Color getSelectedTextColor() const;
132
133
139
144 TGUI_NODISCARD Color getSelectedTextColorHover() const;
145
146
152
157 TGUI_NODISCARD Color getSelectedBackgroundColor() const;
158
159
165
170 TGUI_NODISCARD Color getBackgroundColorHover() const;
171
172
178
184
185
190 void setScrollbar(std::shared_ptr<RendererData> scrollbarRendererData);
191
196 TGUI_NODISCARD std::shared_ptr<RendererData> getScrollbar() const;
197
198
203 void setScrollbarWidth(float scrollbarWidth);
204
209 TGUI_NODISCARD float getScrollbarWidth() const;
210
211
219 void setTextureBackground(const Texture& texture);
220
221
227 TGUI_NODISCARD const Texture& getTextureBackground() const;
228
229
239 void setTextureBranchExpanded(const Texture& textureBranchExpanded);
240
245 TGUI_NODISCARD const Texture& getTextureBranchExpanded() const;
246
247
257 void setTextureBranchCollapsed(const Texture& textureBranchCollapsed);
258
263 TGUI_NODISCARD const Texture& getTextureBranchCollapsed() const;
264
265
273 void setTextureLeaf(const Texture& textureLeaf);
274
279 TGUI_NODISCARD const Texture& getTextureLeaf() const;
280
281
283 };
284
286}
287
289
290#endif // TGUI_TREE_VIEW_RENDERER_HPP
Wrapper for colors.
Definition Color.hpp:72
Definition Outline.hpp:39
Texture wrapper that internally reuses resources when multiple Texture objects are loaded from the sa...
Definition Texture.hpp:57
Definition TreeViewRenderer.hpp:37
void setTextureLeaf(const Texture &textureLeaf)
Changes the image used in front of a lead item.
TGUI_NODISCARD const Texture & getTextureLeaf() const
Returns the image used in front of a leaf 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.
TGUI_NODISCARD Color getBorderColor() const
Returns the color of the borders.
TGUI_NODISCARD Color getBackgroundColor() const
Returns the background color.
TGUI_NODISCARD const Texture & getTextureBranchExpanded() const
Returns the image used in front of an expanded item.
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.
void setTextureBranchCollapsed(const Texture &textureBranchCollapsed)
Changes the image used in front of a collapsed item.
void setBackgroundColorHover(Color color)
Changes the background color used for the item below the mouse.
TGUI_NODISCARD Color getSelectedTextColorHover() const
Returns the color of the text of the selected item when it is below the mouse.
TGUI_NODISCARD const Texture & getTextureBackground() const
Returns the background image of the tree view.
TGUI_NODISCARD std::shared_ptr< RendererData > getScrollbar() const
Returns the renderer data of the scrollbar.
TGUI_NODISCARD Color getBackgroundColorHover() const
Returns the background color used for the item below the mouse.
TGUI_NODISCARD Color getSelectedBackgroundColorHover() const
Returns the background color used for the selected item when the mouse hovers over it.
void setBorders(const Borders &borders)
Changes the size of the borders.
TGUI_NODISCARD Color getSelectedTextColor() const
Returns the color of the text from the selected item.
TGUI_NODISCARD Color getSelectedBackgroundColor() const
Returns the background color of the selected item.
TGUI_NODISCARD Color getTextColor() const
Returns the color of the text.
void setBorderColor(Color color)
Changes the color of the borders.
TGUI_NODISCARD float getScrollbarWidth() const
Returns the wanted width of the scrollbar.
TGUI_NODISCARD Padding getPadding() const
Returns the size of the padding.
void setSelectedTextColor(Color color)
Changes the color of the text from the selected item.
TGUI_NODISCARD Borders getBorders() const
Returns the size of the borders.
void setPadding(const Padding &padding)
Changes the padding of the tree view.
void setScrollbar(std::shared_ptr< RendererData > scrollbarRendererData)
Sets the renderer data of the scrollbar.
TGUI_NODISCARD Color getTextColorHover() const
Returns the color of the text of the item below the mouse.
TGUI_NODISCARD const Texture & getTextureBranchCollapsed() const
Returns the image used in front of a collapsed item.
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.
Base class for all renderer classes.
Definition WidgetRenderer.hpp:72
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:39