@@ -1565,6 +1565,31 @@ void ImGui::EndTable()
1565
1565
NavUpdateCurrentWindowIsScrollPushableX ();
1566
1566
}
1567
1567
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
+
1568
1593
// See "COLUMNS SIZING POLICIES" comments at the top of this file
1569
1594
// If (init_width_or_weight <= 0.0f) it is ignored
1570
1595
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
1593
1618
IM_ASSERT (init_width_or_weight <= 0 .0f && " Can only specify width/weight if sizing policy is set explicitly in either Table or Column." );
1594
1619
1595
1620
// 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 )
1597
1622
if ((flags & ImGuiTableColumnFlags_WidthMask_) == 0 && init_width_or_weight > 0 .0f )
1598
1623
if ((table->Flags & ImGuiTableFlags_SizingMask_) == ImGuiTableFlags_SizingFixedFit || (table->Flags & ImGuiTableFlags_SizingMask_) == ImGuiTableFlags_SizingFixedSame)
1599
1624
flags |= ImGuiTableColumnFlags_WidthFixed;
@@ -1608,31 +1633,13 @@ void ImGui::TableSetupColumn(const char* label, ImGuiTableColumnFlags flags, flo
1608
1633
flags = column->Flags ;
1609
1634
1610
1635
// Initialize defaults
1611
- // FIXME: Similar to code in TableLoadSettings(), best to see how if we can merge.
1612
1636
column->InitStretchWeightOrWidth = init_width_or_weight;
1613
1637
if (table->IsInitializing )
1614
1638
{
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);
1636
1643
}
1637
1644
1638
1645
// Store name (append with zero-terminator in contiguous buffer)
@@ -3725,17 +3732,11 @@ void ImGui::TableLoadSettings(ImGuiTable* table)
3725
3732
table->RefScale = settings->RefScale ;
3726
3733
3727
3734
// Initialize default columns settings
3728
- // FIXME: Similar to code in TableSetupColumn(), best to see how if we can merge.
3729
3735
for (int column_n = 0 ; column_n < table->ColumnsCount ; column_n++)
3730
3736
{
3731
3737
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 );
3734
3739
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;
3739
3740
}
3740
3741
3741
3742
// Serialize ImGuiTableSettings/ImGuiTableColumnSettings into ImGuiTable/ImGuiTableColumn
0 commit comments