]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/guiChatConsole.h
Added configurable ambient_occlusion_gamma. Default is 2.2 (same as previous hardcode...
[dragonfireclient.git] / src / guiChatConsole.h
index 6e73f1dc62b978640bbffcb9637ef7c3532cc8f3..2bf45fdf4704becfb955e56be09db2da8c8a5e9c 100644 (file)
@@ -1,6 +1,6 @@
 /*
 Minetest
-Copyright (C) 2011 celeron55, Perttu Ahola <celeron55@gmail.com>
+Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
 
 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
@@ -22,6 +22,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 
 #include "irrlichttypes_extrabloated.h"
 #include "chat.h"
+#include "config.h"
 
 class Client;
 
@@ -39,6 +40,9 @@ class GUIChatConsole : public gui::IGUIElement
        // 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 @@ class GUIChatConsole : public gui::IGUIElement
        // font
        gui::IGUIFont* m_font;
        v2u32 m_fontsize;
+#if USE_FREETYPE
+       bool m_use_freetype;
+#endif
 };