OpenMW
apps/openmw/mwgui/exposedwindow.hpp
Go to the documentation of this file.
00001 #ifndef MWGUI_EXPOSEDWINDOW_H
00002 #define MWGUI_EXPOSEDWINDOW_H
00003 
00004 #include <MyGUI_Window.h>
00005 
00006 namespace MWGui
00007 {
00008 
00012     class ExposedWindow : public MyGUI::Window
00013     {
00014         MYGUI_RTTI_DERIVED(ExposedWindow)
00015 
00016     public:
00017         MyGUI::VectorWidgetPtr getSkinWidgetsByName (const std::string &name);
00018 
00019         MyGUI::Widget* getSkinWidget(const std::string & _name, bool _throw = true);
00021     };
00022 
00023 }
00024 
00025 #endif
00026