mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 21:42:13 +00:00
25 lines
424 B
C++
25 lines
424 B
C++
#ifndef MWGUI_WINDOW_BASE_H
|
|
#define MWGUI_WINDOW_BASE_H
|
|
|
|
#include <openengine/gui/layout.hpp>
|
|
|
|
namespace MWGui
|
|
{
|
|
class WindowManager;
|
|
|
|
class WindowBase: public OEngine::GUI::Layout
|
|
{
|
|
public:
|
|
WindowBase(const std::string& parLayout, WindowManager& parWindowManager);
|
|
|
|
virtual void open();
|
|
void center();
|
|
|
|
protected:
|
|
WindowManager& mWindowManager;
|
|
};
|
|
}
|
|
|
|
#endif
|
|
|