MCPcopy Create free account

hub / github.com/Joe1sn/S-inject / functions

Functions2,039 in github.com/Joe1sn/S-inject

MethodActivateItemByID
extern/ImGui/imgui.cpp:8624
MethodAddCallback
extern/ImGui/imgui_draw.cpp:517
MethodAddChar
Set bit n in the array
extern/ImGui/imgui.h:3567
MethodAddConcavePolyFilled
Use ear-clipping algorithm to triangulate a simple polygon (no self-interaction, no holes). (Reminder: we don't perform any coarse clipping/culling in
extern/ImGui/imgui_draw.cpp:2009
MethodAddContextHook
No specific ordering/dependency support, will see as needed
extern/ImGui/imgui.cpp:4408
MethodAddConvexPolyFilled
- We intentionally avoid using ImVec2 and its math operators here to reduce cost to a minimum for debug/non-inlined builds. - Filled shapes must alway
extern/ImGui/imgui_draw.cpp:1055
MethodAddCustomRectFontGlyph
This API does not make sense anymore with scalable fonts. - Prefer adding a font source (ImFontConfig) using a custom/procedural loader. - You may use
extern/ImGui/imgui_draw.cpp:3282
MethodAddCustomRectFontGlyphForSize
FIXME: we automatically set glyph.Colored=true by default. If you need to alter this, you can write 'font->Glyphs.back()->Colored' after calling AddCu
extern/ImGui/imgui_draw.cpp:3289
MethodAddCustomRectRegular
For old GetCustomRectByIndex() API
extern/ImGui/imgui.h:3752
MethodAddDrawList
extern/ImGui/imgui_draw.cpp:2305
MethodAddDrawListToDrawDataEx
Important: 'out_list' is generally going to be draw_data->CmdLists, but may be another temporary list as long at it is expected that the result will b
extern/ImGui/imgui_draw.cpp:2260
MethodAddFont
extern/ImGui/imgui_draw.cpp:3002
MethodAddFontFromFileTTF
extern/ImGui/imgui_draw.cpp:3128
MethodAddFontFromMemoryCompressedBase85TTF
extern/ImGui/imgui_draw.cpp:3180
MethodAddFontFromMemoryCompressedTTF
extern/ImGui/imgui_draw.cpp:3168
MethodAddImageQuad
extern/ImGui/imgui_draw.cpp:1746
MethodAddImageRounded
extern/ImGui/imgui_draw.cpp:1762
MethodAddInputCharactersUTF8
extern/ImGui/imgui.cpp:1640
MethodAddItems
extern/ImGui/imgui_demo.cpp:10527
MethodAddKeyAnalogEvent
Queue a new key down/up event. - ImGuiKey key: Translated key (as in, generally ImGuiKey_A matches the key end-user would use to emit an 'A' cha
extern/ImGui/imgui.cpp:1728
MethodAddQuad
extern/ImGui/imgui_draw.cpp:1529
MethodAddRanges
extern/ImGui/imgui_draw.cpp:5029
MethodAddRemapChar
extern/ImGui/imgui_draw.cpp:5196
MethodAddSettingsHandler
extern/ImGui/imgui.cpp:15139
MethodAlignTextToFramePadding
extern/ImGui/imgui_widgets.cpp:1602
MethodApplySelectionRequests
extern/ImGui/imgui_demo.cpp:2521
MethodApplySelectionRequests
Apply multi-selection requests
extern/ImGui/imgui_demo.cpp:3064
MethodArrowButton
extern/ImGui/imgui_widgets.cpp:878
MethodArrowButtonEx
extern/ImGui/imgui_widgets.cpp:850
MethodAspectRatio
Helper functions to demonstrate programmatic constraints FIXME: This doesn't take account of decoration size (e.g. title bar), library should make thi
extern/ImGui/imgui_demo.cpp:9602
FunctionBase64Encode
src/utils/crypto.cpp:26
MethodBeginBoxSelect
extern/ImGui/imgui_widgets.cpp:7701
MethodBeginChild
Prior to v1.90 2023/10/16, the BeginChild() function took a 'bool border = false' parameter instead of 'ImGuiChildFlags child_flags = 0'. ImGuiChildFl
extern/ImGui/imgui.cpp:6241
MethodBeginChildEx
extern/ImGui/imgui.cpp:6252
FunctionBeginChildFrame
Content boundaries max for the window (roughly (0,0)+Size-Scroll), in window-local coordinates. You should never need this. Always use GetCursorScreen
extern/ImGui/imgui.h:4010
MethodBeginColumns
extern/ImGui/imgui_tables.cpp:4332
MethodBeginCombo
extern/ImGui/imgui_widgets.cpp:1898
MethodBeginComboPopup
extern/ImGui/imgui_widgets.cpp:1976
MethodBeginComboPreview
Call directly after the BeginCombo/EndCombo block. The preview is designed to only host non-interactive elements (Experimental, see GitHub issues: #16
extern/ImGui/imgui_widgets.cpp:2051
MethodBeginDisabled
BeginDisabled()/EndDisabled() - Those can be nested but it cannot be used to enable an already disabled section (a single BeginDisabled(true) in the s
extern/ImGui/imgui.cpp:8107
MethodBeginDisabledOverrideReenable
Could have been called BeginDisabledDisable() but it didn't want to be award nominated for most awkward function name. Ideally we would use a shared e
extern/ImGui/imgui.cpp:8142
MethodBeginDragDropSource
When this returns true you need to: a) call SetDragDropPayload() exactly once, b) you may render the payload visual/description, c) call EndDragDropSo
extern/ImGui/imgui.cpp:14510
MethodBeginDragDropTarget
We don't use BeginDragDropTargetCustom() and duplicate its code because: 1) we use LastItemData's ImGuiItemStatusFlags_HoveredRect which handles items
extern/ImGui/imgui.cpp:14717
MethodBeginDragDropTargetCustom
extern/ImGui/imgui.cpp:14689
MethodBeginErrorTooltip
Pseudo-tooltip. Follow mouse until CTRL is held. When CTRL is held we lock position, allowing to click it.
extern/ImGui/imgui.cpp:10986
MethodBeginGroup
Lock horizontal starting position + capture group bounding box into one "item" (so you can use IsItemHovered() or layout primitives such as SameLine()
extern/ImGui/imgui.cpp:11473
MethodBeginItemTooltip
extern/ImGui/imgui.cpp:11819
MethodBeginListBox
This is essentially a thin wrapper to using BeginChild/EndChild with the ImGuiChildFlags_FrameStyle flag for stylistic changes + displaying a label. T
extern/ImGui/imgui_widgets.cpp:8567
MethodBeginMainMenuBar
extern/ImGui/imgui_widgets.cpp:9058
MethodBeginMenu
extern/ImGui/imgui_widgets.cpp:9339
MethodBeginMenuBar
FIXME: Provided a rectangle perhaps e.g. a BeginMenuBarEx() could be used anywhere.. Currently the main responsibility of this function being to setup
extern/ImGui/imgui_widgets.cpp:8935
MethodBeginMenuEx
extern/ImGui/imgui_widgets.cpp:9127
MethodBeginMultiSelect
Return ImGuiMultiSelectIO structure. Lifetime: don't hold on ImGuiMultiSelectIO* pointers over multiple frames or past any subsequent call to BeginMul
extern/ImGui/imgui_widgets.cpp:7827
MethodBeginPopup
extern/ImGui/imgui.cpp:12245
MethodBeginPopupContextItem
This is a helper to handle the simplest case of associating one named popup to one given widget. - To create a popup associated to the last item, you
extern/ImGui/imgui.cpp:12349
MethodBeginPopupContextVoid
extern/ImGui/imgui.cpp:12377
MethodBeginPopupContextWindow
extern/ImGui/imgui.cpp:12363
MethodBeginPopupEx
Attention! BeginPopup() adds default flags when calling BeginPopupEx()!
extern/ImGui/imgui.cpp:12206
MethodBeginPopupMenuEx
extern/ImGui/imgui.cpp:12226
MethodBeginPopupModal
If 'p_open' is specified for a modal popup window, the popup will have a regular close button which will close the popup. Note that popup visibility s
extern/ImGui/imgui.cpp:12262
MethodBeginTabBar
extern/ImGui/imgui_widgets.cpp:9558
MethodBeginTabBarEx
extern/ImGui/imgui_widgets.cpp:9576
MethodBeginTabItem
extern/ImGui/imgui_widgets.cpp:10280
MethodBeginTable
Read about "TABLE SIZING" at the top of this file.
extern/ImGui/imgui_tables.cpp:311
MethodBeginTableEx
extern/ImGui/imgui_tables.cpp:317
MethodBeginTooltip
extern/ImGui/imgui.cpp:11814
MethodBeginTooltipEx
extern/ImGui/imgui.cpp:11826
MethodBeginTooltipHidden
extern/ImGui/imgui.cpp:14495
MethodBeginViewportSideBar
Important: calling order matters! FIXME: Somehow overlapping with docking tech. FIXME: The "rect-cut" aspect of this could be formalized into a lower-
extern/ImGui/imgui_widgets.cpp:9023
MethodBringWindowToDisplayBack
extern/ImGui/imgui.cpp:12670
MethodBringWindowToDisplayBehind
extern/ImGui/imgui.cpp:12684
MethodBringWindowToDisplayFront
Note technically focus related but rather adjacent and close to BringWindowToFocusFront()
extern/ImGui/imgui.cpp:12655
MethodBringWindowToFocusFront
extern/ImGui/imgui.cpp:12633
MethodBuildEars
extern/ImGui/imgui_draw.cpp:1890
MethodBuildNodes
extern/ImGui/imgui_draw.cpp:1864
MethodBuildRanges
extern/ImGui/imgui_draw.cpp:5036
MethodBuildReflexes
extern/ImGui/imgui_draw.cpp:1878
MethodBullet
extern/ImGui/imgui_widgets.cpp:1456
MethodBulletText
extern/ImGui/imgui_widgets.cpp:418
MethodBulletTextV
Text with a little bullet aligned to the typical tree node.
extern/ImGui/imgui_widgets.cpp:427
MethodButton
extern/ImGui/imgui_widgets.cpp:807
MethodButtonBehavior
- FIXME: For refactor we could output flags, incl mouse hovered vs nav keyboard vs nav triggered etc. And better standardize how widgets use 'GetColor
extern/ImGui/imgui_widgets.cpp:540
MethodButtonEx
extern/ImGui/imgui_widgets.cpp:766
MethodCalcClipRectVisibleItemsY
Generic helper, equivalent to old ImGui::CalcListClipping() but statelesss
extern/ImGui/imgui.cpp:3420
MethodCalcCustomRectUV
OBSOLETED in 1.92.X
extern/ImGui/imgui.h:3754
MethodCalcItemSize
[Internal] Calculate full item size given user provided 'size' parameter and default width/height. Default width is often == CalcItemWidth(). Those tw
extern/ImGui/imgui.cpp:11397
MethodCalcItemWidth
Calculate default item width given value passed to PushItemWidth() or SetNextItemWidth(). The SetNextItemWidth() data is generally cleared/consumed by
extern/ImGui/imgui.cpp:11375
MethodCalcNextTotalWidth
extern/ImGui/imgui_widgets.cpp:8900
MethodCalcTextSize
Calculate text size. Text can be multi-line. Optionally ignore text after a ## marker. CalcTextSize("") should return ImVec2(0.0f, g.FontSize)
extern/ImGui/imgui.cpp:5996
MethodCalcTypematicRepeatAmount
t0 = previous time (e.g.: g.Time - g.IO.DeltaTime) t1 = current time (e.g.: g.Time) An event is triggered at: t = 0.0f t = repeat_delay, t = re
extern/ImGui/imgui.cpp:9303
MethodCalcWindowNextAutoFitSize
extern/ImGui/imgui.cpp:6631
MethodCalcWordWrapPosition
extern/ImGui/imgui_draw.cpp:5460
MethodCalcWordWrapPositionA
extern/ImGui/imgui.h:3853
MethodCalcWorkRectPos
Calculate work rect pos/size given a set of offset (we have 1 pair of offset for rect locked from last frame data, and 1 pair for currently building r
extern/ImGui/imgui_internal.h:1963
MethodCalcWorkRectSize
extern/ImGui/imgui_internal.h:1964
MethodCalcWrapWidthForPos
extern/ImGui/imgui.cpp:4921
MethodCallContextHooks
Call context hooks (used by e.g. test engine) We assume a small number of hooks so all stored in same array
extern/ImGui/imgui.cpp:4429
MethodCheckbox
extern/ImGui/imgui_widgets.cpp:1211
MethodCheckboxFlags
extern/ImGui/imgui_widgets.cpp:1313
MethodCheckboxFlagsT
extern/ImGui/imgui_widgets.cpp:1287
← previousnext →801–900 of 2,039, ranked by callers