MCPcopy Create free account

hub / github.com/ctreffs/SwiftImGui / functions

Functions2,768 in github.com/ctreffs/SwiftImGui

MethodTableGcCompactSettings
Compact and remove unused settings data (currently only used by TestEngine)
Sources/CImGui/imgui/imgui_tables.cpp:3548
MethodTableGcCompactTransientBuffers
Free up/compact internal Table buffers for when it gets unused
Sources/CImGui/imgui/imgui_tables.cpp:3526
MethodTableGetBoundSettings
Get settings for a given table, NULL if none
Sources/CImGui/imgui/imgui_tables.cpp:3242
MethodTableGetCellBgRect
Return the cell rectangle based on currently known height. - Important: we generally don't know our row height until the end of the row, so Max.y will
Sources/CImGui/imgui/imgui_tables.cpp:1622
MethodTableGetColumnCount
Sources/CImGui/imgui/imgui_tables.cpp:1553
MethodTableGetColumnFlags
We allow querying for an extra column in order to poll the IsHovered state of the right-most section
Sources/CImGui/imgui/imgui_tables.cpp:1603
MethodTableGetColumnIndex
Sources/CImGui/imgui/imgui_tables.cpp:1920
MethodTableGetColumnName
Sources/CImGui/imgui/imgui_tables.cpp:1560
MethodTableGetColumnNextSortDirection
Sources/CImGui/imgui/imgui_tables.cpp:2693
MethodTableGetColumnResizeID
Return the resizing ID for the right-side of the given column.
Sources/CImGui/imgui/imgui_tables.cpp:1637
MethodTableGetColumnWidthAuto
Note this is meant to be stored in column->WidthAuto, please generally use the WidthAuto field
Sources/CImGui/imgui/imgui_tables.cpp:2101
MethodTableGetHeaderRowHeight
Sources/CImGui/imgui/imgui_tables.cpp:2845
MethodTableGetHoveredColumn
Return -1 when table is not hovered. return columns_count if the unused space at the right of visible columns is hovered.
Sources/CImGui/imgui/imgui_tables.cpp:1645
MethodTableGetMaxColumnWidth
Maximum column content width given current layout. Use column->MinX so this value on a per-column basis.
Sources/CImGui/imgui/imgui_tables.cpp:2069
MethodTableGetRowIndex
[Public] Note: for row coloring we use ->RowBgColorCounter which is the same value without counting header rows
Sources/CImGui/imgui/imgui_tables.cpp:1706
MethodTableGetSortSpecs
Return NULL if no sort specs (most often when ImGuiTableFlags_Sortable is not set) You can sort your data again when 'SpecsChanged == true'. It will b
Sources/CImGui/imgui/imgui_tables.cpp:2656
MethodTableHeader
Emit a column header (text + optional sort order) We cpu-clip text here so that all columns headers can be merged into a same draw call. Note that bec
Sources/CImGui/imgui/imgui_tables.cpp:2910
MethodTableHeadersRow
[Public] This is a helper to output TableHeader() calls based on the column names declared in TableSetupColumn(). The intent is that advanced users wi
Sources/CImGui/imgui/imgui_tables.cpp:2869
MethodTableLoadSettings
Sources/CImGui/imgui/imgui_tables.cpp:3320
MethodTableMergeDrawChannels
This function reorder draw channels based on matching clip rectangle, to facilitate merging them. Called by EndTable(). For simplicity we call it Tabl
Sources/CImGui/imgui/imgui_tables.cpp:2372
MethodTableNextColumn
[Public] Append into the next column, wrap and create a new row when already on last column
Sources/CImGui/imgui/imgui_tables.cpp:1951
MethodTableNextRow
[Public] Starts into the first cell of a new row
Sources/CImGui/imgui/imgui_tables.cpp:1716
MethodTableOpenContextMenu
Use -1 to open menu not specific to a given column.
Sources/CImGui/imgui/imgui_tables.cpp:3057
MethodTablePopBackgroundChannel
Sources/CImGui/imgui/imgui_tables.cpp:2276
MethodTablePushBackgroundChannel
Bg2 is used by Selectable (and possibly other widgets) to render to the background. Unlike our Bg0/1 channel which we uses for RowBg/CellBg/Borders an
Sources/CImGui/imgui/imgui_tables.cpp:2264
MethodTableRemove
Remove Table (currently only used by TestEngine)
Sources/CImGui/imgui/imgui_tables.cpp:3514
MethodTableResetSettings
Restore initial state of table (with or without saved settings)
Sources/CImGui/imgui/imgui_tables.cpp:3257
MethodTableSaveSettings
Sources/CImGui/imgui/imgui_tables.cpp:3265
MethodTableSetBgColor
Sources/CImGui/imgui/imgui_tables.cpp:1654
MethodTableSetColumnEnabled
Change user accessible enabled/disabled state of a column (often perceived as "showing/hiding" from users point of view) Note that end-user can use th
Sources/CImGui/imgui/imgui_tables.cpp:1587
MethodTableSetColumnIndex
[Public] Append into a specific column
Sources/CImGui/imgui/imgui_tables.cpp:1930
MethodTableSetColumnSortDirection
Note that the NoSortAscending/NoSortDescending flags are processed in TableSortSpecsSanitize(), and they may change/revert the value of SortDirection.
Sources/CImGui/imgui/imgui_tables.cpp:2707
MethodTableSetColumnWidth
'width' = inner column width, without padding
Sources/CImGui/imgui/imgui_tables.cpp:2118
MethodTableSetColumnWidthAutoAll
Sources/CImGui/imgui/imgui_tables.cpp:2211
MethodTableSetColumnWidthAutoSingle
Disable clipping then auto-fit, will take 2 frames (we don't take a shortcut for unclipped columns to reduce inconsistencies when e.g. resizing multip
Sources/CImGui/imgui/imgui_tables.cpp:2201
MethodTableSettingsAddSettingsHandler
Sources/CImGui/imgui/imgui_tables.cpp:3492
MethodTableSettingsCreate
Sources/CImGui/imgui/imgui_tables.cpp:3222
MethodTableSettingsFindByID
Find existing settings
Sources/CImGui/imgui/imgui_tables.cpp:3231
FunctionTableSettingsHandler_ApplyAll
Apply to existing windows (if any)
Sources/CImGui/imgui/imgui_tables.cpp:3395
FunctionTableSettingsHandler_ClearAll
Sources/CImGui/imgui/imgui_tables.cpp:3385
FunctionTableSettingsHandler_ReadLine
Sources/CImGui/imgui/imgui_tables.cpp:3425
FunctionTableSettingsHandler_ReadOpen
Sources/CImGui/imgui/imgui_tables.cpp:3406
FunctionTableSettingsHandler_WriteAll
Sources/CImGui/imgui/imgui_tables.cpp:3451
MethodTableSetupColumn
See "COLUMN SIZING POLICIES" comments at the top of this file If (init_width_or_weight <= 0.0f) it is ignored
Sources/CImGui/imgui/imgui_tables.cpp:1443
MethodTableSetupDrawChannels
Allocate draw channels. Called by TableUpdateLayout() - We allocate them following storage order instead of display order so reordering columns won't
Sources/CImGui/imgui/imgui_tables.cpp:2304
MethodTableSetupScrollFreeze
[Public]
Sources/CImGui/imgui/imgui_tables.cpp:1511
MethodTableSortSpecsBuild
Sources/CImGui/imgui/imgui_tables.cpp:2806
MethodTableSortSpecsSanitize
Sources/CImGui/imgui/imgui_tables.cpp:2740
MethodTableUpdateBorders
Process hit-testing on resizing borders. Actual size change will be applied in EndTable() - Set table->HoveredColumnBorder with a short delay/timer to
Sources/CImGui/imgui/imgui_tables.cpp:1171
MethodTableUpdateColumnsWeightFromWidth
Sources/CImGui/imgui/imgui_tables.cpp:2223
MethodTableUpdateLayout
Layout columns for the frame. This is in essence the followup to BeginTable(). Runs on the first call to TableNextRow(), to give a chance for TableSet
Sources/CImGui/imgui/imgui_tables.cpp:743
MethodTempInputScalar
Note that Drag/Slider functions are only forwarding the min/max values clamping values if the ImGuiSliderFlags_AlwaysClamp flag is set! This is intend
Sources/CImGui/imgui/imgui_widgets.cpp:3400
MethodTempInputText
Create text input in place of another active widget (e.g. used when doing a CTRL+Click on drag/slider widgets) FIXME: Facilitate using this in variety
Sources/CImGui/imgui/imgui_widgets.cpp:3369
FunctionTestBit
Sources/CImGui/imgui/imgui_internal.h:586
MethodTestKeyOwner
TestKeyOwner(..., ID) : (owner == None || owner == ID) TestKeyOwner(..., None) : (owner == None) TestKeyOwner(..., Any) : no owner test All paths a
Sources/CImGui/imgui/imgui.cpp:8851
MethodTestShortcutRouting
Currently unused by core (but used by tests) Note: this cannot be turned into GetShortcutRouting() because we do the owner_id->routing_id translation,
Sources/CImGui/imgui/imgui.cpp:8066
MethodText
Sources/CImGui/imgui/imgui_widgets.cpp:263
MethodTextColored
Sources/CImGui/imgui/imgui_widgets.cpp:282
MethodTextColoredV
Sources/CImGui/imgui/imgui_widgets.cpp:290
MethodTextDisabled
Sources/CImGui/imgui/imgui_widgets.cpp:297
MethodTextDisabledV
Sources/CImGui/imgui/imgui_widgets.cpp:305
FunctionTextEditCallback
Sources/CImGui/imgui/imgui_demo.cpp:6784
FunctionTextEditCallbackStub
In C++11 you'd be better off using lambdas for this sort of forwarding callbacks
Sources/CImGui/imgui/imgui_demo.cpp:6778
MethodTextEx
Sources/CImGui/imgui/imgui_widgets.cpp:150
MethodTextUnformatted
Sources/CImGui/imgui/imgui_widgets.cpp:258
MethodTextV
Sources/CImGui/imgui/imgui_widgets.cpp:271
MethodTextWrapped
Sources/CImGui/imgui/imgui_widgets.cpp:313
MethodTextWrappedV
Sources/CImGui/imgui/imgui_widgets.cpp:321
FunctionTitleBarRect
Sources/CImGui/imgui/imgui_internal.h:2375
FunctionToVec4
Sources/CImGui/imgui/imgui_internal.h:537
FunctionTranslate
Sources/CImGui/imgui/imgui_internal.h:530
FunctionTranslateX
Sources/CImGui/imgui/imgui_internal.h:531
FunctionTranslateY
Sources/CImGui/imgui/imgui_internal.h:532
MethodTreeNode
Sources/CImGui/imgui/imgui_widgets.cpp:5957
MethodTreeNodeBehavior
Sources/CImGui/imgui/imgui_widgets.cpp:6095
FunctionTreeNodeBehaviorIsOpen
Changed in 1.89
Sources/CImGui/imgui/imgui_internal.h:3217
MethodTreeNodeEx
Sources/CImGui/imgui/imgui_widgets.cpp:5993
MethodTreeNodeExV
Sources/CImGui/imgui/imgui_widgets.cpp:6020
MethodTreeNodeSetOpen
Sources/CImGui/imgui/imgui_widgets.cpp:6042
MethodTreeNodeUpdateNextOpen
Sources/CImGui/imgui/imgui_widgets.cpp:6049
MethodTreeNodeV
Sources/CImGui/imgui/imgui_widgets.cpp:5983
MethodTreePop
Sources/CImGui/imgui/imgui_widgets.cpp:6307
MethodTreePush
Sources/CImGui/imgui/imgui_widgets.cpp:6282
MethodTreePushOverrideID
Sources/CImGui/imgui/imgui_widgets.cpp:6298
MethodUnindent
Sources/CImGui/imgui/imgui.cpp:9486
MethodUpdateDebugToolItemPicker
[DEBUG] Item picker tool - start with DebugStartItemPicker() - useful to visually select an item and break into its call-stack.
Sources/CImGui/imgui/imgui.cpp:14446
MethodUpdateDebugToolStackQueries
[DEBUG] Stack Tool: update queries. Called by NewFrame()
Sources/CImGui/imgui/imgui.cpp:14480
MethodUpdateHoveredWindowAndCaptureFlags
The reason this is exposed in imgui_internal.h is: on touch-based system that don't have hovering, we want to dispatch inputs to the right target (img
Sources/CImGui/imgui/imgui.cpp:4322
MethodUpdateInputEvents
Process input queue We always call this with the value of 'bool g.IO.ConfigInputTrickleEventQueue'. - trickle_fast_inputs = false : process all events
Sources/CImGui/imgui/imgui.cpp:8710
MethodUpdateKeyRoutingTable
Rewrite routing data buffers to strip old entries + sort by key to make queries not touch scattered data. Entries D,A,B,B,A,C,B --> A,A,B,B,B,C,
Sources/CImGui/imgui/imgui.cpp:7897
MethodUpdateKeyboardInputs
Sources/CImGui/imgui/imgui.cpp:8338
MethodUpdateMouseInputs
Sources/CImGui/imgui/imgui.cpp:8456
MethodUpdateMouseMovingWindowEndFrame
Initiate moving window when clicking on empty space or title bar. Handle left-click and right-click focus.
Sources/CImGui/imgui/imgui.cpp:4264
MethodUpdateMouseMovingWindowNewFrame
Handle mouse moving window Note: moving window with the navigation keys (Square + d-pad / CTRL+TAB + Arrows) are processed in NavUpdateWindowing() FIX
Sources/CImGui/imgui/imgui.cpp:4228
MethodUpdateMouseWheel
Called by NewFrame()
Sources/CImGui/imgui/imgui.cpp:8583
MethodUpdateSettings
Called by NewFrame()
Sources/CImGui/imgui/imgui.cpp:12631
MethodUpdateViewportsNewFrame
Update viewports and monitor infos
Sources/CImGui/imgui/imgui.cpp:12996
MethodUpdateWindowManualResize
Handle resize for: Resize Grips, Borders, Gamepad Return true when using auto-fit (double-click on resize grip)
Sources/CImGui/imgui/imgui.cpp:5699
MethodUpdateWindowParentAndRootLinks
Sources/CImGui/imgui/imgui.cpp:6050
MethodVSliderFloat
Sources/CImGui/imgui/imgui_widgets.cpp:3211
← previousnext →1,801–1,900 of 2,768, ranked by callers