]> git.saurik.com Git - wxWidgets.git/commitdiff
[ 1965257 ] wxMac implementation of wxDataViewColumn::SetResizeable()
authorRobert Roebling <robert@roebling.de>
Fri, 16 May 2008 12:49:35 +0000 (12:49 +0000)
committerRobert Roebling <robert@roebling.de>
Fri, 16 May 2008 12:49:35 +0000 (12:49 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53605 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/dataview.cpp

index 99b593cdb93b90c9857e622f0e8d1fcad327ebb8..0dda1609bc57489e067bb52e7f910d7a07614c7b 100644 (file)
@@ -867,8 +867,39 @@ void wxDataViewColumn::SetReorderable(bool reorderable)
   } /* if */
 } /* wxDataViewColumn::SetReorderable(bool) */
 
   } /* if */
 } /* wxDataViewColumn::SetReorderable(bool) */
 
-void wxDataViewColumn::SetResizeable(bool WXUNUSED(resizeable))
+void wxDataViewColumn::SetResizeable(bool resizeable)
 {
 {
+ // first set the internal flag of the column:
+  if (resizeable)
+    this->m_flags |= wxDATAVIEW_COL_RESIZABLE;
+  else
+    this->m_flags &= ~wxDATAVIEW_COL_RESIZABLE;
+ // if the column is associated with a control change also immediately the flags of the control:
+  wxDataViewCtrl* dataViewCtrlPtr(this->GetOwner()); // variable definition and initialization
+
+  if (dataViewCtrlPtr != NULL)
+  {
+   // variable definition and initialization:
+    wxMacDataViewDataBrowserListViewControlPointer macDataViewListCtrlPtr(dynamic_cast<wxMacDataViewDataBrowserListViewControlPointer>(dataViewCtrlPtr->GetPeer()));
+    
+    if (macDataViewListCtrlPtr != NULL)
+    {
+     // variable definition and initialization:
+      DataBrowserListViewHeaderDesc headerDescription;
+      
+      verify_noerr(macDataViewListCtrlPtr->GetHeaderDesc(this->GetPropertyID(),&headerDescription));
+      if (resizeable) {
+        headerDescription.minimumWidth = 0;
+        headerDescription.maximumWidth = 30000;
+      }
+      else {
+        headerDescription.minimumWidth = this->m_width;
+        headerDescription.maximumWidth = this->m_width;
+      }
+      verify_noerr(macDataViewListCtrlPtr->SetHeaderDesc(this->GetPropertyID(),&headerDescription));
+      macDataViewListCtrlPtr->SetSortProperty(this->GetPropertyID());
+    } /* if */
+  } /* if */
 } /* wxDataViewColumn::SetResizeable(bool) */
 
 void wxDataViewColumn::SetSortable(bool sortable)
 } /* wxDataViewColumn::SetResizeable(bool) */
 
 void wxDataViewColumn::SetSortable(bool sortable)