ES-DE/es-core/src/HelpStyle.h

24 lines
436 B
C
Raw Normal View History

2014-05-29 20:41:47 +00:00
#pragma once
#ifndef ES_CORE_HELP_STYLE_H
#define ES_CORE_HELP_STYLE_H
2014-05-29 20:41:47 +00:00
#include "math/Vector2f.h"
2014-05-29 20:41:47 +00:00
#include <memory>
#include <string>
class ThemeData;
class Font;
struct HelpStyle
{
Vector2f position;
2014-05-29 20:41:47 +00:00
unsigned int iconColor;
unsigned int textColor;
std::shared_ptr<Font> font;
HelpStyle(); // default values
void applyTheme(const std::shared_ptr<ThemeData>& theme, const std::string& view);
};
#endif // ES_CORE_HELP_STYLE_H