aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/facade/FontFacade.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/facade/FontFacade.h')
-rw-r--r--src/crepe/facade/FontFacade.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/crepe/facade/FontFacade.h b/src/crepe/facade/FontFacade.h
new file mode 100644
index 0000000..1b835d4
--- /dev/null
+++ b/src/crepe/facade/FontFacade.h
@@ -0,0 +1,28 @@
+#pragma once
+
+#include <memory>
+
+#include "../api/Asset.h"
+
+namespace crepe {
+
+/**
+ *
+ * \brief Font facade class for converting font family names to absolute file paths
+ *
+ */
+class FontFacade {
+public:
+ /**
+ *
+ * \brief Facade function to convert a font_family into an asset.
+ *
+ * This function uses the FontConfig library to convert a font family name (Arial, Inter, Helvetica) and converts it to the font source path.
+ * This function is static so the member function can be used without create a FontFacade object. This way it can be used in a constructor as FontFacade::get_font_asset().
+ * \param font_family Name of the font family name.
+ * \return Asset with filepath to the font.
+ */
+ static Asset get_font_asset(const std::string font_family);
+};
+
+} // namespace crepe