Lines Matching defs:mode

140  - Dear ImGui is an implementation of the IMGUI paradigm (immediate-mode graphical user interface, a term coined by Casey Muratori).
845 Windows: you can use the WM_CHAR or WM_UNICHAR or WM_IME_CHAR message (depending if your app is built using Unicode or MultiByte mode).
1510 FILE* ImFileOpen(const char* filename, const char* mode)
1515 const int mode_wsize = ImTextCountCharsFromUtf8(mode, NULL) + 1;
1519 ImTextStrFromUtf8(&buf[filename_wsize], mode_wsize, mode, NULL);
1522 return fopen(filename, mode);
2765 // Horizontal layout mode
7500 float ImGui::GetNavInputAmount(ImGuiNavInput n, ImGuiInputReadMode mode)
7503 if (mode == ImGuiInputReadMode_Down)
7507 if (t < 0.0f && mode == ImGuiInputReadMode_Released) // Return 1.0f when just released, no repeat, ignore analog input.
7511 if (mode == ImGuiInputReadMode_Pressed) // Return 1.0f when just pressed, no repeat, ignore analog input.
7513 if (mode == ImGuiInputReadMode_Repeat)
7515 if (mode == ImGuiInputReadMode_RepeatSlow)
7517 if (mode == ImGuiInputReadMode_RepeatFast)
7522 ImVec2 ImGui::GetNavInputAmount2d(ImGuiNavDirSourceFlags dir_sources, ImGuiInputReadMode mode, float slow_factor, float fast_factor)
7526 delta += ImVec2(GetNavInputAmount(ImGuiNavInput_KeyRight_, mode) - GetNavInputAmount(ImGuiNavInput_KeyLeft_, mode), GetNavInputAmount(ImGuiNavInput_KeyDown_, mode) - GetNavInputAmount(ImGuiNavInput_KeyUp_, mode));
7528 delta += ImVec2(GetNavInputAmount(ImGuiNavInput_DpadRight, mode) - GetNavInputAmount(ImGuiNavInput_DpadLeft, mode), GetNavInputAmount(ImGuiNavInput_DpadDown, mode) - GetNavInputAmount(ImGuiNavInput_DpadUp, mode));
7530 delta += ImVec2(GetNavInputAmount(ImGuiNavInput_LStickRight, mode) - GetNavInputAmount(ImGuiNavInput_LStickLeft, mode), GetNavInputAmount(ImGuiNavInput_LStickDown, mode) - GetNavInputAmount(ImGuiNavInput_LStickUp, mode));
7973 // Window management mode (hold to: change focus/move/resize, tap to: toggle menu layer)