MyGUI  3.2.2
MyGUI_TabItem.cpp
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 #include "MyGUI_Precompiled.h"
8 #include "MyGUI_TabItem.h"
9 
10 namespace MyGUI
11 {
12 
14  {
15  }
16 
18  {
19  Base::initialiseOverride();
20 
21  // FIXME проверить смену скина ибо должно один раз вызываться
22  //mOwner = getParent()->castType<TabControl>();
23  }
24 
26  {
27  TabControl* owner = getParent() != nullptr ? getParent()->castType<TabControl>(false) : nullptr;
28  if (owner != nullptr)
29  owner->_notifyDeleteItem(this);
30 
31  Base::shutdownOverride();
32  }
33 
34  void TabItem::setCaption(const UString& _value)
35  {
36  TabControl* owner = getParent() != nullptr ? getParent()->castType<TabControl>(false) : nullptr;
37  if (owner != nullptr)
38  owner->setItemName(this, _value);
39  else
40  Base::setCaption(_value);
41  }
42 
44  {
45  TabControl* owner = getParent() != nullptr ? getParent()->castType<TabControl>(false) : nullptr;
46  if (owner != nullptr)
47  return owner->getItemName(this);
48  return Base::getCaption();
49  }
50 
51  void TabItem::setButtonWidth(int _width)
52  {
53  TabControl* owner = getParent() != nullptr ? getParent()->castType<TabControl>(false) : nullptr;
54  if (owner != nullptr)
55  owner->setButtonWidth(this, _width);
56  }
57 
58  void TabItem::setPropertyOverride(const std::string& _key, const std::string& _value)
59  {
61  if (_key == "ButtonWidth")
62  setButtonWidth(utility::parseValue<int>(_value));
63 
64  else
65  {
66  Base::setPropertyOverride(_key, _value);
67  return;
68  }
69 
70  eventChangeProperty(this, _key, _value);
71  }
72 
73 } // namespace MyGUI
void _notifyDeleteItem(TabItem *_item)
void setButtonWidth(TabItem *_item, int _width=DEFAULT)
Set button width.
virtual void setCaption(const UString &_value)
EventHandle_WidgetStringString eventChangeProperty
Definition: MyGUI_Widget.h:266
void setItemName(TabItem *_item, const UString &_name)
Replace an item name.
Widget * getParent() const
virtual void initialiseOverride()
const UString & getItemName(TabItem *_item)
Get item name.
Type * castType(bool _throw=true)
Definition: MyGUI_IObject.h:18
virtual void shutdownOverride()
A UTF-16 string with implicit conversion to/from std::string and std::wstring.
virtual void setPropertyOverride(const std::string &_key, const std::string &_value)
void setButtonWidth(int _value=DEFAULT)
Set button width.
virtual const UString & getCaption()
TabControl properties. Skin childs. TabControl widget description should be here.