| 6468 | bool ScrollToBottom; |
| 6469 | |
| 6470 | ExampleAppConsole() |
| 6471 | { |
| 6472 | IMGUI_DEMO_MARKER("Examples/Console"); |
| 6473 | ClearLog(); |
| 6474 | memset(InputBuf, 0, sizeof(InputBuf)); |
| 6475 | HistoryPos = -1; |
| 6476 | |
| 6477 | // "CLASSIFY" is here to provide the test case where "C"+[tab] completes to "CL" and display multiple matches. |
| 6478 | Commands.push_back("HELP"); |
| 6479 | Commands.push_back("HISTORY"); |
| 6480 | Commands.push_back("CLEAR"); |
| 6481 | Commands.push_back("CLASSIFY"); |
| 6482 | AutoScroll = true; |
| 6483 | ScrollToBottom = false; |
| 6484 | AddLog("Welcome to Dear ImGui!"); |
| 6485 | } |
| 6486 | ~ExampleAppConsole() |
| 6487 | { |
| 6488 | ClearLog(); |