mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 21:19:57 +00:00
26 lines
536 B
C++
26 lines
536 B
C++
#ifndef MWGUI_EXPOSEDWINDOW_H
|
|
#define MWGUI_EXPOSEDWINDOW_H
|
|
|
|
#include <MyGUI_Window.h>
|
|
|
|
namespace MWGui
|
|
{
|
|
|
|
/**
|
|
* @brief subclass to provide access to some Widget internals.
|
|
*/
|
|
class Window : public MyGUI::Window
|
|
{
|
|
MYGUI_RTTI_DERIVED(Window)
|
|
|
|
public:
|
|
MyGUI::VectorWidgetPtr getSkinWidgetsByName (const std::string &name);
|
|
|
|
MyGUI::Widget* getSkinWidget(const std::string & _name, bool _throw = true);
|
|
///< Get a widget defined in the inner skin of this window.
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|
|
|