MCPcopy Create free account

hub / github.com/andrewchilicki/LumonMDR / functions

Functions2,571 in github.com/andrewchilicki/LumonMDR

MethodIsKeyPressed
external/imgui/imgui.cpp:9093
MethodIsKeyReleased
external/imgui/imgui.cpp:9138
MethodIsLegacyNativeDupe
external/imgui/imgui_demo.cpp:7416
MethodIsMouseClicked
external/imgui/imgui.cpp:9167
MethodIsMouseDoubleClicked
external/imgui/imgui.cpp:9208
MethodIsMouseDown
external/imgui/imgui.cpp:9153
MethodIsMouseDragPastThreshold
Return if a mouse click/drag went past the given threshold. Valid to call during the MouseReleased frame. [Internal] This doesn't test if the button i
external/imgui/imgui.cpp:9249
MethodIsMouseDragging
external/imgui/imgui.cpp:9258
MethodIsMouseHoveringRect
Test if mouse cursor is hovering given rectangle NB- Rectangle is clipped by our current clip setting NB- Expand the rectangle to be generous on impre
external/imgui/imgui.cpp:9232
MethodIsMousePosValid
We typically use ImVec2(-FLT_MAX,-FLT_MAX) to denote an invalid mouse position.
external/imgui/imgui.cpp:9294
MethodIsMouseReleased
external/imgui/imgui.cpp:9194
MethodIsPopupOpen
Supported flags: ImGuiPopupFlags_AnyPopupId, ImGuiPopupFlags_AnyPopupLevel
external/imgui/imgui.cpp:11327
MethodIsPreview
external/imgui/imgui.h:2515
MethodIsRectVisible
external/imgui/imgui.cpp:8430
MethodIsWindowAbove
external/imgui/imgui.cpp:7971
MethodIsWindowAppearing
external/imgui/imgui.cpp:8175
MethodIsWindowChildOf
external/imgui/imgui.cpp:7942
MethodIsWindowCollapsed
external/imgui/imgui.cpp:8169
MethodIsWindowContentHoverable
external/imgui/imgui.cpp:4450
MethodIsWindowFocused
Similar to IsWindowHovered()
external/imgui/imgui.cpp:11970
MethodIsWindowHovered
Is current window hovered and hoverable (e.g. not blocked by a popup/modal)? See ImGuiHoveredFlags_ for options. IMPORTANT: If you are trying to check
external/imgui/imgui.cpp:7995
MethodIsWindowNavFocusable
Can we focus this window with CTRL+TAB (or PadMenu + PadFocusPrev/PadFocusNext) Note that NoNavFocus makes the window not reachable with CTRL+TAB but
external/imgui/imgui.cpp:13555
MethodIsWindowWithinBeginStackOf
external/imgui/imgui.cpp:7958
MethodItemAdd
Declare item bounding box for clipping and interaction. Note that the size can be different than the one provided to ItemSize(). Typically, widgets th
external/imgui/imgui.cpp:10461
MethodItemHandleShortcut
Called from within ItemAdd: at this point we can read from NextItemData and write to LastItemData
external/imgui/imgui.cpp:9975
MethodItemHoverable
Internal facing ItemHoverable() used when submitting widgets. Differs slightly from IsItemHovered(). (this does not rely on LastItemData it can be cal
external/imgui/imgui.cpp:4590
MethodItemSize
external/imgui/imgui.cpp:10549
FunctionItems_ArrayGetter
Getter for the old Combo() API: const char*[]
external/imgui/imgui_widgets.cpp:2028
FunctionItems_SingleStringGetter
Getter for the old Combo() API: "item1\0item2\0item3\0"
external/imgui/imgui_widgets.cpp:2035
FunctionJSON_CATCH
external/nlohmann/json.hpp:20000
FunctionJSON_INTERNAL_CATCH
external/nlohmann/json.hpp:21639
MethodKeepAliveID
Code not using ItemAdd() may need to call this manually otherwise ActiveId will be cleared. In IMGUI_VERSION_NUM < 18717 this was called by GetID().
external/imgui/imgui.cpp:10448
MethodLabelText
external/imgui/imgui_widgets.cpp:340
MethodLabelTextV
Add a label+text combo aligned to other label+value widgets
external/imgui/imgui_widgets.cpp:349
MethodListBox
external/imgui/imgui_widgets.cpp:2130
MethodLoadIniSettingsFromDisk
external/imgui/imgui.cpp:14541
MethodLoadIniSettingsFromMemory
Zero-tolerance, no error reporting, cheap .ini parsing Set ini_size==0 to let us use strlen(ini_data). Do not call this function with a 0 if your buff
external/imgui/imgui.cpp:14554
MethodLocalizeRegisterEntries
external/imgui/imgui.cpp:14808
MethodLogBegin
Start logging/capturing text output
external/imgui/imgui.cpp:14302
MethodLogButtons
Helper to display logging buttons FIXME-OBSOLETE: We should probably obsolete this and let the user have their own helper (this is one of the oldest f
external/imgui/imgui.cpp:14418
MethodLogFinish
external/imgui/imgui.cpp:14382
MethodLogRenderedText
Internal version that takes a position to decide on newline placement and pad items according to their depth. We split text into individual lines to a
external/imgui/imgui.cpp:14243
MethodLogSetNextTextDecoration
Important: doesn't copy underlying data, use carefully (prefix/suffix must be in scope at the time of the next LogRenderedText)
external/imgui/imgui.cpp:14321
MethodLogText
external/imgui/imgui.cpp:14219
MethodLogTextV
external/imgui/imgui.cpp:14231
MethodLogToBuffer
external/imgui/imgui.cpp:14374
MethodLogToClipboard
Start logging/capturing text output to clipboard
external/imgui/imgui.cpp:14366
MethodLogToFile
Start logging/capturing text output to given file
external/imgui/imgui.cpp:14341
MethodLogToTTY
external/imgui/imgui.cpp:14328
FunctionMallocWrapper
external/imgui/imgui.cpp:1295
MethodMarkIniSettingsDirty
external/imgui/imgui.cpp:14492
MethodMarkItemEdited
external/imgui/imgui.cpp:4429
MethodMemAlloc
IM_ALLOC() == ImGui::MemAlloc()
external/imgui/imgui.cpp:4728
MethodMemFree
IM_FREE() == ImGui::MemFree()
external/imgui/imgui.cpp:4739
FunctionMenuBarRect
external/imgui/imgui_internal.h:2590
MethodMenuItem
external/imgui/imgui_widgets.cpp:9105
MethodMenuItemEx
external/imgui/imgui_widgets.cpp:9028
MethodMoveAll
external/imgui/imgui_demo.cpp:3046
MethodMoveSelected
external/imgui/imgui_demo.cpp:3056
MethodMultiSelectAddSetAll
external/imgui/imgui_widgets.cpp:8000
MethodMultiSelectAddSetRange
external/imgui/imgui_widgets.cpp:8007
MethodMultiSelectItemFooter
In charge of: - Auto-select on navigation. - Box-select toggle handling. - Right-click handling. - Altering selection based on Ctrl/Shift modifiers, b
external/imgui/imgui_widgets.cpp:7803
MethodMultiSelectItemHeader
In charge of: - Applying SetAll for submitted items. - Applying SetRange for submitted items and record end points. - Altering button behavior flags t
external/imgui/imgui_widgets.cpp:7734
MethodMyCallback
external/imgui/imgui_demo.cpp:1745
MethodMyDocument
external/imgui/imgui_demo.cpp:9727
MethodMyInputTextMultiline
Note: Because ImGui:: is a namespace you would typically add your own function into the namespace. For example, you code may declare a function 'ImGui
external/imgui/imgui_demo.cpp:1827
MethodMyResizeCallback
external/imgui/imgui_demo.cpp:1813
MethodNavApplyItemToResult
external/imgui/imgui.cpp:12449
MethodNavCalcPreferredRefPos
external/imgui/imgui.cpp:12800
MethodNavCalcPreferredRefPosSource
external/imgui/imgui.cpp:12787
MethodNavClearPreferredPosForAxis
external/imgui/imgui.cpp:12241
MethodNavEndFrame
external/imgui/imgui.cpp:13478
MethodNavHighlightActivated
external/imgui/imgui.cpp:12234
MethodNavInitRequestApplyResult
external/imgui/imgui.cpp:13034
MethodNavInitWindow
This needs to be called before we submit any widget (aka in or before Begin)
external/imgui/imgui.cpp:12756
MethodNavMoveRequestApplyResult
Apply result from previous frame navigation directional move request. Always called from NavUpdate()
external/imgui/imgui.cpp:13233
MethodNavMoveRequestButNoResultYet
external/imgui/imgui.cpp:12618
MethodNavMoveRequestCancel
external/imgui/imgui.cpp:12671
MethodNavMoveRequestForward
Forward will reuse the move request again on the next frame (generally with modifications done to it)
external/imgui/imgui.cpp:12679
MethodNavMoveRequestResolveWithLastItem
external/imgui/imgui.cpp:12650
MethodNavMoveRequestResolveWithPastTreeNode
Called by TreePop() to implement ImGuiTreeNodeFlags_NavLeftJumpsBackHere
external/imgui/imgui.cpp:12659
MethodNavMoveRequestSubmit
FIXME: ScoringRect is not set
external/imgui/imgui.cpp:12625
MethodNavMoveRequestTryWrapping
Navigation wrap-around logic is delayed to the end of the frame because this operation is only valid after entire popup is assembled and in case of ap
external/imgui/imgui.cpp:12693
MethodNavProcessItem
We get there when either NavId == id, or when g.NavAnyRequest is set (which is updated by NavUpdateAnyRequestFlag above) This is called after LastItem
external/imgui/imgui.cpp:12476
MethodNavProcessItemForTabbingRequest
Handle "scoring" of an item for a tabbing/focusing request initiated by NavUpdateCreateTabbingRequest(). Note that SetKeyboardFocusHere() API calls ar
external/imgui/imgui.cpp:12559
MethodNavRestoreLastChildNavWindow
Restore the last focused child. Call when we are expected to land on the Main Layer (0) after FocusWindow()
external/imgui/imgui.cpp:12717
MethodNavRestoreLayer
external/imgui/imgui.cpp:12724
MethodNavSaveLastChildNavWindowIntoParent
FIXME: This could be replaced by updating a frame number in each window when (window == NavWindow) and (NavLayer == 0). This way we could find the las
external/imgui/imgui.cpp:12706
MethodNavScoreItem
Scoring function for keyboard/gamepad directional navigation. Based on https://gist.github.com/rygorous/6981057
external/imgui/imgui.cpp:12308
MethodNavUpdate
external/imgui/imgui.cpp:12861
MethodNavUpdateAnyRequestFlag
external/imgui/imgui.cpp:12747
MethodNavUpdateCancelRequest
Process Escape/NavCancel input (to close a popup, get back to parent, clear focus) FIXME: In order to support e.g. Escape to clear a selection we'll n
external/imgui/imgui.cpp:13350
MethodNavUpdateCreateMoveRequest
external/imgui/imgui.cpp:13088
MethodNavUpdateCreateTabbingRequest
external/imgui/imgui.cpp:13205
MethodNavUpdateCreateWrappingRequest
external/imgui/imgui.cpp:13493
MethodNavUpdateCurrentWindowIsScrollPushableX
True when current work location may be scrolled horizontally when moving left / right. This is generally always true UNLESS within a column. We don't
external/imgui/imgui.cpp:12467
MethodNavUpdatePageUpPageDown
Handle PageUp/PageDown/Home/End keys Called from NavUpdateCreateMoveRequest() which will use our output to create a move request FIXME-NAV: This doesn
external/imgui/imgui.cpp:13404
MethodNavUpdateWindowing
Windowing management mode Keyboard: CTRL+Tab (change focus/move/resize), Alt (toggle menu layer) Gamepad: Hold Menu/Square (change focus/move/resize)
external/imgui/imgui.cpp:13591
MethodNavUpdateWindowingOverlay
Overlay displayed when using CTRL+TAB. Called by EndFrame().
external/imgui/imgui.cpp:13805
MethodNewFrame
external/imgui/imgui.cpp:5110
← previousnext →1,601–1,700 of 2,571, ranked by callers