MCPcopy Create free account
hub / github.com/Raais/ImStudio / ExampleAppConsole

Method ExampleAppConsole

src/third-party/imgui/imgui_demo.cpp:6470–6485  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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();

Callers

nothing calls this directly

Calls 1

push_backMethod · 0.80

Tested by

no test coverage detected