mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 12:54:00 +00:00
a1b86acc38
Conflicts: apps/openmw/CMakeLists.txt apps/openmw/mwgui/window_manager.cpp apps/openmw/mwgui/window_manager.hpp files/mygui/core.xml
52 lines
996 B
C++
52 lines
996 B
C++
#ifndef MWGUI_MODE_H
|
|
#define MWGUI_MODE_H
|
|
|
|
namespace MWGui
|
|
{
|
|
enum GuiMode
|
|
{
|
|
GM_Game, // Game mode, only HUD
|
|
GM_Inventory, // Inventory mode
|
|
GM_Container,
|
|
GM_MainMenu, // Main menu mode
|
|
|
|
GM_Console, // Console mode
|
|
GM_Journal, // Journal mode
|
|
|
|
GM_Scroll, // Read scroll
|
|
GM_Book, // Read book
|
|
|
|
GM_Dialogue, // NPC interaction
|
|
GM_Barter,
|
|
GM_Rest,
|
|
|
|
// Startup character creation dialogs
|
|
GM_Name,
|
|
GM_Race,
|
|
GM_Birth,
|
|
GM_Class,
|
|
GM_ClassGenerate,
|
|
GM_ClassPick,
|
|
GM_ClassCreate,
|
|
GM_Review,
|
|
|
|
// interactive MessageBox
|
|
GM_InterMessageBox
|
|
};
|
|
|
|
// Windows shown in inventory mode
|
|
enum GuiWindow
|
|
{
|
|
GW_None = 0,
|
|
|
|
GW_Map = 0x01,
|
|
GW_Inventory = 0x02,
|
|
GW_Magic = 0x04,
|
|
GW_Stats = 0x08,
|
|
|
|
GW_ALL = 0xFF
|
|
};
|
|
}
|
|
|
|
#endif
|