forked from teamnwah/openmw-tes3coop
Remove some unused methods from OEngine::Gui::Layout
This commit is contained in:
parent
0bd9f30c67
commit
d99e416208
1 changed files with 2 additions and 23 deletions
|
@ -42,6 +42,7 @@ namespace GUI
|
|||
MYGUI_ASSERT( ! _throw, "widget name '" << _name << "' in layout '" << mLayoutName << "' not found.");
|
||||
}
|
||||
|
||||
private:
|
||||
void initialise(const std::string & _layout,
|
||||
MyGUI::Widget* _parent = nullptr)
|
||||
{
|
||||
|
@ -74,6 +75,7 @@ namespace GUI
|
|||
mListWindowRoot.clear();
|
||||
}
|
||||
|
||||
public:
|
||||
void setCoord(int x, int y, int w, int h)
|
||||
{
|
||||
mMainWidget->setCoord(x,y,w,h);
|
||||
|
@ -121,29 +123,6 @@ namespace GUI
|
|||
adjustWindowCaption();
|
||||
}
|
||||
|
||||
void setState(const std::string& widget, const std::string& state)
|
||||
{
|
||||
MyGUI::Widget* pt;
|
||||
getWidget(pt, widget);
|
||||
pt->_setWidgetState(state);
|
||||
}
|
||||
|
||||
void setTextColor(const std::string& name, float r, float g, float b)
|
||||
{
|
||||
MyGUI::Widget* pt;
|
||||
getWidget(pt, name);
|
||||
MyGUI::TextBox *st = dynamic_cast<MyGUI::TextBox*>(pt);
|
||||
if(st != NULL)
|
||||
st->setTextColour(MyGUI::Colour(b,g,r));
|
||||
}
|
||||
|
||||
void setImage(const std::string& name, const std::string& imgName)
|
||||
{
|
||||
MyGUI::ImageBox* pt;
|
||||
getWidget(pt, name);
|
||||
pt->setImageTexture(imgName);
|
||||
}
|
||||
|
||||
void adjustButtonSize(MyGUI::Button* button)
|
||||
{
|
||||
// adjust size of button to fit its text
|
||||
|
|
Loading…
Reference in a new issue