From 4dec9c3fc5ab25c511396703f8d1c01caa758655 Mon Sep 17 00:00:00 2001 From: KroArtem Date: Mon, 17 Mar 2014 23:56:49 +0400 Subject: [PATCH] having fun reverting changes --- src/guiengine/engine.cpp | 7 +++++++ src/guiengine/engine.hpp | 2 ++ 2 files changed, 9 insertions(+) diff --git a/src/guiengine/engine.cpp b/src/guiengine/engine.cpp index cd46e20ca..a9854516e 100644 --- a/src/guiengine/engine.cpp +++ b/src/guiengine/engine.cpp @@ -786,7 +786,14 @@ namespace GUIEngine { return Private::small_font_height; } // getSmallFontHeight + + // ------------------------------------------------------------------------ + int getLargeFontHeight() + { + return Private::large_font_height; + } // getSmallFontHeight + // ------------------------------------------------------------------------ void clear() { diff --git a/src/guiengine/engine.hpp b/src/guiengine/engine.hpp index a978f8106..5dcfce20d 100644 --- a/src/guiengine/engine.hpp +++ b/src/guiengine/engine.hpp @@ -169,6 +169,8 @@ namespace GUIEngine */ inline Skin* getSkin() { return Private::g_skin; } + Screen* getScreenNamed(const char* name); + /** \return the height of the title font in pixels */ int getTitleFontHeight();