Index: trunk/FACT++/src/ReadlineColor.cc
===================================================================
--- trunk/FACT++/src/ReadlineColor.cc	(revision 10304)
+++ trunk/FACT++/src/ReadlineColor.cc	(revision 10304)
@@ -0,0 +1,186 @@
+// **************************************************************************
+/** @namespace ReadlineColor
+
+@brief A fewer helper functions to apply color attributes and redirect the output
+
+ */
+// **************************************************************************
+#include "ReadlineColor.h"
+
+#include "Time.h"
+#include "Readline.h"
+#include "WindowLog.h"
+
+using namespace std;
+
+// --------------------------------------------------------------------------
+//
+//! @returns
+//!    always true
+//
+bool ReadlineColor::PrintBootMsg(ostream &out, const string &name)
+{
+    out << endl;
+    out << kBlue << kBold << kUnderline << " Master Control Program " << endl;
+    out << endl;
+    out << kBlue << " ENCOM MX 16-923 USER # 0" << int(Time().Mjd()) << Time::fmt(" %H:%M:%S") << Time() << Time::reset << " INFORMATION" << endl;
+    out << endl;
+    out << kBlue << " TELESCOPE CONTROL PROGRAM: " << name << endl;
+    out << kBlue << " ANNEXED BY FACT COLLABORATION" << endl;
+    out << kBlue << " ORIGINAL PROGRAM WRITTEN BY T.BRETZ" << endl;
+    out << kBlue << " THIS INFOMATION " << kUnderline << "PRIORITY ONE" << endl;
+    out << kBlue << " END OF LINE" << endl << endl;
+    out << endl;
+
+    return true;
+}
+
+// --------------------------------------------------------------------------
+//
+//! @returns
+//!    always true
+//
+bool ReadlineColor::PrintCommands(ostream &out)
+{
+    out << endl;
+    out << " " << kUnderline << " Commands:" << endl;
+    out << "   No application specific commands defined." << endl;
+    out << endl;
+
+    return true;
+}
+
+// --------------------------------------------------------------------------
+//
+//! Displays the available ncurses attributes, like color.
+//!
+//! @returns
+//!    always true
+//
+bool ReadlineColor::PrintAttributes(ostream &out)
+{
+    out << endl;
+    out << " Attributes:" << endl;
+    out << "   " << kReset      << "kReset" << endl;
+    out << "   " << kNormal     << "kNormal" << endl;
+    out << "   " << kHighlight  << "kHighlight" << endl;
+    out << "   " << kReverse    << "kReverse" << endl;
+    out << "   " << kUnderline  << "kUnderline" << endl;
+    out << "   " << kBlink      << "kBlink" << endl;
+    out << "   " << kDim        << "kDim" << endl;
+    out << "   " << kBold       << "kBold" << endl;
+    out << "   " << kProtect    << "kProtect" << endl;
+    out << "   " << kInvisible  << "kInvisible" << endl;
+    out << "   " << kAltCharset << "kAltCharset" << kReset << "  (kAltCharset)" << endl;
+    out << endl;
+    out << " Colors:" << endl;
+    out << "   " << kDefault << "kDefault  " << kBold << "+  kBold" << endl;
+    out << "   " << kRed     << "kRed      " << kBold << "+  kBold" << endl;
+    out << "   " << kGreen   << "kGreen    " << kBold << "+  kBold" << endl;
+    out << "   " << kYellow  << "kYellow   " << kBold << "+  kBold" << endl;
+    out << "   " << kBlue    << "kBlue     " << kBold << "+  kBold" << endl;
+    out << "   " << kMagenta << "kMagenta  " << kBold << "+  kBold" << endl;
+    out << "   " << kCyan    << "kCyan     " << kBold << "+  kBold" << endl;
+    out << "   " << kWhite   << "kWhite    " << kBold << "+  kBold" << endl;
+    out << "   " << endl;
+
+    return true;
+}
+
+// --------------------------------------------------------------------------
+//
+//! Displays the keybindings available due to the Shell class
+//!
+//! @returns
+//!    always true
+//!
+//! @todo
+//!    Update output
+//
+bool ReadlineColor::PrintKeyBindings(ostream &out)
+{
+    out << endl;
+    out << " " << kUnderline << "Key bindings:" << endl;
+    out << kBold << "   Page-up         " << kReset << "Search backward in history" << endl;
+    out << kBold << "   Page-dn         " << kReset << "Search forward in history" << endl;
+    out << kBold << "   Ctrl-left       " << kReset << "One word backward" << endl;
+    out << kBold << "   Ctrl-right      " << kReset << "One word forward" << endl;
+    out << kBold << "   Ctrl-y          " << kReset << "Delete line" << endl;
+    out << kBold << "   Alt-end/Ctrl-k  " << kReset << "Delete until the end of the line" << endl;
+    out << kBold << "   F1              " << kReset << "Toggle visibility of upper panel" << endl;
+    out << endl;
+    out << " Default key-bindings are identical with your bash." << endl;
+    out << endl;
+
+    return true;
+}
+
+// --------------------------------------------------------------------------
+//
+//! Print a general help text which also includes the commands pre-defined
+//! by the Shell class.
+//!
+//! @returns
+//!    always true
+//!
+//! @todo
+//!    Get it up-to-date
+//
+bool ReadlineColor::PrintGeneralHelp(ostream &out, const string &name)
+{
+    out << endl;
+    out << " " << kUnderline << "General help:" << endl;
+    out << kBold << "   h,help       " << kReset << "Print this help message" << endl;
+    out << kBold << "   clear        " << kReset << "Clear history buffer" << endl;
+    out << kBold << "   lh,history   " << kReset << "Dump the history buffer to the screen" << endl;
+    out << kBold << "   v,variable   " << kReset << "Dump readline variables" << endl;
+    out << kBold << "   f,function   " << kReset << "Dump readline functions" << endl;
+    out << kBold << "   m,funmap     " << kReset << "Dump readline funmap" << endl;
+    out << kBold << "   c,command    " << kReset << "Dump available commands" << endl;
+    out << kBold << "   k,keylist    " << kReset << "Dump key bindings" << endl;
+    out << kBold << "   a,attrs      " << kReset << "Dump available stream attributes" << endl;
+    out << kBold << "   .q,quit      " << kReset << "Quit" << endl;
+    out << endl;
+    out << " The command history is automatically loaded and saves to" << endl;
+    out << " and from " << name << endl;
+    out << endl;
+
+    return true;
+}
+
+
+bool ReadlineColor::Process(ostream &out, const string &str)
+{
+    // ----------- Readline -----------
+
+    if (str=="lh" || str=="history")
+    {
+        out << endl << kBold << "History:" << endl;
+        return Readline::RedirectionWrapper(out, Readline::DumpHistory);
+    }
+
+    if (str=="v" || str=="variable")
+    {
+        out << endl << kBold << "Variables:" << endl;
+        return Readline::RedirectionWrapper(out, Readline::DumpVariables);
+    }
+
+    if (str=="f" || str=="function")
+    {
+        out << endl << kBold << "Functions:" << endl;
+        return Readline::RedirectionWrapper(out, Readline::DumpFunctions);
+    }
+
+    if (str=="m" || str=="funmap")
+    {
+        out << endl << kBold << "Funmap:" << endl;
+        return Readline::RedirectionWrapper(out, Readline::DumpFunmap);
+    }
+
+    // ------------ ReadlineWindow -------------
+
+    if (str=="a" || str=="attrs")
+        return PrintAttributes(out);
+
+    return false;
+}
Index: trunk/FACT++/src/ReadlineColor.h
===================================================================
--- trunk/FACT++/src/ReadlineColor.h	(revision 10304)
+++ trunk/FACT++/src/ReadlineColor.h	(revision 10304)
@@ -0,0 +1,18 @@
+#ifndef FACT_ReadlineColor
+#define FACT_ReadlineColor
+
+#include <ostream>
+
+namespace ReadlineColor
+{
+    bool PrintBootMsg(std::ostream &out, const std::string &name);
+    bool PrintAttributes(std::ostream &out);
+
+    bool PrintGeneralHelp(std::ostream &out, const std::string &name);
+    bool PrintCommands(std::ostream &out);
+    bool PrintKeyBindings(std::ostream &out);
+
+    bool Process(std::ostream &out, const std::string &str);
+};
+
+#endif
