mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-03 17:37:18 +00:00
27 lines
550 B
C++
27 lines
550 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 ExposedWindow : public MyGUI::Window
|
|
{
|
|
MYGUI_RTTI_DERIVED(ExposedWindow)
|
|
|
|
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
|
|
|