A console, that displays logger messages, and where the user can enter commands.
More...
#include <geogram_gfx/gui/console.h>
|
| Console (bool *visible_flag=nullptr) |
| Console constructor.
|
|
void | div (const std::string &value) override |
|
void | out (const std::string &value) override |
|
void | warn (const std::string &value) override |
|
void | err (const std::string &value) override |
|
void | status (const std::string &value) override |
|
void | clear () |
| Clears the contents of the console.
|
|
virtual void | printf (const char *fmt,...) |
| Displays a formatted string to the console.
|
|
virtual void | draw (bool *visible=nullptr, bool with_window=true) |
| Draws the console and handles the gui.
|
|
int | TextEditCallback (ImGuiInputTextCallbackData *data) |
|
void | show () |
|
void | hide () |
|
void | set_completion_callback (CompletionCallback CB) |
|
void | set_history_callback (HistoryCallback CB) |
|
void | set_history_size (index_t n) |
|
void | show_command_prompt () |
|
void | hide_command_prompt () |
|
|
virtual void | notify_error (const std::string &err) |
| This function is called whenever an error is displayed using err()
|
|
virtual bool | exec_command (const char *command) |
|
virtual void | update () |
| Redraws the GUI.
|
|
A console, that displays logger messages, and where the user can enter commands.
Inspired from ImGui AppLog example.
Definition at line 59 of file console.h.
◆ CompletionCallback
typedef void(* GEO::Console::CompletionCallback) (Console *console, const std::string &line, index_t startw, index_t endw, const std::string &cmpword, std::vector< std::string > &matches) |
◆ HistoryCallback
typedef void(* GEO::Console::HistoryCallback) (Console *console, index_t index, std::string &command) |
◆ Console()
GEO::Console::Console |
( |
bool * |
visible_flag = nullptr | ) |
|
Console constructor.
- Parameters
-
[in] | visible_flag | an optional pointer to application's variable that controls the visibility of this Console. |
◆ div()
void GEO::Console::div |
( |
const std::string & |
value | ) |
|
|
override |
◆ draw()
virtual void GEO::Console::draw |
( |
bool * |
visible = nullptr , |
|
|
bool |
with_window = true |
|
) |
| |
|
virtual |
Draws the console and handles the gui.
- Parameters
-
[in] | visible | an optional pointer to a visibility flag, controlled by a close button if different from nullptr. |
[in] | with_window | if true, then creates a new window using imgui::Begin() / imgui::End(), else caller is responsible for doing that. |
Reimplemented in OGF::Console.
◆ err()
void GEO::Console::err |
( |
const std::string & |
value | ) |
|
|
override |
◆ exec_command()
virtual bool GEO::Console::exec_command |
( |
const char * |
command | ) |
|
|
protectedvirtual |
◆ hide()
void GEO::Console::hide |
( |
| ) |
|
|
inline |
◆ hide_command_prompt()
void GEO::Console::hide_command_prompt |
( |
| ) |
|
|
inline |
◆ notify_error()
virtual void GEO::Console::notify_error |
( |
const std::string & |
err | ) |
|
|
protectedvirtual |
This function is called whenever an error is displayed using err()
Base implementation does nothing. This function is meant to be overloaded in derived classes.
- Parameters
-
[in] | err | the error message sent to err() |
Reimplemented in OGF::Console.
◆ out()
void GEO::Console::out |
( |
const std::string & |
value | ) |
|
|
override |
◆ set_completion_callback()
void GEO::Console::set_completion_callback |
( |
CompletionCallback |
CB | ) |
|
|
inline |
◆ set_history_callback()
void GEO::Console::set_history_callback |
( |
HistoryCallback |
CB | ) |
|
|
inline |
◆ set_history_size()
void GEO::Console::set_history_size |
( |
index_t |
n | ) |
|
|
inline |
◆ show()
void GEO::Console::show |
( |
| ) |
|
|
inline |
◆ show_command_prompt()
void GEO::Console::show_command_prompt |
( |
| ) |
|
|
inline |
◆ status()
void GEO::Console::status |
( |
const std::string & |
value | ) |
|
|
override |
◆ update()
virtual void GEO::Console::update |
( |
| ) |
|
|
protectedvirtual |
◆ warn()
void GEO::Console::warn |
( |
const std::string & |
value | ) |
|
|
override |
◆ buf_
ImGuiTextBuffer GEO::Console::buf_ |
|
protected |
◆ command_prompt_
bool GEO::Console::command_prompt_ |
|
protected |
◆ completion_callback_
CompletionCallback GEO::Console::completion_callback_ |
|
protected |
◆ filter_
ImGuiTextFilter GEO::Console::filter_ |
|
protected |
◆ history_callback_
HistoryCallback GEO::Console::history_callback_ |
|
protected |
◆ history_index_
index_t GEO::Console::history_index_ |
|
protected |
◆ input_buf_
char GEO::Console::input_buf_[geo_imgui_string_length] |
|
protected |
◆ line_offsets_
ImVector<int> GEO::Console::line_offsets_ |
|
protected |
Index to lines offset.
Definition at line 181 of file console.h.
◆ max_history_index_
index_t GEO::Console::max_history_index_ |
|
protected |
◆ scroll_to_bottom_
index_t GEO::Console::scroll_to_bottom_ |
|
protected |
◆ visible_flag_
bool* GEO::Console::visible_flag_ |
|
protected |
The documentation for this class was generated from the following file: