+// ============================================================================
+// wxSettableHeaderColumn implementation
+// ============================================================================
+
+void wxSettableHeaderColumn::SetIndividualFlags(int flags)
+{
+ SetResizeable((flags & wxCOL_RESIZABLE) != 0);
+ SetSortable((flags & wxCOL_SORTABLE) != 0);
+ SetReorderable((flags & wxCOL_REORDERABLE) != 0);
+ SetHidden((flags & wxCOL_HIDDEN) != 0);
+}
+
+void wxSettableHeaderColumn::ChangeFlag(int flag, bool set)