2010-09-15 14:48:19 +02:00
|
|
|
#ifndef MWGUI_MODE_H
|
|
|
|
#define MWGUI_MODE_H
|
|
|
|
|
|
|
|
namespace MWGui
|
|
|
|
{
|
|
|
|
enum GuiMode
|
|
|
|
{
|
2012-05-22 21:40:42 +02:00
|
|
|
GM_Settings, // Settings window
|
2010-09-15 14:48:19 +02:00
|
|
|
GM_Inventory, // Inventory mode
|
2012-04-15 19:32:41 +02:00
|
|
|
GM_Container,
|
2010-09-15 14:48:19 +02:00
|
|
|
GM_MainMenu, // Main menu mode
|
|
|
|
|
|
|
|
GM_Console, // Console mode
|
2011-11-28 16:51:11 +01:00
|
|
|
GM_Journal, // Journal mode
|
2010-09-15 14:48:19 +02:00
|
|
|
|
2012-05-03 05:26:05 +02:00
|
|
|
GM_Scroll, // Read scroll
|
|
|
|
GM_Book, // Read book
|
2012-05-24 15:57:23 +02:00
|
|
|
GM_Alchemy, // Make potions
|
2010-09-15 14:48:19 +02:00
|
|
|
|
|
|
|
GM_Dialogue, // NPC interaction
|
|
|
|
GM_Barter,
|
|
|
|
GM_Rest,
|
2012-09-19 02:53:06 +02:00
|
|
|
GM_RestBed,
|
2012-09-09 14:10:07 -04:00
|
|
|
GM_SpellBuying,
|
2012-09-26 18:30:47 +02:00
|
|
|
GM_Travel,
|
2012-09-23 00:36:20 +02:00
|
|
|
GM_SpellCreation,
|
2012-09-27 08:47:47 +02:00
|
|
|
GM_Enchanting,
|
2012-10-17 18:03:02 +02:00
|
|
|
GM_Training,
|
2010-09-15 14:48:19 +02:00
|
|
|
|
2012-09-14 19:44:00 +02:00
|
|
|
GM_Levelup,
|
|
|
|
|
2010-09-15 14:48:19 +02:00
|
|
|
// Startup character creation dialogs
|
|
|
|
GM_Name,
|
|
|
|
GM_Race,
|
|
|
|
GM_Birth,
|
|
|
|
GM_Class,
|
2010-10-10 00:42:56 +02:00
|
|
|
GM_ClassGenerate,
|
|
|
|
GM_ClassPick,
|
|
|
|
GM_ClassCreate,
|
2011-06-19 19:10:44 +02:00
|
|
|
GM_Review,
|
|
|
|
|
|
|
|
// interactive MessageBox
|
2012-08-26 10:52:06 +02:00
|
|
|
GM_InterMessageBox,
|
|
|
|
|
2012-09-12 19:15:29 +02:00
|
|
|
GM_Loading,
|
|
|
|
GM_LoadingWallpaper,
|
|
|
|
|
2012-08-26 10:52:06 +02:00
|
|
|
GM_QuickKeysMenu
|
2010-09-15 14:48:19 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// 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
|