summaryrefslogtreecommitdiff
path: root/src/gui/gui.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/gui.h')
-rw-r--r--src/gui/gui.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gui/gui.h b/src/gui/gui.h
index 13df02822..578202b17 100644
--- a/src/gui/gui.h
+++ b/src/gui/gui.h
@@ -86,6 +86,12 @@ class Gui : public gcn::Gui
{ return mHelpFont; }
/**
+ * Return secure font.
+ */
+ gcn::Font *getSecureFont() const
+ { return mSecureFont; }
+
+ /**
* Return the Font used for "Info Particles", i.e. ones showing, what
* you picked up, etc.
*/
@@ -135,6 +141,7 @@ class Gui : public gcn::Gui
gcn::Font *mGuiFont; /**< The global GUI font */
gcn::Font *mInfoParticleFont; /**< Font for Info Particles*/
gcn::Font *mHelpFont; /**< Font for Help Window*/
+ gcn::Font *mSecureFont; /**< Font for secure labels*/
bool mCustomCursor; /**< Show custom cursor */
ImageSet *mMouseCursors; /**< Mouse cursor images */
float mMouseCursorAlpha;