MyGUI 3.4.3
MyGUI_MultiListItem.h
Go to the documentation of this file.
1/*
2 * This source file is part of MyGUI. For the latest info, see http://mygui.info/
3 * Distributed under the MIT License
4 * (See accompanying file COPYING.MIT or copy at http://opensource.org/licenses/MIT)
5 */
6
7#ifndef MYGUI_MULTI_LIST_ITEM_H_
8#define MYGUI_MULTI_LIST_ITEM_H_
9
10#include "MyGUI_Prerequest.h"
11#include "MyGUI_TextBox.h"
12#include "MyGUI_TabControl.h"
14
15namespace MyGUI
16{
17
22 {
24
25 public:
27 void setCaption(const UString& _value) override;
29 const UString& getCaption() const override;
30
32
33 void setItemWidth(int _value);
34
35 protected:
36 void initialiseOverride() override;
37 void shutdownOverride() override;
38
39 void setPropertyOverride(std::string_view _key, std::string_view _value) override;
40
41 private:
42 MultiListBox* getOwner() const;
43 };
44
45} // namespace MyGUI
46
47#endif // MYGUI_MULTI_LIST_ITEM_H_
#define MYGUI_EXPORT
#define MYGUI_RTTI_DERIVED(DerivedType)
Definition MyGUI_RTTI.h:69
widget description should be here.
widget description should be here.
void setPropertyOverride(std::string_view _key, std::string_view _value) override
void setItemWidth(int _value)
void initialiseOverride() override
void setCaption(const UString &_value) override
const UString & getCaption() const override
void setItemResizingPolicy(ResizingPolicy _value)
void shutdownOverride() override
widget description should be here.
A UTF-16 string with implicit conversion to/from std::string and std::wstring.