Implemented wxDataViewColumn for wxOSX/Cocoa
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64552 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -2937,6 +2937,18 @@ void wxDataViewColumn::SetReorderable(bool reorderable)
|
||||
{
|
||||
}
|
||||
|
||||
void wxDataViewColumn::SetHidden(bool hidden)
|
||||
{
|
||||
// How to set flag here?
|
||||
|
||||
[m_NativeDataPtr->GetNativeColumnPtr() setHidden:hidden];
|
||||
}
|
||||
|
||||
bool wxDataViewColumn::IsHidden() const
|
||||
{
|
||||
return [m_NativeDataPtr->GetNativeColumnPtr() isHidden];
|
||||
}
|
||||
|
||||
void wxDataViewColumn::SetResizeable(bool resizeable)
|
||||
{
|
||||
wxDataViewColumnBase::SetResizeable(resizeable);
|
||||
|
Reference in New Issue
Block a user