Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Raais/ImStudio
/ functions
Functions
2,584 in github.com/Raais/ImStudio
⨍
Functions
2,584
◇
Types & classes
521
Method
Spacing
src/third-party/imgui/imgui_widgets.cpp:1316
Method
SplitterBehavior
Using 'hover_visibility_delay' allows us to hide the highlight and mouse cursor for a short time, which can be convenient to reduce visual noise.
src/third-party/imgui/imgui_widgets.cpp:1446
Method
Square
Helper functions to demonstrate programmatic constraints
src/third-party/imgui/imgui_demo.cpp:7219
Method
StartMouseMovingWindow
src/third-party/imgui/imgui.cpp:3788
Method
Strdup
src/third-party/imgui/imgui_demo.cpp:6496
Method
Stricmp
Portable helpers
src/third-party/imgui/imgui_demo.cpp:6494
Method
Strnicmp
src/third-party/imgui/imgui_demo.cpp:6495
Method
Strtrim
src/third-party/imgui/imgui_demo.cpp:6497
Method
StyleColorsClassic
src/third-party/imgui/imgui_draw.cpp:250
Method
StyleColorsDark
src/third-party/imgui/imgui_draw.cpp:190
Method
StyleColorsLight
Those light colors are better suited with a thicker font than the default one + FrameBorder
src/third-party/imgui/imgui_draw.cpp:311
Method
TabBarCalcMaxTabWidth
src/third-party/imgui/imgui_widgets.cpp:7570
Method
TabBarCalcTabID
Dockables uses Name/ID in the global namespace. Non-dockable items use the ID stack.
src/third-party/imgui/imgui_widgets.cpp:7555
Method
TabBarCloseTab
Called on manual closure attempt
src/third-party/imgui/imgui_widgets.cpp:7596
Method
TabBarFindTabByID
src/third-party/imgui/imgui_widgets.cpp:7576
Method
TabBarLayout
This is called only once a frame before by the first call to ItemTab() The reason we're not calling it in BeginTabBar() is to leave a chance to the us
src/third-party/imgui/imgui_widgets.cpp:7325
Method
TabBarProcessReorder
src/third-party/imgui/imgui_widgets.cpp:7703
Method
TabBarQueueReorder
src/third-party/imgui/imgui_widgets.cpp:7659
Method
TabBarQueueReorderFromMousePos
src/third-party/imgui/imgui_widgets.cpp:7667
Method
TabBarRemoveTab
The *TabId fields be already set by the docking system _before_ the actual TabItem was created, so we clear them regardless.
src/third-party/imgui/imgui_widgets.cpp:7586
Method
TabBarScrollClamp
src/third-party/imgui/imgui_widgets.cpp:7618
Method
TabBarScrollToTab
Note: we may scroll to tab that are not selected! e.g. using keyboard arrow keys
src/third-party/imgui/imgui_widgets.cpp:7625
Method
TabBarScrollingButtons
src/third-party/imgui/imgui_widgets.cpp:7734
Method
TabBarTabListPopupButton
src/third-party/imgui/imgui_widgets.cpp:7795
Method
TabItemBackground
src/third-party/imgui/imgui_widgets.cpp:8144
Method
TabItemButton
src/third-party/imgui/imgui_widgets.cpp:7889
Method
TabItemCalcSize
src/third-party/imgui/imgui_widgets.cpp:8132
Method
TabItemEx
src/third-party/imgui/imgui_widgets.cpp:7905
Method
TabItemLabelAndCloseButton
Render text label (with custom clipping) + Unsaved Document marker + Close Button logic We tend to lock style.FramePadding for a given tab-bar, hence
src/third-party/imgui/imgui_widgets.cpp:8171
Method
TableBeginApplyRequests
Apply queued resizing/reordering/hiding requests
src/third-party/imgui/imgui_tables.cpp:587
Method
TableBeginCell
[Internal] Called by TableSetColumnIndex()/TableNextColumn() This is called very frequently, so we need to be mindful of unnecessary overhead. FIXME-T
src/third-party/imgui/imgui_tables.cpp:1934
Method
TableBeginInitMemory
For reference, the average total _allocation count_ for a table is: + 0 (for ImGuiTable instance, we are pooling allocations in g.Tables) + 1 (for tab
src/third-party/imgui/imgui_tables.cpp:571
Method
TableBeginRow
[Internal] Called by TableNextRow()
src/third-party/imgui/imgui_tables.cpp:1695
Method
TableDrawBorders
FIXME-TABLE: This is a mess, need to redesign how we render borders (as some are also done in TableEndRow)
src/third-party/imgui/imgui_tables.cpp:2494
Method
TableDrawContextMenu
Output context menu into current window (generally a popup) FIXME-TABLE: Ideally this should be writable by the user. Full programmatic access to that
src/third-party/imgui/imgui_tables.cpp:3027
Method
TableEndCell
[Internal] Called by TableNextRow()/TableSetColumnIndex()/TableNextColumn()
src/third-party/imgui/imgui_tables.cpp:1992
Method
TableEndRow
[Internal] Called by TableNextRow()
src/third-party/imgui/imgui_tables.cpp:1728
Method
TableFindByID
src/third-party/imgui/imgui_tables.cpp:297
Method
TableFixColumnSortDirection
Fix sort direction if currently set on a value which is unavailable (e.g. activating NoSortAscending/NoSortDescending)
src/third-party/imgui/imgui_tables.cpp:2629
Method
TableGcCompactSettings
Compact and remove unused settings data (currently only used by TestEngine)
src/third-party/imgui/imgui_tables.cpp:3487
Method
TableGcCompactTransientBuffers
Free up/compact internal Table buffers for when it gets unused
src/third-party/imgui/imgui_tables.cpp:3465
Method
TableGetBoundSettings
Get settings for a given table, NULL if none
src/third-party/imgui/imgui_tables.cpp:3180
Method
TableGetCellBgRect
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
src/third-party/imgui/imgui_tables.cpp:1576
Method
TableGetColumnCount
src/third-party/imgui/imgui_tables.cpp:1507
Method
TableGetColumnFlags
We allow querying for an extra column in order to poll the IsHovered state of the right-most section
src/third-party/imgui/imgui_tables.cpp:1557
Method
TableGetColumnIndex
src/third-party/imgui/imgui_tables.cpp:1874
Method
TableGetColumnName
src/third-party/imgui/imgui_tables.cpp:1514
Method
TableGetColumnNextSortDirection
src/third-party/imgui/imgui_tables.cpp:2641
Method
TableGetColumnResizeID
Return the resizing ID for the right-side of the given column.
src/third-party/imgui/imgui_tables.cpp:1591
Method
TableGetColumnWidthAuto
Note this is meant to be stored in column->WidthAuto, please generally use the WidthAuto field
src/third-party/imgui/imgui_tables.cpp:2056
Method
TableGetHeaderRowHeight
src/third-party/imgui/imgui_tables.cpp:2793
Method
TableGetHoveredColumn
Return -1 when table is not hovered. return columns_count if the unused space at the right of visible columns is hovered.
src/third-party/imgui/imgui_tables.cpp:1599
Method
TableGetMaxColumnWidth
Maximum column content width given current layout. Use column->MinX so this value on a per-column basis.
src/third-party/imgui/imgui_tables.cpp:2024
Method
TableGetRowIndex
[Public] Note: for row coloring we use ->RowBgColorCounter which is the same value without counting header rows
src/third-party/imgui/imgui_tables.cpp:1660
Method
TableGetSortSpecs
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
src/third-party/imgui/imgui_tables.cpp:2604
Method
TableHeader
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
src/third-party/imgui/imgui_tables.cpp:2859
Method
TableHeadersRow
[Public] This is a helper to output TableHeader() calls based on the column names declared in TableSetupColumn(). The intent is that advanced users wi
src/third-party/imgui/imgui_tables.cpp:2817
Method
TableLoadSettings
src/third-party/imgui/imgui_tables.cpp:3258
Method
TableMergeDrawChannels
This function reorder draw channels based on matching clip rectangle, to facilitate merging them. Called by EndTable(). For simplicity we call it Tabl
src/third-party/imgui/imgui_tables.cpp:2327
Method
TableNextColumn
[Public] Append into the next column, wrap and create a new row when already on last column
src/third-party/imgui/imgui_tables.cpp:1905
Method
TableNextRow
[Public] Starts into the first cell of a new row
src/third-party/imgui/imgui_tables.cpp:1670
Method
TableOpenContextMenu
Use -1 to open menu not specific to a given column.
src/third-party/imgui/imgui_tables.cpp:3006
Method
TablePopBackgroundChannel
src/third-party/imgui/imgui_tables.cpp:2231
Method
TablePushBackgroundChannel
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
src/third-party/imgui/imgui_tables.cpp:2219
Method
TableRemove
Remove Table (currently only used by TestEngine)
src/third-party/imgui/imgui_tables.cpp:3453
Method
TableResetSettings
Restore initial state of table (with or without saved settings)
src/third-party/imgui/imgui_tables.cpp:3195
Method
TableSaveSettings
src/third-party/imgui/imgui_tables.cpp:3203
Method
TableSetBgColor
src/third-party/imgui/imgui_tables.cpp:1608
Method
TableSetColumnEnabled
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
src/third-party/imgui/imgui_tables.cpp:1541
Method
TableSetColumnIndex
[Public] Append into a specific column
src/third-party/imgui/imgui_tables.cpp:1884
Method
TableSetColumnSortDirection
Note that the NoSortAscending/NoSortDescending flags are processed in TableSortSpecsSanitize(), and they may change/revert the value of SortDirection.
src/third-party/imgui/imgui_tables.cpp:2655
Method
TableSetColumnWidth
'width' = inner column width, without padding
src/third-party/imgui/imgui_tables.cpp:2073
Method
TableSetColumnWidthAutoAll
src/third-party/imgui/imgui_tables.cpp:2166
Method
TableSetColumnWidthAutoSingle
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
src/third-party/imgui/imgui_tables.cpp:2156
Method
TableSettingsCreate
src/third-party/imgui/imgui_tables.cpp:3160
Method
TableSettingsFindByID
Find existing settings
src/third-party/imgui/imgui_tables.cpp:3169
Function
TableSettingsHandler_ApplyAll
Apply to existing windows (if any)
src/third-party/imgui/imgui_tables.cpp:3333
Function
TableSettingsHandler_ClearAll
src/third-party/imgui/imgui_tables.cpp:3323
Function
TableSettingsHandler_ReadLine
src/third-party/imgui/imgui_tables.cpp:3363
Function
TableSettingsHandler_ReadOpen
src/third-party/imgui/imgui_tables.cpp:3344
Function
TableSettingsHandler_WriteAll
src/third-party/imgui/imgui_tables.cpp:3389
Method
TableSettingsInstallHandler
src/third-party/imgui/imgui_tables.cpp:3430
Method
TableSetupColumn
See "COLUMN SIZING POLICIES" comments at the top of this file If (init_width_or_weight <= 0.0f) it is ignored
src/third-party/imgui/imgui_tables.cpp:1397
Method
TableSetupDrawChannels
Allocate draw channels. Called by TableUpdateLayout() - We allocate them following storage order instead of display order so reordering columns won't
src/third-party/imgui/imgui_tables.cpp:2259
Method
TableSetupScrollFreeze
[Public]
src/third-party/imgui/imgui_tables.cpp:1465
Method
TableSortSpecsBuild
src/third-party/imgui/imgui_tables.cpp:2754
Method
TableSortSpecsSanitize
src/third-party/imgui/imgui_tables.cpp:2688
Method
TableUpdateBorders
Process hit-testing on resizing borders. Actual size change will be applied in EndTable() - Set table->HoveredColumnBorder with a short delay/timer to
src/third-party/imgui/imgui_tables.cpp:1135
Method
TableUpdateColumnsWeightFromWidth
src/third-party/imgui/imgui_tables.cpp:2178
Method
TableUpdateLayout
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
src/third-party/imgui/imgui_tables.cpp:714
Method
TempInputScalar
Note that Drag/Slider functions are only forwarding the min/max values clamping values if the ImGuiSliderFlags_AlwaysClamp flag is set! This is intend
src/third-party/imgui/imgui_widgets.cpp:3334
Method
TempInputText
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
src/third-party/imgui/imgui_widgets.cpp:3311
Function
TestBit
src/third-party/imgui/imgui_internal.h:564
Method
Text
src/third-party/imgui/imgui_widgets.cpp:262
Method
TextCentered
src/utils/ims_utils.cpp:24
Method
TextColored
src/third-party/imgui/imgui_widgets.cpp:282
Method
TextColoredV
src/third-party/imgui/imgui_widgets.cpp:290
Method
TextDisabled
src/third-party/imgui/imgui_widgets.cpp:300
Method
TextDisabledV
src/third-party/imgui/imgui_widgets.cpp:308
Function
TextEditCallback
src/third-party/imgui/imgui_demo.cpp:6704
← previous
next →
1,901–2,000 of 2,584, ranked by callers