Add properties for new widget classes to MyGUI plugin
parent
2066097202
commit
6b65502557
@ -1,169 +0,0 @@
|
|||||||
#include "list.hpp"
|
|
||||||
|
|
||||||
#include <MyGUI_Gui.h>
|
|
||||||
#include <MyGUI_Button.h>
|
|
||||||
#include <MyGUI_ImageBox.h>
|
|
||||||
#include <MyGUI_ScrollBar.h>
|
|
||||||
|
|
||||||
namespace MWGui
|
|
||||||
{
|
|
||||||
|
|
||||||
namespace Widgets
|
|
||||||
{
|
|
||||||
|
|
||||||
MWList::MWList() :
|
|
||||||
mClient(0)
|
|
||||||
, mScrollView(0)
|
|
||||||
, mItemHeight(0)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void MWList::initialiseOverride()
|
|
||||||
{
|
|
||||||
Base::initialiseOverride();
|
|
||||||
|
|
||||||
assignWidget(mClient, "Client");
|
|
||||||
if (mClient == 0)
|
|
||||||
mClient = this;
|
|
||||||
|
|
||||||
mScrollView = mClient->createWidgetReal<MyGUI::ScrollView>(
|
|
||||||
"MW_ScrollView", MyGUI::FloatCoord(0.0, 0.0, 1.0, 1.0),
|
|
||||||
MyGUI::Align::Top | MyGUI::Align::Left | MyGUI::Align::Stretch, getName() + "_ScrollView");
|
|
||||||
}
|
|
||||||
|
|
||||||
void MWList::addItem(const std::string& name)
|
|
||||||
{
|
|
||||||
mItems.push_back(name);
|
|
||||||
}
|
|
||||||
|
|
||||||
void MWList::addSeparator()
|
|
||||||
{
|
|
||||||
mItems.push_back("");
|
|
||||||
}
|
|
||||||
|
|
||||||
void MWList::adjustSize()
|
|
||||||
{
|
|
||||||
redraw();
|
|
||||||
}
|
|
||||||
|
|
||||||
void MWList::redraw(bool scrollbarShown)
|
|
||||||
{
|
|
||||||
const int _scrollBarWidth = 20; // fetch this from skin?
|
|
||||||
const int scrollBarWidth = scrollbarShown ? _scrollBarWidth : 0;
|
|
||||||
const int spacing = 3;
|
|
||||||
size_t viewPosition = -mScrollView->getViewOffset().top;
|
|
||||||
|
|
||||||
while (mScrollView->getChildCount())
|
|
||||||
{
|
|
||||||
MyGUI::Gui::getInstance().destroyWidget(mScrollView->getChildAt(0));
|
|
||||||
}
|
|
||||||
|
|
||||||
mItemHeight = 0;
|
|
||||||
int i=0;
|
|
||||||
for (std::vector<std::string>::const_iterator it=mItems.begin();
|
|
||||||
it!=mItems.end(); ++it)
|
|
||||||
{
|
|
||||||
if (*it != "")
|
|
||||||
{
|
|
||||||
if (mListItemSkin.empty())
|
|
||||||
throw std::runtime_error("MWList needs a ListItemSkin property");
|
|
||||||
MyGUI::Button* button = mScrollView->createWidget<MyGUI::Button>(
|
|
||||||
mListItemSkin, MyGUI::IntCoord(0, mItemHeight, mScrollView->getSize().width - scrollBarWidth - 2, 24),
|
|
||||||
MyGUI::Align::Left | MyGUI::Align::Top, getName() + "_item_" + (*it));
|
|
||||||
button->setCaption((*it));
|
|
||||||
button->getSubWidgetText()->setWordWrap(true);
|
|
||||||
button->getSubWidgetText()->setTextAlign(MyGUI::Align::Left);
|
|
||||||
button->eventMouseWheel += MyGUI::newDelegate(this, &MWList::onMouseWheel);
|
|
||||||
button->eventMouseButtonClick += MyGUI::newDelegate(this, &MWList::onItemSelected);
|
|
||||||
|
|
||||||
int height = button->getTextSize().height;
|
|
||||||
button->setSize(MyGUI::IntSize(button->getSize().width, height));
|
|
||||||
button->setUserData(i);
|
|
||||||
|
|
||||||
mItemHeight += height + spacing;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
MyGUI::ImageBox* separator = mScrollView->createWidget<MyGUI::ImageBox>("MW_HLine",
|
|
||||||
MyGUI::IntCoord(2, mItemHeight, mScrollView->getWidth() - scrollBarWidth - 4, 18),
|
|
||||||
MyGUI::Align::Left | MyGUI::Align::Top | MyGUI::Align::HStretch);
|
|
||||||
separator->setNeedMouseFocus(false);
|
|
||||||
|
|
||||||
mItemHeight += 18 + spacing;
|
|
||||||
}
|
|
||||||
++i;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Canvas size must be expressed with VScroll disabled, otherwise MyGUI would expand the scroll area when the scrollbar is hidden
|
|
||||||
mScrollView->setVisibleVScroll(false);
|
|
||||||
mScrollView->setCanvasSize(mClient->getSize().width, std::max(mItemHeight, mClient->getSize().height));
|
|
||||||
mScrollView->setVisibleVScroll(true);
|
|
||||||
|
|
||||||
if (!scrollbarShown && mItemHeight > mClient->getSize().height)
|
|
||||||
redraw(true);
|
|
||||||
|
|
||||||
size_t viewRange = mScrollView->getCanvasSize().height;
|
|
||||||
if(viewPosition > viewRange)
|
|
||||||
viewPosition = viewRange;
|
|
||||||
mScrollView->setViewOffset(MyGUI::IntPoint(0, viewPosition * -1));
|
|
||||||
}
|
|
||||||
|
|
||||||
void MWList::setPropertyOverride(const std::string &_key, const std::string &_value)
|
|
||||||
{
|
|
||||||
if (_key == "ListItemSkin")
|
|
||||||
mListItemSkin = _value;
|
|
||||||
else
|
|
||||||
Base::setPropertyOverride(_key, _value);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool MWList::hasItem(const std::string& name)
|
|
||||||
{
|
|
||||||
return (std::find(mItems.begin(), mItems.end(), name) != mItems.end());
|
|
||||||
}
|
|
||||||
|
|
||||||
unsigned int MWList::getItemCount()
|
|
||||||
{
|
|
||||||
return mItems.size();
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string MWList::getItemNameAt(unsigned int at)
|
|
||||||
{
|
|
||||||
assert(at < mItems.size() && "List item out of bounds");
|
|
||||||
return mItems[at];
|
|
||||||
}
|
|
||||||
|
|
||||||
void MWList::removeItem(const std::string& name)
|
|
||||||
{
|
|
||||||
assert( std::find(mItems.begin(), mItems.end(), name) != mItems.end() );
|
|
||||||
mItems.erase( std::find(mItems.begin(), mItems.end(), name) );
|
|
||||||
}
|
|
||||||
|
|
||||||
void MWList::clear()
|
|
||||||
{
|
|
||||||
mItems.clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
void MWList::onMouseWheel(MyGUI::Widget* _sender, int _rel)
|
|
||||||
{
|
|
||||||
//NB view offset is negative
|
|
||||||
if (mScrollView->getViewOffset().top + _rel*0.3 > 0)
|
|
||||||
mScrollView->setViewOffset(MyGUI::IntPoint(0, 0));
|
|
||||||
else
|
|
||||||
mScrollView->setViewOffset(MyGUI::IntPoint(0, mScrollView->getViewOffset().top + _rel*0.3));
|
|
||||||
}
|
|
||||||
|
|
||||||
void MWList::onItemSelected(MyGUI::Widget* _sender)
|
|
||||||
{
|
|
||||||
std::string name = _sender->castType<MyGUI::Button>()->getCaption();
|
|
||||||
int id = *_sender->getUserData<int>();
|
|
||||||
eventItemSelected(name, id);
|
|
||||||
eventWidgetSelected(_sender);
|
|
||||||
}
|
|
||||||
|
|
||||||
MyGUI::Widget* MWList::getItemWidget(const std::string& name)
|
|
||||||
{
|
|
||||||
return mScrollView->findWidget (getName() + "_item_" + name);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,74 +0,0 @@
|
|||||||
#ifndef MWGUI_LIST_HPP
|
|
||||||
#define MWGUI_LIST_HPP
|
|
||||||
|
|
||||||
#include <MyGUI_ScrollView.h>
|
|
||||||
|
|
||||||
namespace MWGui
|
|
||||||
{
|
|
||||||
namespace Widgets
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* \brief a very simple list widget that supports word-wrapping entries
|
|
||||||
* \note if the width or height of the list changes, you must call adjustSize() method
|
|
||||||
*/
|
|
||||||
class MWList : public MyGUI::Widget
|
|
||||||
{
|
|
||||||
MYGUI_RTTI_DERIVED(MWList)
|
|
||||||
public:
|
|
||||||
MWList();
|
|
||||||
|
|
||||||
typedef MyGUI::delegates::CMultiDelegate2<const std::string&, int> EventHandle_StringInt;
|
|
||||||
typedef MyGUI::delegates::CMultiDelegate1<MyGUI::Widget*> EventHandle_Widget;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Event: Item selected with the mouse.
|
|
||||||
* signature: void method(std::string itemName, int index)
|
|
||||||
*/
|
|
||||||
EventHandle_StringInt eventItemSelected;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Event: Item selected with the mouse.
|
|
||||||
* signature: void method(MyGUI::Widget* sender)
|
|
||||||
*/
|
|
||||||
EventHandle_Widget eventWidgetSelected;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Call after the size of the list changed, or items were inserted/removed
|
|
||||||
*/
|
|
||||||
void adjustSize();
|
|
||||||
|
|
||||||
void addItem(const std::string& name);
|
|
||||||
void addSeparator(); ///< add a seperator between the current and the next item.
|
|
||||||
void removeItem(const std::string& name);
|
|
||||||
bool hasItem(const std::string& name);
|
|
||||||
unsigned int getItemCount();
|
|
||||||
std::string getItemNameAt(unsigned int at); ///< \attention if there are separators, this method will return "" at the place where the separator is
|
|
||||||
void clear();
|
|
||||||
|
|
||||||
MyGUI::Widget* getItemWidget(const std::string& name);
|
|
||||||
///< get widget for an item name, useful to set up tooltip
|
|
||||||
|
|
||||||
virtual void setPropertyOverride(const std::string& _key, const std::string& _value);
|
|
||||||
|
|
||||||
protected:
|
|
||||||
void initialiseOverride();
|
|
||||||
|
|
||||||
void redraw(bool scrollbarShown = false);
|
|
||||||
|
|
||||||
void onMouseWheel(MyGUI::Widget* _sender, int _rel);
|
|
||||||
void onItemSelected(MyGUI::Widget* _sender);
|
|
||||||
|
|
||||||
private:
|
|
||||||
MyGUI::ScrollView* mScrollView;
|
|
||||||
MyGUI::Widget* mClient;
|
|
||||||
std::string mListItemSkin;
|
|
||||||
|
|
||||||
std::vector<std::string> mItems;
|
|
||||||
|
|
||||||
int mItemHeight; // height of all items
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
|
@ -0,0 +1,165 @@
|
|||||||
|
#include "list.hpp"
|
||||||
|
|
||||||
|
#include <MyGUI_Gui.h>
|
||||||
|
#include <MyGUI_Button.h>
|
||||||
|
#include <MyGUI_ImageBox.h>
|
||||||
|
#include <MyGUI_ScrollBar.h>
|
||||||
|
|
||||||
|
namespace Gui
|
||||||
|
{
|
||||||
|
|
||||||
|
MWList::MWList() :
|
||||||
|
mClient(0)
|
||||||
|
, mScrollView(0)
|
||||||
|
, mItemHeight(0)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void MWList::initialiseOverride()
|
||||||
|
{
|
||||||
|
Base::initialiseOverride();
|
||||||
|
|
||||||
|
assignWidget(mClient, "Client");
|
||||||
|
if (mClient == 0)
|
||||||
|
mClient = this;
|
||||||
|
|
||||||
|
mScrollView = mClient->createWidgetReal<MyGUI::ScrollView>(
|
||||||
|
"MW_ScrollView", MyGUI::FloatCoord(0.0, 0.0, 1.0, 1.0),
|
||||||
|
MyGUI::Align::Top | MyGUI::Align::Left | MyGUI::Align::Stretch, getName() + "_ScrollView");
|
||||||
|
}
|
||||||
|
|
||||||
|
void MWList::addItem(const std::string& name)
|
||||||
|
{
|
||||||
|
mItems.push_back(name);
|
||||||
|
}
|
||||||
|
|
||||||
|
void MWList::addSeparator()
|
||||||
|
{
|
||||||
|
mItems.push_back("");
|
||||||
|
}
|
||||||
|
|
||||||
|
void MWList::adjustSize()
|
||||||
|
{
|
||||||
|
redraw();
|
||||||
|
}
|
||||||
|
|
||||||
|
void MWList::redraw(bool scrollbarShown)
|
||||||
|
{
|
||||||
|
const int _scrollBarWidth = 20; // fetch this from skin?
|
||||||
|
const int scrollBarWidth = scrollbarShown ? _scrollBarWidth : 0;
|
||||||
|
const int spacing = 3;
|
||||||
|
size_t viewPosition = -mScrollView->getViewOffset().top;
|
||||||
|
|
||||||
|
while (mScrollView->getChildCount())
|
||||||
|
{
|
||||||
|
MyGUI::Gui::getInstance().destroyWidget(mScrollView->getChildAt(0));
|
||||||
|
}
|
||||||
|
|
||||||
|
mItemHeight = 0;
|
||||||
|
int i=0;
|
||||||
|
for (std::vector<std::string>::const_iterator it=mItems.begin();
|
||||||
|
it!=mItems.end(); ++it)
|
||||||
|
{
|
||||||
|
if (*it != "")
|
||||||
|
{
|
||||||
|
if (mListItemSkin.empty())
|
||||||
|
return;
|
||||||
|
MyGUI::Button* button = mScrollView->createWidget<MyGUI::Button>(
|
||||||
|
mListItemSkin, MyGUI::IntCoord(0, mItemHeight, mScrollView->getSize().width - scrollBarWidth - 2, 24),
|
||||||
|
MyGUI::Align::Left | MyGUI::Align::Top, getName() + "_item_" + (*it));
|
||||||
|
button->setCaption((*it));
|
||||||
|
button->getSubWidgetText()->setWordWrap(true);
|
||||||
|
button->getSubWidgetText()->setTextAlign(MyGUI::Align::Left);
|
||||||
|
button->eventMouseWheel += MyGUI::newDelegate(this, &MWList::onMouseWheel);
|
||||||
|
button->eventMouseButtonClick += MyGUI::newDelegate(this, &MWList::onItemSelected);
|
||||||
|
|
||||||
|
int height = button->getTextSize().height;
|
||||||
|
button->setSize(MyGUI::IntSize(button->getSize().width, height));
|
||||||
|
button->setUserData(i);
|
||||||
|
|
||||||
|
mItemHeight += height + spacing;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
MyGUI::ImageBox* separator = mScrollView->createWidget<MyGUI::ImageBox>("MW_HLine",
|
||||||
|
MyGUI::IntCoord(2, mItemHeight, mScrollView->getWidth() - scrollBarWidth - 4, 18),
|
||||||
|
MyGUI::Align::Left | MyGUI::Align::Top | MyGUI::Align::HStretch);
|
||||||
|
separator->setNeedMouseFocus(false);
|
||||||
|
|
||||||
|
mItemHeight += 18 + spacing;
|
||||||
|
}
|
||||||
|
++i;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Canvas size must be expressed with VScroll disabled, otherwise MyGUI would expand the scroll area when the scrollbar is hidden
|
||||||
|
mScrollView->setVisibleVScroll(false);
|
||||||
|
mScrollView->setCanvasSize(mClient->getSize().width, std::max(mItemHeight, mClient->getSize().height));
|
||||||
|
mScrollView->setVisibleVScroll(true);
|
||||||
|
|
||||||
|
if (!scrollbarShown && mItemHeight > mClient->getSize().height)
|
||||||
|
redraw(true);
|
||||||
|
|
||||||
|
size_t viewRange = mScrollView->getCanvasSize().height;
|
||||||
|
if(viewPosition > viewRange)
|
||||||
|
viewPosition = viewRange;
|
||||||
|
mScrollView->setViewOffset(MyGUI::IntPoint(0, viewPosition * -1));
|
||||||
|
}
|
||||||
|
|
||||||
|
void MWList::setPropertyOverride(const std::string &_key, const std::string &_value)
|
||||||
|
{
|
||||||
|
if (_key == "ListItemSkin")
|
||||||
|
mListItemSkin = _value;
|
||||||
|
else
|
||||||
|
Base::setPropertyOverride(_key, _value);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool MWList::hasItem(const std::string& name)
|
||||||
|
{
|
||||||
|
return (std::find(mItems.begin(), mItems.end(), name) != mItems.end());
|
||||||
|
}
|
||||||
|
|
||||||
|
unsigned int MWList::getItemCount()
|
||||||
|
{
|
||||||
|
return mItems.size();
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string MWList::getItemNameAt(unsigned int at)
|
||||||
|
{
|
||||||
|
assert(at < mItems.size() && "List item out of bounds");
|
||||||
|
return mItems[at];
|
||||||
|
}
|
||||||
|
|
||||||
|
void MWList::removeItem(const std::string& name)
|
||||||
|
{
|
||||||
|
assert( std::find(mItems.begin(), mItems.end(), name) != mItems.end() );
|
||||||
|
mItems.erase( std::find(mItems.begin(), mItems.end(), name) );
|
||||||
|
}
|
||||||
|
|
||||||
|
void MWList::clear()
|
||||||
|
{
|
||||||
|
mItems.clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
void MWList::onMouseWheel(MyGUI::Widget* _sender, int _rel)
|
||||||
|
{
|
||||||
|
//NB view offset is negative
|
||||||
|
if (mScrollView->getViewOffset().top + _rel*0.3 > 0)
|
||||||
|
mScrollView->setViewOffset(MyGUI::IntPoint(0, 0));
|
||||||
|
else
|
||||||
|
mScrollView->setViewOffset(MyGUI::IntPoint(0, mScrollView->getViewOffset().top + _rel*0.3));
|
||||||
|
}
|
||||||
|
|
||||||
|
void MWList::onItemSelected(MyGUI::Widget* _sender)
|
||||||
|
{
|
||||||
|
std::string name = _sender->castType<MyGUI::Button>()->getCaption();
|
||||||
|
int id = *_sender->getUserData<int>();
|
||||||
|
eventItemSelected(name, id);
|
||||||
|
eventWidgetSelected(_sender);
|
||||||
|
}
|
||||||
|
|
||||||
|
MyGUI::Widget* MWList::getItemWidget(const std::string& name)
|
||||||
|
{
|
||||||
|
return mScrollView->findWidget (getName() + "_item_" + name);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,71 @@
|
|||||||
|
#ifndef MWGUI_LIST_HPP
|
||||||
|
#define MWGUI_LIST_HPP
|
||||||
|
|
||||||
|
#include <MyGUI_ScrollView.h>
|
||||||
|
|
||||||
|
namespace Gui
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* \brief a very simple list widget that supports word-wrapping entries
|
||||||
|
* \note if the width or height of the list changes, you must call adjustSize() method
|
||||||
|
*/
|
||||||
|
class MWList : public MyGUI::Widget
|
||||||
|
{
|
||||||
|
MYGUI_RTTI_DERIVED(MWList)
|
||||||
|
public:
|
||||||
|
MWList();
|
||||||
|
|
||||||
|
typedef MyGUI::delegates::CMultiDelegate2<const std::string&, int> EventHandle_StringInt;
|
||||||
|
typedef MyGUI::delegates::CMultiDelegate1<MyGUI::Widget*> EventHandle_Widget;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Event: Item selected with the mouse.
|
||||||
|
* signature: void method(std::string itemName, int index)
|
||||||
|
*/
|
||||||
|
EventHandle_StringInt eventItemSelected;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Event: Item selected with the mouse.
|
||||||
|
* signature: void method(MyGUI::Widget* sender)
|
||||||
|
*/
|
||||||
|
EventHandle_Widget eventWidgetSelected;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Call after the size of the list changed, or items were inserted/removed
|
||||||
|
*/
|
||||||
|
void adjustSize();
|
||||||
|
|
||||||
|
void addItem(const std::string& name);
|
||||||
|
void addSeparator(); ///< add a seperator between the current and the next item.
|
||||||
|
void removeItem(const std::string& name);
|
||||||
|
bool hasItem(const std::string& name);
|
||||||
|
unsigned int getItemCount();
|
||||||
|
std::string getItemNameAt(unsigned int at); ///< \attention if there are separators, this method will return "" at the place where the separator is
|
||||||
|
void clear();
|
||||||
|
|
||||||
|
MyGUI::Widget* getItemWidget(const std::string& name);
|
||||||
|
///< get widget for an item name, useful to set up tooltip
|
||||||
|
|
||||||
|
virtual void setPropertyOverride(const std::string& _key, const std::string& _value);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
void initialiseOverride();
|
||||||
|
|
||||||
|
void redraw(bool scrollbarShown = false);
|
||||||
|
|
||||||
|
void onMouseWheel(MyGUI::Widget* _sender, int _rel);
|
||||||
|
void onItemSelected(MyGUI::Widget* _sender);
|
||||||
|
|
||||||
|
private:
|
||||||
|
MyGUI::ScrollView* mScrollView;
|
||||||
|
MyGUI::Widget* mClient;
|
||||||
|
std::string mListItemSkin;
|
||||||
|
|
||||||
|
std::vector<std::string> mItems;
|
||||||
|
|
||||||
|
int mItemHeight; // height of all items
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
@ -1,30 +1,70 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<MyGUI>
|
<MyGUI>
|
||||||
<MyGUI type="Widgets">
|
<MyGUI type="Widgets">
|
||||||
<!-- New widget class definitions -->
|
<!-- New widget class definitions -->
|
||||||
<Widget name="VBox">
|
<Widget name="ImageButton">
|
||||||
<Property key="DefaultSkin" value=""/>
|
<Property key="DefaultSkin" value="ImageBox"/>
|
||||||
<Property key="Skin" value="" group="Plugin" name="VBox"/>
|
<Property key="Skin" value="ImageBox" group="Plugin" name="ImageButton"/>
|
||||||
<Property key="Parent" value="true"/>
|
<Property key="Parent" value="true"/>
|
||||||
<Property key="Child" value="true"/>
|
<Property key="Child" value="true"/>
|
||||||
<Parameter key="Spacing" value="1 int"/>
|
<Parameter key="ImageHighlighted" value="String"/>
|
||||||
<Parameter key="Padding" value="1 int"/>
|
<Parameter key="ImagePushed" value="String"/>
|
||||||
<Parameter key="AutoResize" value="Bool"/>
|
<Parameter key="ImageNormal" value="String"/>
|
||||||
</Widget>
|
</Widget>
|
||||||
<Widget name="HBox">
|
<Widget name="VBox">
|
||||||
<Property key="DefaultSkin" value=""/>
|
<Property key="DefaultSkin" value=""/>
|
||||||
<Property key="Skin" value="" group="Plugin" name="HBox"/>
|
<Property key="Skin" value="" group="Plugin" name="VBox"/>
|
||||||
<Property key="Parent" value="true"/>
|
<Property key="Parent" value="true"/>
|
||||||
<Property key="Child" value="true"/>
|
<Property key="Child" value="true"/>
|
||||||
<Parameter key="Spacing" value="1 int"/>
|
<Parameter key="Spacing" value="1 int"/>
|
||||||
<Parameter key="Padding" value="1 int"/>
|
<Parameter key="Padding" value="1 int"/>
|
||||||
<Parameter key="AutoResize" value="Bool"/>
|
<Parameter key="AutoResize" value="Bool"/>
|
||||||
</Widget>
|
</Widget>
|
||||||
</MyGUI>
|
<Widget name="HBox">
|
||||||
<MyGUI type="Plugin">
|
<Property key="DefaultSkin" value=""/>
|
||||||
<Plugin>
|
<Property key="Skin" value="" group="Plugin" name="HBox"/>
|
||||||
<Source>./Plugin_MyGUI_OpenMW_Resources</Source>
|
<Property key="Parent" value="true"/>
|
||||||
<Source build="Debug">./Plugin_MyGUI_OpenMW_Resources_d</Source>
|
<Property key="Child" value="true"/>
|
||||||
</Plugin>
|
<Parameter key="Spacing" value="1 int"/>
|
||||||
</MyGUI>
|
<Parameter key="Padding" value="1 int"/>
|
||||||
|
<Parameter key="AutoResize" value="Bool"/>
|
||||||
|
</Widget>
|
||||||
|
<Widget name="AutoSizedButton">
|
||||||
|
<Property key="Base" value="Button"/>
|
||||||
|
<Property key="DefaultSkin" value="MW_Button"/>
|
||||||
|
<Property key="Skin" value="MW_Button" group="Plugin" name="AutoSizedButton"/>
|
||||||
|
<Property key="Parent" value="true"/>
|
||||||
|
<Property key="Child" value="true"/>
|
||||||
|
<Parameter key="ExpandDirection" value="Align"/>
|
||||||
|
</Widget>
|
||||||
|
<Widget name="AutoSizedTextBox">
|
||||||
|
<Property key="Base" value="TextBox"/>
|
||||||
|
<Property key="DefaultSkin" value="SandText"/>
|
||||||
|
<Property key="Skin" value="SandText" group="Plugin" name="AutoSizedTextBox"/>
|
||||||
|
<Property key="Parent" value="true"/>
|
||||||
|
<Property key="Child" value="true"/>
|
||||||
|
<Parameter key="ExpandDirection" value="Align"/>
|
||||||
|
</Widget>
|
||||||
|
<Widget name="AutoSizedEditBox">
|
||||||
|
<Property key="Base" value="EditBox"/>
|
||||||
|
<Property key="DefaultSkin" value="SandText"/>
|
||||||
|
<Property key="Skin" value="SandText" group="Plugin" name="AutoSizedEditBox"/>
|
||||||
|
<Property key="Parent" value="true"/>
|
||||||
|
<Property key="Child" value="true"/>
|
||||||
|
<Parameter key="ExpandDirection" value="Align"/>
|
||||||
|
</Widget>
|
||||||
|
<Widget name="MWList">
|
||||||
|
<Property key="DefaultSkin" value="MW_SimpleList"/>
|
||||||
|
<Property key="Skin" value="MW_SimpleList" group="Plugin" name="MWList"/>
|
||||||
|
<Property key="Parent" value="true"/>
|
||||||
|
<Property key="Child" value="true"/>
|
||||||
|
<Parameter key="ListItemSkin" value="Skin"/>
|
||||||
|
</Widget>
|
||||||
|
</MyGUI>
|
||||||
|
<MyGUI type="Plugin">
|
||||||
|
<Plugin>
|
||||||
|
<Source>./Plugin_MyGUI_OpenMW_Resources</Source>
|
||||||
|
<Source build="Debug">./Plugin_MyGUI_OpenMW_Resources_d</Source>
|
||||||
|
</Plugin>
|
||||||
|
</MyGUI>
|
||||||
</MyGUI>
|
</MyGUI>
|
||||||
|
Loading…
Reference in New Issue