FACT++  1.0
void Console::EventHook ( bool  )
virtual

Flush the buffer if we are in continous mode, and call Readline's EventHook to update the prompt.

Reimplemented from Readline.

Reimplemented in RemoteControl< Console >.

Definition at line 153 of file Console.cc.

References WindowLog::Display(), Readline::EventHook(), fContinous, fLogO, and WindowLog::GetSizeBacklog().

154 {
155  // If the output is continous and we are going to output something
156  // first jump back to the beginning of the line (well, that
157  // doesn't work well if the input line is already two lines)
158  // and then flush the buffer.
159  const bool newline = fContinous && fLogO.GetSizeBacklog()>0;
160  if (newline)
161  {
162  // Clear the line we are going to overwrite
163  std::cout << "\r\033[0K";
164  fLogO.Display(true);
165  }
166 
167  // Call Readline's EventHook to update the prompt
168  // and signal readline so that a new prompt is displayed
169  Readline::EventHook(newline);
170 }
bool fContinous
Definition: Console.h:40
size_t GetSizeBacklog() const
Get the current size of the backlog in bytes.
Definition: WindowLog.h:133
WindowLog fLogO
Definition: Console.h:37
void Display(bool empty=false)
Display backlog.
Definition: WindowLog.cc:46
virtual void EventHook(bool newline=false)
Definition: Readline.cc:315

+ Here is the call graph for this function: