X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2FguiChatConsole.h;h=2bf45fdf4704becfb955e56be09db2da8c8a5e9c;hb=8852333eb3042580592ade478e5def20f8ed5d4c;hp=9e76a116e72c1e4000e07ec7801deef42c0738c2;hpb=037b2591971d752e67fa7d47095b996b3f56da5a;p=oweals%2Fminetest.git diff --git a/src/guiChatConsole.h b/src/guiChatConsole.h index 9e76a116e..2bf45fdf4 100644 --- a/src/guiChatConsole.h +++ b/src/guiChatConsole.h @@ -1,6 +1,6 @@ /* -Minetest-c55 -Copyright (C) 2011 celeron55, Perttu Ahola +Minetest +Copyright (C) 2013 celeron55, Perttu Ahola This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by @@ -20,8 +20,9 @@ with this program; if not, write to the Free Software Foundation, Inc., #ifndef GUICHATCONSOLE_HEADER #define GUICHATCONSOLE_HEADER -#include "common_irrlicht.h" +#include "irrlichttypes_extrabloated.h" #include "chat.h" +#include "config.h" class Client; @@ -39,6 +40,9 @@ public: // This doesn't open immediately but initiates an animation. // You should call isOpenInhibited() before this. void openConsole(f32 height); + + bool isOpen() const; + // Check if the console should not be opened at the moment // This is to avoid reopening the console immediately after closing bool isOpenInhibited() const; @@ -118,6 +122,9 @@ private: // font gui::IGUIFont* m_font; v2u32 m_fontsize; +#if USE_FREETYPE + bool m_use_freetype; +#endif };