Skip to content

Commit 05742f9

Browse files
committed
Tables: share code between TableSetupColumn() and TableLoadSettings(). (ocornut#7934)
1 parent 8b7b3ce commit 05742f9

File tree

1 file changed

+31
-30
lines changed

1 file changed

+31
-30
lines changed

imgui_tables.cpp

+31-30
Original file line numberDiff line numberDiff line change
@@ -1565,6 +1565,31 @@ void ImGui::EndTable()
15651565
NavUpdateCurrentWindowIsScrollPushableX();
15661566
}
15671567

1568+
// Called in TableSetupColumn() when initializing and in TableLoadSettings() for defaults before applying stored settings.
1569+
// 'init_mask' specify which fields to initialize.
1570+
static void TableInitColumnDefaults(ImGuiTable* table, ImGuiTableColumn* column, ImGuiTableColumnFlags init_mask)
1571+
{
1572+
ImGuiTableColumnFlags flags = column->Flags;
1573+
if (init_mask & ImGuiTableFlags_Resizable)
1574+
{
1575+
float init_width_or_weight = column->InitStretchWeightOrWidth;
1576+
column->WidthRequest = ((flags & ImGuiTableColumnFlags_WidthFixed) && init_width_or_weight > 0.0f) ? init_width_or_weight : -1.0f;
1577+
column->StretchWeight = (init_width_or_weight > 0.0f && (flags & ImGuiTableColumnFlags_WidthStretch)) ? init_width_or_weight : -1.0f;
1578+
if (init_width_or_weight > 0.0f) // Disable auto-fit if an explicit width/weight has been specified
1579+
column->AutoFitQueue = 0x00;
1580+
}
1581+
if (init_mask & ImGuiTableFlags_Reorderable)
1582+
column->DisplayOrder = (ImGuiTableColumnIdx)table->Columns.index_from_ptr(column);
1583+
if (init_mask & ImGuiTableFlags_Hideable)
1584+
column->IsUserEnabled = column->IsUserEnabledNextFrame = (flags & ImGuiTableColumnFlags_DefaultHide) ? 0 : 1;
1585+
if (init_mask & ImGuiTableFlags_Sortable)
1586+
{
1587+
// Multiple columns using _DefaultSort will be reassigned unique SortOrder values when building the sort specs.
1588+
column->SortOrder = (flags & ImGuiTableColumnFlags_DefaultSort) ? 0 : -1;
1589+
column->SortDirection = (flags & ImGuiTableColumnFlags_DefaultSort) ? ((flags & ImGuiTableColumnFlags_PreferSortDescending) ? (ImS8)ImGuiSortDirection_Descending : (ImU8)(ImGuiSortDirection_Ascending)) : (ImS8)ImGuiSortDirection_None;
1590+
}
1591+
}
1592+
15681593
// See "COLUMNS SIZING POLICIES" comments at the top of this file
15691594
// If (init_width_or_weight <= 0.0f) it is ignored
15701595
void ImGui::TableSetupColumn(const char* label, ImGuiTableColumnFlags flags, float init_width_or_weight, ImGuiID user_id)
@@ -1593,7 +1618,7 @@ void ImGui::TableSetupColumn(const char* label, ImGuiTableColumnFlags flags, flo
15931618
IM_ASSERT(init_width_or_weight <= 0.0f && "Can only specify width/weight if sizing policy is set explicitly in either Table or Column.");
15941619

15951620
// When passing a width automatically enforce WidthFixed policy
1596-
// (whereas TableSetupColumnFlags would default to WidthAuto if table is not Resizable)
1621+
// (whereas TableSetupColumnFlags would default to WidthAuto if table is not resizable)
15971622
if ((flags & ImGuiTableColumnFlags_WidthMask_) == 0 && init_width_or_weight > 0.0f)
15981623
if ((table->Flags & ImGuiTableFlags_SizingMask_) == ImGuiTableFlags_SizingFixedFit || (table->Flags & ImGuiTableFlags_SizingMask_) == ImGuiTableFlags_SizingFixedSame)
15991624
flags |= ImGuiTableColumnFlags_WidthFixed;
@@ -1608,31 +1633,13 @@ void ImGui::TableSetupColumn(const char* label, ImGuiTableColumnFlags flags, flo
16081633
flags = column->Flags;
16091634

16101635
// Initialize defaults
1611-
// FIXME: Similar to code in TableLoadSettings(), best to see how if we can merge.
16121636
column->InitStretchWeightOrWidth = init_width_or_weight;
16131637
if (table->IsInitializing)
16141638
{
1615-
// Init width or weight
1616-
if (column->WidthRequest < 0.0f && column->StretchWeight < 0.0f)
1617-
{
1618-
if ((flags & ImGuiTableColumnFlags_WidthFixed) && init_width_or_weight > 0.0f)
1619-
column->WidthRequest = init_width_or_weight;
1620-
if (flags & ImGuiTableColumnFlags_WidthStretch)
1621-
column->StretchWeight = (init_width_or_weight > 0.0f) ? init_width_or_weight : -1.0f;
1622-
1623-
// Disable auto-fit if an explicit width/weight has been specified
1624-
if (init_width_or_weight > 0.0f)
1625-
column->AutoFitQueue = 0x00;
1626-
}
1627-
1628-
// Init default visibility/sort state
1629-
if ((flags & ImGuiTableColumnFlags_DefaultHide) && (table->SettingsLoadedFlags & ImGuiTableFlags_Hideable) == 0)
1630-
column->IsUserEnabled = column->IsUserEnabledNextFrame = false;
1631-
if ((flags & ImGuiTableColumnFlags_DefaultSort) && (table->SettingsLoadedFlags & ImGuiTableFlags_Sortable) == 0)
1632-
{
1633-
column->SortOrder = 0; // Multiple columns using _DefaultSort will be reassigned unique SortOrder values when building the sort specs.
1634-
column->SortDirection = (column->Flags & ImGuiTableColumnFlags_PreferSortDescending) ? (ImS8)ImGuiSortDirection_Descending : (ImU8)(ImGuiSortDirection_Ascending);
1635-
}
1639+
ImGuiTableFlags init_flags = ~0;
1640+
if (column->WidthRequest >= 0.0f && column->StretchWeight >= 0.0f)
1641+
init_flags &= ~ImGuiTableFlags_Resizable;
1642+
TableInitColumnDefaults(table, column, init_flags);
16361643
}
16371644

16381645
// Store name (append with zero-terminator in contiguous buffer)
@@ -3725,17 +3732,11 @@ void ImGui::TableLoadSettings(ImGuiTable* table)
37253732
table->RefScale = settings->RefScale;
37263733

37273734
// Initialize default columns settings
3728-
// FIXME: Similar to code in TableSetupColumn(), best to see how if we can merge.
37293735
for (int column_n = 0; column_n < table->ColumnsCount; column_n++)
37303736
{
37313737
ImGuiTableColumn* column = &table->Columns[column_n];
3732-
column->StretchWeight = (column->Flags & ImGuiTableColumnFlags_WidthStretch) && (column->InitStretchWeightOrWidth > 0.0f) ? column->InitStretchWeightOrWidth : -1.0f;
3733-
column->WidthRequest = (column->Flags & ImGuiTableColumnFlags_WidthFixed) && (column->InitStretchWeightOrWidth > 0.0f) ? column->InitStretchWeightOrWidth : -1.0f;
3738+
TableInitColumnDefaults(table, column, ~0);
37343739
column->AutoFitQueue = 0x00;
3735-
column->DisplayOrder = (ImGuiTableColumnIdx)column_n;
3736-
column->IsUserEnabled = column->IsUserEnabledNextFrame = (column->Flags & ImGuiTableColumnFlags_DefaultHide) ? 0 : 1;
3737-
column->SortOrder = (column->Flags & ImGuiTableColumnFlags_DefaultSort) ? 0 : -1;
3738-
column->SortDirection = (column->Flags & ImGuiTableColumnFlags_DefaultSort) ? ((column->Flags & ImGuiTableColumnFlags_PreferSortDescending) ? (ImS8)ImGuiSortDirection_Descending : (ImU8)(ImGuiSortDirection_Ascending)) : (ImS8)ImGuiSortDirection_None;
37393740
}
37403741

37413742
// Serialize ImGuiTableSettings/ImGuiTableColumnSettings into ImGuiTable/ImGuiTableColumn

0 commit comments

Comments
 (0)