2020-09-21 17:17:34 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-06-26 15:17:35 +00:00
|
|
|
//
|
2020-09-21 17:17:34 +00:00
|
|
|
// EmulationStation Desktop Edition
|
2020-06-26 15:17:35 +00:00
|
|
|
// HelpStyle.h
|
|
|
|
//
|
|
|
|
// Style (default colors, position and origin) for the help system.
|
|
|
|
// Also theme handling.
|
|
|
|
//
|
|
|
|
|
2017-10-31 17:12:50 +00:00
|
|
|
#ifndef ES_CORE_HELP_STYLE_H
|
|
|
|
#define ES_CORE_HELP_STYLE_H
|
2014-05-29 20:41:47 +00:00
|
|
|
|
2021-08-17 20:11:16 +00:00
|
|
|
#include "utils/MathUtil.h"
|
2020-09-21 17:17:34 +00:00
|
|
|
|
2014-05-29 20:41:47 +00:00
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class Font;
|
2017-11-01 22:21:10 +00:00
|
|
|
class ThemeData;
|
2014-05-29 20:41:47 +00:00
|
|
|
|
2020-06-26 15:17:35 +00:00
|
|
|
struct HelpStyle {
|
2021-08-16 16:25:01 +00:00
|
|
|
glm::vec2 position;
|
|
|
|
glm::vec2 origin;
|
2020-06-26 15:17:35 +00:00
|
|
|
unsigned int textColor;
|
2021-08-22 14:43:15 +00:00
|
|
|
unsigned int textColorDimmed;
|
|
|
|
unsigned int iconColor;
|
|
|
|
unsigned int iconColorDimmed;
|
2020-06-26 15:17:35 +00:00
|
|
|
std::shared_ptr<Font> font;
|
2021-08-20 15:20:05 +00:00
|
|
|
float entrySpacing;
|
|
|
|
float iconTextSpacing;
|
2021-08-20 15:51:36 +00:00
|
|
|
std::string textStyle;
|
2014-05-29 20:41:47 +00:00
|
|
|
|
2021-08-22 15:51:19 +00:00
|
|
|
struct CustomButtonIcons {
|
|
|
|
|
|
|
|
// General.
|
|
|
|
std::string dpad_updown;
|
|
|
|
std::string dpad_leftright;
|
|
|
|
std::string dpad_all;
|
|
|
|
std::string thumbstick_click;
|
|
|
|
std::string button_l;
|
|
|
|
std::string button_r;
|
|
|
|
std::string button_lr;
|
2021-09-17 19:14:43 +00:00
|
|
|
std::string button_lt;
|
|
|
|
std::string button_rt;
|
2021-08-22 15:51:19 +00:00
|
|
|
|
|
|
|
// SNES.
|
|
|
|
std::string button_a_SNES;
|
|
|
|
std::string button_b_SNES;
|
|
|
|
std::string button_x_SNES;
|
|
|
|
std::string button_y_SNES;
|
|
|
|
std::string button_start_SNES;
|
|
|
|
std::string button_back_SNES;
|
|
|
|
|
|
|
|
// PS.
|
|
|
|
std::string button_a_PS;
|
|
|
|
std::string button_b_PS;
|
|
|
|
std::string button_x_PS;
|
|
|
|
std::string button_y_PS;
|
|
|
|
std::string button_start_PS4;
|
|
|
|
std::string button_back_PS4;
|
|
|
|
std::string button_start_PS5;
|
|
|
|
std::string button_back_PS5;
|
|
|
|
|
|
|
|
// XBOX.
|
|
|
|
std::string button_a_XBOX;
|
|
|
|
std::string button_b_XBOX;
|
|
|
|
std::string button_x_XBOX;
|
|
|
|
std::string button_y_XBOX;
|
|
|
|
std::string button_start_XBOX;
|
|
|
|
std::string button_back_XBOX;
|
|
|
|
std::string button_start_XBOX360;
|
|
|
|
std::string button_back_XBOX360;
|
|
|
|
};
|
|
|
|
|
|
|
|
CustomButtonIcons mCustomButtons;
|
|
|
|
|
2020-06-26 15:17:35 +00:00
|
|
|
HelpStyle(); // Default values.
|
|
|
|
void applyTheme(const std::shared_ptr<ThemeData>& theme, const std::string& view);
|
2017-10-31 17:12:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ES_CORE_HELP_STYLE_H
|