MyGUI  3.2.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"
13 #include "MyGUI_ResizingPolicy.h"
14 
15 namespace MyGUI
16 {
17 
22  public TextBox
23  {
25 
26  public:
27  MultiListItem();
28 
30  virtual void setCaption(const UString& _value);
32  virtual const UString& getCaption();
33 
34  void setItemResizingPolicy(ResizingPolicy _value);
35 
36  void setItemWidth(int _value);
37 
38  protected:
39  virtual void initialiseOverride();
40  virtual void shutdownOverride();
41 
42  virtual void setPropertyOverride(const std::string& _key, const std::string& _value);
43 
44  private:
45  MultiListBox* getOwner();
46 
47  };
48 
49 } // namespace MyGUI
50 
51 #endif // __MYGUI_MULTI_LIST_ITEM_H__