MCPcopy Create free account

hub / github.com/Nelarius/imnodes / functions

Functions1,801 in github.com/Nelarius/imnodes

MethodTableBeginRow
[Internal] Called by TableNextRow()
dependencies/imgui-1.87/imgui_tables.cpp:1695
MethodTableDrawBorders
FIXME-TABLE: This is a mess, need to redesign how we render borders (as some are also done in TableEndRow)
dependencies/imgui-1.87/imgui_tables.cpp:2494
MethodTableDrawContextMenu
Output context menu into current window (generally a popup) FIXME-TABLE: Ideally this should be writable by the user. Full programmatic access to that
dependencies/imgui-1.87/imgui_tables.cpp:3027
MethodTableEndCell
[Internal] Called by TableNextRow()/TableSetColumnIndex()/TableNextColumn()
dependencies/imgui-1.87/imgui_tables.cpp:1992
MethodTableEndRow
[Internal] Called by TableNextRow()
dependencies/imgui-1.87/imgui_tables.cpp:1728
MethodTableFindByID
dependencies/imgui-1.87/imgui_tables.cpp:297
MethodTableFixColumnSortDirection
Fix sort direction if currently set on a value which is unavailable (e.g. activating NoSortAscending/NoSortDescending)
dependencies/imgui-1.87/imgui_tables.cpp:2629
MethodTableGcCompactSettings
Compact and remove unused settings data (currently only used by TestEngine)
dependencies/imgui-1.87/imgui_tables.cpp:3487
MethodTableGcCompactTransientBuffers
Free up/compact internal Table buffers for when it gets unused
dependencies/imgui-1.87/imgui_tables.cpp:3465
MethodTableGetBoundSettings
Get settings for a given table, NULL if none
dependencies/imgui-1.87/imgui_tables.cpp:3180
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
dependencies/imgui-1.87/imgui_tables.cpp:1576
MethodTableGetColumnCount
dependencies/imgui-1.87/imgui_tables.cpp:1507
MethodTableGetColumnFlags
We allow querying for an extra column in order to poll the IsHovered state of the right-most section
dependencies/imgui-1.87/imgui_tables.cpp:1557
MethodTableGetColumnIndex
dependencies/imgui-1.87/imgui_tables.cpp:1874
MethodTableGetColumnName
dependencies/imgui-1.87/imgui_tables.cpp:1514
MethodTableGetColumnNextSortDirection
dependencies/imgui-1.87/imgui_tables.cpp:2641
MethodTableGetColumnResizeID
Return the resizing ID for the right-side of the given column.
dependencies/imgui-1.87/imgui_tables.cpp:1591
MethodTableGetColumnWidthAuto
Note this is meant to be stored in column->WidthAuto, please generally use the WidthAuto field
dependencies/imgui-1.87/imgui_tables.cpp:2056
MethodTableGetHeaderRowHeight
dependencies/imgui-1.87/imgui_tables.cpp:2793
MethodTableGetHoveredColumn
Return -1 when table is not hovered. return columns_count if the unused space at the right of visible columns is hovered.
dependencies/imgui-1.87/imgui_tables.cpp:1599
MethodTableGetMaxColumnWidth
Maximum column content width given current layout. Use column->MinX so this value on a per-column basis.
dependencies/imgui-1.87/imgui_tables.cpp:2024
MethodTableGetRowIndex
[Public] Note: for row coloring we use ->RowBgColorCounter which is the same value without counting header rows
dependencies/imgui-1.87/imgui_tables.cpp:1660
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
dependencies/imgui-1.87/imgui_tables.cpp:2604
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
dependencies/imgui-1.87/imgui_tables.cpp:2859
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
dependencies/imgui-1.87/imgui_tables.cpp:2817
MethodTableLoadSettings
dependencies/imgui-1.87/imgui_tables.cpp:3258
MethodTableMergeDrawChannels
This function reorder draw channels based on matching clip rectangle, to facilitate merging them. Called by EndTable(). For simplicity we call it Tabl
dependencies/imgui-1.87/imgui_tables.cpp:2327
MethodTableNextColumn
[Public] Append into the next column, wrap and create a new row when already on last column
dependencies/imgui-1.87/imgui_tables.cpp:1905
MethodTableNextRow
[Public] Starts into the first cell of a new row
dependencies/imgui-1.87/imgui_tables.cpp:1670
MethodTableOpenContextMenu
Use -1 to open menu not specific to a given column.
dependencies/imgui-1.87/imgui_tables.cpp:3006
MethodTablePopBackgroundChannel
dependencies/imgui-1.87/imgui_tables.cpp:2231
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
dependencies/imgui-1.87/imgui_tables.cpp:2219
MethodTableRemove
Remove Table (currently only used by TestEngine)
dependencies/imgui-1.87/imgui_tables.cpp:3453
MethodTableResetSettings
Restore initial state of table (with or without saved settings)
dependencies/imgui-1.87/imgui_tables.cpp:3195
MethodTableSaveSettings
dependencies/imgui-1.87/imgui_tables.cpp:3203
MethodTableSetBgColor
dependencies/imgui-1.87/imgui_tables.cpp:1608
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
dependencies/imgui-1.87/imgui_tables.cpp:1541
MethodTableSetColumnIndex
[Public] Append into a specific column
dependencies/imgui-1.87/imgui_tables.cpp:1884
MethodTableSetColumnSortDirection
Note that the NoSortAscending/NoSortDescending flags are processed in TableSortSpecsSanitize(), and they may change/revert the value of SortDirection.
dependencies/imgui-1.87/imgui_tables.cpp:2655
MethodTableSetColumnWidth
'width' = inner column width, without padding
dependencies/imgui-1.87/imgui_tables.cpp:2073
MethodTableSetColumnWidthAutoAll
dependencies/imgui-1.87/imgui_tables.cpp:2166
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
dependencies/imgui-1.87/imgui_tables.cpp:2156
MethodTableSettingsCreate
dependencies/imgui-1.87/imgui_tables.cpp:3160
MethodTableSettingsFindByID
Find existing settings
dependencies/imgui-1.87/imgui_tables.cpp:3169
FunctionTableSettingsHandler_ApplyAll
Apply to existing windows (if any)
dependencies/imgui-1.87/imgui_tables.cpp:3333
FunctionTableSettingsHandler_ClearAll
dependencies/imgui-1.87/imgui_tables.cpp:3323
FunctionTableSettingsHandler_ReadLine
dependencies/imgui-1.87/imgui_tables.cpp:3363
FunctionTableSettingsHandler_ReadOpen
dependencies/imgui-1.87/imgui_tables.cpp:3344
FunctionTableSettingsHandler_WriteAll
dependencies/imgui-1.87/imgui_tables.cpp:3389
MethodTableSettingsInstallHandler
dependencies/imgui-1.87/imgui_tables.cpp:3430
MethodTableSetupColumn
See "COLUMN SIZING POLICIES" comments at the top of this file If (init_width_or_weight <= 0.0f) it is ignored
dependencies/imgui-1.87/imgui_tables.cpp:1397
MethodTableSetupDrawChannels
Allocate draw channels. Called by TableUpdateLayout() - We allocate them following storage order instead of display order so reordering columns won't
dependencies/imgui-1.87/imgui_tables.cpp:2259
MethodTableSetupScrollFreeze
[Public]
dependencies/imgui-1.87/imgui_tables.cpp:1465
MethodTableSortSpecsBuild
dependencies/imgui-1.87/imgui_tables.cpp:2754
MethodTableSortSpecsSanitize
dependencies/imgui-1.87/imgui_tables.cpp:2688
MethodTableUpdateBorders
Process hit-testing on resizing borders. Actual size change will be applied in EndTable() - Set table->HoveredColumnBorder with a short delay/timer to
dependencies/imgui-1.87/imgui_tables.cpp:1135
MethodTableUpdateColumnsWeightFromWidth
dependencies/imgui-1.87/imgui_tables.cpp:2178
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
dependencies/imgui-1.87/imgui_tables.cpp:714
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
dependencies/imgui-1.87/imgui_widgets.cpp:3334
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
dependencies/imgui-1.87/imgui_widgets.cpp:3311
FunctionTestBit
dependencies/imgui-1.87/imgui_internal.h:564
MethodText
dependencies/imgui-1.87/imgui_widgets.cpp:262
MethodTextColored
dependencies/imgui-1.87/imgui_widgets.cpp:282
MethodTextColoredV
dependencies/imgui-1.87/imgui_widgets.cpp:290
MethodTextDisabled
dependencies/imgui-1.87/imgui_widgets.cpp:300
MethodTextDisabledV
dependencies/imgui-1.87/imgui_widgets.cpp:308
FunctionTextEditCallback
dependencies/imgui-1.87/imgui_demo.cpp:6704
FunctionTextEditCallbackStub
In C++11 you'd be better off using lambdas for this sort of forwarding callbacks
dependencies/imgui-1.87/imgui_demo.cpp:6698
MethodTextEx
dependencies/imgui-1.87/imgui_widgets.cpp:150
MethodTextUnformatted
dependencies/imgui-1.87/imgui_widgets.cpp:257
MethodTextV
dependencies/imgui-1.87/imgui_widgets.cpp:270
MethodTextWrapped
dependencies/imgui-1.87/imgui_widgets.cpp:319
MethodTextWrappedV
dependencies/imgui-1.87/imgui_widgets.cpp:327
FunctionTitleBarRect
dependencies/imgui-1.87/imgui_internal.h:2122
FunctionToVec4
dependencies/imgui-1.87/imgui_internal.h:520
FunctionTranslate
dependencies/imgui-1.87/imgui_internal.h:513
FunctionTranslateX
dependencies/imgui-1.87/imgui_internal.h:514
FunctionTranslateY
dependencies/imgui-1.87/imgui_internal.h:515
MethodTreeNode
dependencies/imgui-1.87/imgui_widgets.cpp:5697
MethodTreeNodeBehavior
dependencies/imgui-1.87/imgui_widgets.cpp:5828
MethodTreeNodeBehaviorIsOpen
dependencies/imgui-1.87/imgui_widgets.cpp:5782
MethodTreeNodeEx
dependencies/imgui-1.87/imgui_widgets.cpp:5733
MethodTreeNodeExV
dependencies/imgui-1.87/imgui_widgets.cpp:5760
MethodTreeNodeV
dependencies/imgui-1.87/imgui_widgets.cpp:5723
MethodTreePop
dependencies/imgui-1.87/imgui_widgets.cpp:6040
MethodTreePush
dependencies/imgui-1.87/imgui_widgets.cpp:6015
MethodTreePushOverrideID
dependencies/imgui-1.87/imgui_widgets.cpp:6031
MethodUnindent
dependencies/imgui-1.87/imgui.cpp:8365
MethodUpdateDebugToolItemPicker
[DEBUG] Item picker tool - start with DebugStartItemPicker() - useful to visually select an item and break into its call-stack.
dependencies/imgui-1.87/imgui.cpp:12914
MethodUpdateDebugToolStackQueries
[DEBUG] Stack Tool: update queries. Called by NewFrame()
dependencies/imgui-1.87/imgui.cpp:12939
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
dependencies/imgui-1.87/imgui.cpp:4133
MethodUpdateInputEvents
Process input queue - trickle_fast_inputs = false : process all events, turn into flattened input state (e.g. successive down/up/down/up will be lost)
dependencies/imgui-1.87/imgui.cpp:7781
MethodUpdateKeyboardInputs
dependencies/imgui-1.87/imgui.cpp:3910
MethodUpdateMouseInputs
dependencies/imgui-1.87/imgui.cpp:3976
MethodUpdateMouseMovingWindowEndFrame
Initiate moving window when clicking on empty space or title bar. Handle left-click and right-click focus.
dependencies/imgui-1.87/imgui.cpp:3853
MethodUpdateMouseMovingWindowNewFrame
Handle mouse moving window Note: moving window with the navigation keys (Square + d-pad / CTRL+TAB + Arrows) are processed in NavUpdateWindowing() FIX
dependencies/imgui-1.87/imgui.cpp:3813
MethodUpdateMouseWheel
dependencies/imgui-1.87/imgui.cpp:4047
MethodUpdateSettings
Called by NewFrame()
dependencies/imgui-1.87/imgui.cpp:11486
MethodUpdateViewportsNewFrame
Update viewports and monitor infos
dependencies/imgui-1.87/imgui.cpp:11793
MethodUpdateWindowManualResize
Handle resize for: Resize Grips, Borders, Gamepad Return true when using auto-fit (double click on resize grip)
dependencies/imgui-1.87/imgui.cpp:5556
← previousnext →1,601–1,700 of 1,801, ranked by callers