Use configured bind_address for HTTPFetch
[oweals/minetest.git] / src / guiChatConsole.h
index 9e76a116e72c1e4000e07ec7801deef42c0738c2..2bf45fdf4704becfb955e56be09db2da8c8a5e9c 100644 (file)
@@ -1,6 +1,6 @@
 /*
-Minetest-c55
-Copyright (C) 2011 celeron55, Perttu Ahola <celeron55@gmail.com>
+Minetest
+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
@@ -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
 };