src/Graphics/Console.hh
changeset 430 74e562e16399
parent 428 712b943195a6
child 431 c6d7272a164b
--- a/src/Graphics/Console.hh	Sat Jan 24 01:19:38 2009 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,34 +0,0 @@
-#ifndef GRAPHICS_CONSOLE_HH
-#define GRAPHICS_CONSOLE_HH
-
-#include "GUI.hh"
-
-#include <list>
-
-namespace graphics 
-{
-
-class Console : public CL_Component {
-protected:
-    /** our list of messages */
-    std::list<std::string> messages;
-
-    /** our input dialog */
-    CL_InputBox input;
-
-public:
-    /**
-     * Construct a new console, positioned in the given area, with the given parent
-     */
-    Console (const CL_Rect& pos, CL_Component* parent);
-
-private:
-    /**
-     * Calculate the position for the input box
-     */
-    CL_Rect getInputPosition (void);
-};
-
-}
-
-#endif