| 3658 | bool ScrollToBottom; |
| 3659 | |
| 3660 | ExampleAppConsole() |
| 3661 | { |
| 3662 | ClearLog(); |
| 3663 | memset(InputBuf, 0, sizeof(InputBuf)); |
| 3664 | HistoryPos = -1; |
| 3665 | Commands.push_back("HELP"); |
| 3666 | Commands.push_back("HISTORY"); |
| 3667 | Commands.push_back("CLEAR"); |
| 3668 | Commands.push_back("CLASSIFY"); // "classify" is only here to provide an example of "C"+[tab] completing to "CL" and displaying matches. |
| 3669 | AutoScroll = true; |
| 3670 | ScrollToBottom = false; |
| 3671 | AddLog("Welcome to Dear ImGui!"); |
| 3672 | } |
| 3673 | ~ExampleAppConsole() |
| 3674 | { |
| 3675 | ClearLog(); |