Lines Matching defs:Text
9 // [SECTION] Widgets: Text, etc.
110 // [SECTION] Widgets: Text, etc.
113 // - Text()
234 void ImGui::Text(const char* fmt, ...)
343 // Text with a little bullet aligned to the typical tree node.
3236 // FIXME: We should probably compare the whole buffer to be on the safety side. Comparing buf (utf8) and edit_state.Text (wchar).
3357 const bool is_wordmove_key_down = is_osx ? io.KeyAlt : io.KeyCtrl; // OS X style: Text editing cursor movement using Alt instead of Ctrl
3358 const bool is_startend_key_down = is_osx && io.KeySuper && !io.KeyCtrl && !io.KeyAlt; // OS X style: Line/Text Start and End using Cmd+Arrows instead of Home/End
3928 if (InputText("##Text", buf, IM_ARRAYSIZE(buf), ImGuiInputTextFlags_CharsHexadecimal | ImGuiInputTextFlags_CharsUppercase))
4252 Text("Current");
4256 Text("Original");
4519 Text("#%02X%02X%02X\nR: %d, G: %d, B: %d\n(%.3f, %.3f, %.3f)", cr, cg, cb, cr, cg, cb, col[0], col[1], col[2]);
4521 Text("#%02X%02X%02X%02X\nR:%d, G:%d, B:%d, A:%d\n(%.3f, %.3f, %.3f, %.3f)", cr, cg, cb, ca, cr, cg, cb, ca, col[0], col[1], col[2], col[3]);
5352 // Text overlay
5406 Text("%s: %s", prefix, (b ? "true" : "false"));
5411 Text("%s: %d", prefix, v);
5416 Text("%s: %d", prefix, v);
5425 Text(fmt, prefix, v);
5429 Text("%s: %.3f", prefix, v);