1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-07 12:54:00 +00:00
OpenMW/apps/openmw/mwgui/textcolours.hpp
Kagernac 3e6ccfce1f Took @Capostrophic's suggestion about leveraging a new tag format
Removed the color settings from Textcolours, they are unneccessary

Removed the Fallback workaround as a dedicated else condition was created with the new tag "fontcolouroptional". This code section has no involvement in Fallback

openmw_list.skin.xml was updated to reflect this new tag

settings.cfg was updated with the updated variable names
2024-06-04 23:14:44 -07:00

37 lines
713 B
C++

#ifndef MWGUI_TEXTCOLORS_H
#define MWGUI_TEXTCOLORS_H
#include <MyGUI_Colour.h>
namespace MWGui
{
struct TextColours
{
MyGUI::Colour header;
MyGUI::Colour normal;
MyGUI::Colour notify;
MyGUI::Colour link;
MyGUI::Colour linkOver;
MyGUI::Colour linkPressed;
MyGUI::Colour answer;
MyGUI::Colour answerOver;
MyGUI::Colour answerPressed;
MyGUI::Colour journalLink;
MyGUI::Colour journalLinkOver;
MyGUI::Colour journalLinkPressed;
MyGUI::Colour journalTopic;
MyGUI::Colour journalTopicOver;
MyGUI::Colour journalTopicPressed;
public:
void loadColours();
};
}
#endif