MyGUI 3.4.1
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 public TextBox
23 {
25
26 public:
28
30 void setCaption(const UString& _value) override;
32 const UString& getCaption() const override;
33
34 void setItemResizingPolicy(ResizingPolicy _value);
35
36 void setItemWidth(int _value);
37
38 protected:
39 void initialiseOverride() override;
40 void shutdownOverride() override;
41
42 void setPropertyOverride(const std::string& _key, const std::string& _value) override;
43
44 private:
45 MultiListBox* getOwner() const;
46
47 };
48
49} // namespace MyGUI
50
51#endif // MYGUI_MULTI_LIST_ITEM_H_
#define MYGUI_EXPORT
#define MYGUI_RTTI_DERIVED(DerivedType)
Definition: MyGUI_RTTI.h:48
widget description should be here.
widget description should be here.
widget description should be here.
Definition: MyGUI_TextBox.h:21
A UTF-16 string with implicit conversion to/from std::string and std::wstring.