#pragma once #include #include #include class ThemeData; class Font; struct HelpStyle { Eigen::Vector2f position; unsigned int iconColor; unsigned int textColor; std::shared_ptr font; HelpStyle(); // default values void applyTheme(const std::shared_ptr& theme, const std::string& view); };