1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-17 10:10:23 +00:00
OpenMW/apps/openmw/mwgui/mainmenu.hpp

70 lines
1.3 KiB
C++

#ifndef OPENMW_GAME_MWGUI_MAINMENU_H
#define OPENMW_GAME_MWGUI_MAINMENU_H
#include <memory>
#include "savegamedialog.hpp"
#include "windowbase.hpp"
namespace Gui
{
class ImageButton;
}
namespace VFS
{
class Manager;
}
namespace MWGui
{
class BackgroundImage;
class VideoWidget;
class MainMenu : public WindowBase
{
int mWidth;
int mHeight;
bool mHasAnimatedMenu;
public:
MainMenu(int w, int h, const VFS::Manager* vfs, const std::string& versionDescription);
void onResChange(int w, int h) override;
void setVisible(bool visible) override;
void onFrame(float dt) override;
bool exit() override;
private:
const VFS::Manager* mVFS;
MyGUI::Widget* mButtonBox;
MyGUI::TextBox* mVersionText;
BackgroundImage* mBackground;
MyGUI::ImageBox* mVideoBackground;
VideoWidget* mVideo; // For animated main menus
std::map<std::string, Gui::ImageButton*, std::less<>> mButtons;
void onButtonClicked(MyGUI::Widget* sender);
void onNewGameConfirmed();
void onExitConfirmed();
void showBackground(bool show);
void updateMenu();
std::unique_ptr<SaveGameDialog> mSaveGameDialog;
};
}
#endif