MCPcopy Create free account

hub / github.com/Wemino/MarkerPatch / functions

Functions2,284 in github.com/Wemino/MarkerPatch

MethodIsAnyItemHovered
IMPORTANT: If you are trying to check whether your mouse should be dispatched to Dear ImGui or to your underlying app, you should not use this functio
include/imgui/imgui.cpp:6335
MethodIsAnyMouseDown
[WILL OBSOLETE] This was designed for backends, but prefer having backend maintain a mask of held mouse buttons, because upcoming input queue system w
include/imgui/imgui.cpp:10081
MethodIsBuilt
Called by legacy backends.
include/imgui/imgui.h:3717
MethodIsClippedEx
FIXME: This is inlined/duplicated in ItemAdd() FIXME: The id != 0 path is not used by our codebase, may get rid of it?
include/imgui/imgui.cpp:5043
FunctionIsConnected
include/Controller.hpp:413
MethodIsDelivery
include/imgui/imgui.h:2706
FunctionIsDlcContentOwned_Hook
src/Features/DLC/ShopHooks.cpp:126
MethodIsDragDropActive
include/imgui/imgui.cpp:14831
MethodIsDragDropPayloadBeingAccepted
include/imgui/imgui.cpp:15131
MethodIsEar
A triangle is an ear is no other vertex is inside it. We can test reflexes vertices only (see reference algorithm)
include/imgui/imgui_draw.cpp:1994
MethodIsInNavFocusRoute
include/imgui/imgui.cpp:8794
FunctionIsInverted
Full version, ensure both points are fully clipped.
include/imgui/imgui_internal.h:619
MethodIsItemActivated
include/imgui/imgui.cpp:6277
MethodIsItemActive
include/imgui/imgui.cpp:6269
FunctionIsItemActiveAsInputText
include/imgui/imgui_internal.h:3713
MethodIsItemClicked
Important: this can be useful but it is NOT equivalent to the behavior of e.g.Button()! Most widgets have specific reactions based on mouse-up/down st
include/imgui/imgui.cpp:6309
MethodIsItemDeactivated
include/imgui/imgui.cpp:6286
MethodIsItemDeactivatedAfterEdit
include/imgui/imgui.cpp:6294
MethodIsItemEdited
include/imgui/imgui.cpp:6359
MethodIsItemFocused
== (GetItemID() == GetFocusID() && GetFocusID() != 0)
include/imgui/imgui.cpp:6301
MethodIsItemHovered
This is roughly matching the behavior of internal-facing ItemHoverable() - we allow hovering to be true when ActiveId==window->MoveID, so that clickin
include/imgui/imgui.cpp:4847
MethodIsItemToggledOpen
include/imgui/imgui.cpp:6314
MethodIsItemToggledSelection
Call after a Selectable() or TreeNode() involved in multi-selection. Useful if you need the per-item information before reaching EndMultiSelect(), e.g
include/imgui/imgui.cpp:6325
MethodIsItemVisible
include/imgui/imgui.cpp:6353
MethodIsKeyChordPressed
This is the only public API until we expose owner_id versions of the API as replacements.
include/imgui/imgui.cpp:10745
MethodIsKeyDown
Note that Dear ImGui doesn't know the meaning/semantic of ImGuiKey from 0..511: they are legacy native keycodes. Consider transitioning from 'IsKeyDow
include/imgui/imgui.cpp:9843
MethodIsKeyPressed
include/imgui/imgui.cpp:9858
MethodIsKeyReleased
include/imgui/imgui.cpp:9903
MethodIsMouseClicked
include/imgui/imgui.cpp:9932
MethodIsMouseDoubleClicked
include/imgui/imgui.cpp:9984
MethodIsMouseDown
include/imgui/imgui.cpp:9918
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
include/imgui/imgui.cpp:10025
MethodIsMouseDragging
include/imgui/imgui.cpp:10034
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
include/imgui/imgui.cpp:10008
MethodIsMousePosValid
We typically use ImVec2(-FLT_MAX,-FLT_MAX) to denote an invalid mouse position.
include/imgui/imgui.cpp:10070
MethodIsMouseReleased
include/imgui/imgui.cpp:9959
MethodIsMouseReleasedWithDelay
Use if you absolutely need to distinguish single-click from double-click by introducing a delay. Generally use with 'delay >= io.MouseDoubleClickTime'
include/imgui/imgui.cpp:9976
MethodIsPopupOpen
Supported flags: ImGuiPopupFlags_AnyPopupId, ImGuiPopupFlags_AnyPopupLevel
include/imgui/imgui.cpp:12174
MethodIsPopupOpenRequestForItem
include/imgui/imgui.cpp:12598
MethodIsPopupOpenRequestForWindow
include/imgui/imgui.cpp:12609
MethodIsPreview
include/imgui/imgui.h:2705
MethodIsRectVisible
include/imgui/imgui.cpp:8923
MethodIsWindowAbove
include/imgui/imgui.cpp:8446
MethodIsWindowAppearing
include/imgui/imgui.cpp:8652
MethodIsWindowChildOf
include/imgui/imgui.cpp:8408
MethodIsWindowCollapsed
include/imgui/imgui.cpp:8646
MethodIsWindowContentHoverable
include/imgui/imgui.cpp:4801
MethodIsWindowFocused
Similar to IsWindowHovered()
include/imgui/imgui.cpp:12878
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
include/imgui/imgui.cpp:8470
MethodIsWindowInBeginStack
include/imgui/imgui.cpp:8424
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
include/imgui/imgui.cpp:14525
MethodIsWindowWithinBeginStackOf
include/imgui/imgui.cpp:8433
FunctionIsXInputDevice_hook
src/Features/Input/FilterInputDevices.cpp:11
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
include/imgui/imgui.cpp:11291
MethodItemHandleShortcut
Called from within ItemAdd: at this point we can read from NextItemData and write to LastItemData
include/imgui/imgui.cpp:10777
MethodItemHoverable
Internal facing ItemHoverable() used when submitting widgets. THIS IS A SUBMISSION NOT A HOVER CHECK. Returns whether the item was hovered, logic diff
include/imgui/imgui.cpp:4951
MethodItemSize
include/imgui/imgui.cpp:11394
FunctionItems_ArrayGetter
Getter for the old Combo() API: const char*[]
include/imgui/imgui_widgets.cpp:2146
FunctionItems_SingleStringGetter
Getter for the old Combo() API: "item1\0item2\0item3\0"
include/imgui/imgui_widgets.cpp:2153
FunctionIterativeShadowBlur_Hook
src/Features/Fixes/FixShadowBlur.cpp:11
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().
include/imgui/imgui.cpp:11278
MethodLabelText
include/imgui/imgui_widgets.cpp:383
MethodLabelTextV
Add a label+text combo aligned to other label+value widgets
include/imgui/imgui_widgets.cpp:392
MethodListBox
include/imgui/imgui_widgets.cpp:8835
FunctionLoadGame_Hook
src/Features/Fixes/FixDifficultyRewards.cpp:11
MethodLoadIniSettingsFromDisk
include/imgui/imgui.cpp:15572
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
include/imgui/imgui.cpp:15585
FunctionLoadMovie_Hook
src/Features/General/SkipIntro.cpp:12
FunctionLoadSaveFileList_Hook
src/Features/Fixes/FixSaveStringHandling.cpp:12
FunctionLoadTrophyCounter_Hook
src/Features/General/AchievementSupport.cpp:63
FunctionLoadUIAnimation_Hook
src/Features/General/SkipIntro.cpp:24
MethodLocalizeRegisterEntries
include/imgui/imgui.cpp:15835
MethodLogBegin
Start logging/capturing text output
include/imgui/imgui.cpp:15333
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
include/imgui/imgui.cpp:15449
MethodLogFinish
include/imgui/imgui.cpp:15413
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
include/imgui/imgui.cpp:15274
MethodLogSetNextTextDecoration
Important: doesn't copy underlying data, use carefully (prefix/suffix must be in scope at the time of the next LogRenderedText)
include/imgui/imgui.cpp:15352
MethodLogText
include/imgui/imgui.cpp:15250
MethodLogTextV
include/imgui/imgui.cpp:15262
MethodLogToBuffer
include/imgui/imgui.cpp:15405
MethodLogToClipboard
Start logging/capturing text output to clipboard
include/imgui/imgui.cpp:15397
MethodLogToFile
Start logging/capturing text output to given file
include/imgui/imgui.cpp:15372
MethodLogToTTY
include/imgui/imgui.cpp:15359
FunctionMainLoop_Hook
src/Features/Fixes/HavokPhysicsFix.cpp:64
FunctionMakeJMP
src/helper.cpp:69
FunctionMallocWrapper
include/imgui/imgui.cpp:1470
MethodMarkIniSettingsDirty
include/imgui/imgui.cpp:15523
MethodMarkItemEdited
include/imgui/imgui.cpp:4775
MethodMemAlloc
IM_ALLOC() == ImGui::MemAlloc()
include/imgui/imgui.cpp:5102
MethodMemFree
IM_FREE() == ImGui::MemFree()
include/imgui/imgui.cpp:5113
FunctionMenuBarRect
include/imgui/imgui_internal.h:2787
MethodMenuItem
include/imgui/imgui_widgets.cpp:9681
MethodMenuItemEx
include/imgui/imgui_widgets.cpp:9592
MethodMidHook
include/safetyhook/safetyhook.cpp:850
MethodMultiSelectAddSetAll
include/imgui/imgui_widgets.cpp:8530
MethodMultiSelectAddSetRange
include/imgui/imgui_widgets.cpp:8537
MethodMultiSelectItemFooter
In charge of: - Auto-select on navigation. - Box-select toggle handling. - Right-click handling. - Altering selection based on Ctrl/Shift modifiers, b
include/imgui/imgui_widgets.cpp:8308
MethodMultiSelectItemHeader
In charge of: - Applying SetAll for submitted items. - Applying SetRange for submitted items and record end points. - Altering button behavior flags t
include/imgui/imgui_widgets.cpp:8236
MethodNavApplyItemToResult
include/imgui/imgui.cpp:13369
MethodNavCalcPreferredRefPos
include/imgui/imgui.cpp:13729
← previousnext →1,501–1,600 of 2,284, ranked by callers