Tidied space and tabs in wxMac files
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19397 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
// Created: 1998-01-01
|
||||
// RCS-ID: $Id$
|
||||
// Copyright: (c) Stefan Csomor
|
||||
// Licence: wxWindows licence
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifdef __GNUG__
|
||||
@@ -81,15 +81,15 @@ void wxTreeCtrl::SetIndent(int indent)
|
||||
|
||||
wxImageList *wxTreeCtrl::GetImageList(int which) const
|
||||
{
|
||||
if ( which == wxIMAGE_LIST_NORMAL )
|
||||
if ( which == wxIMAGE_LIST_NORMAL )
|
||||
{
|
||||
return m_imageListNormal;
|
||||
}
|
||||
else if ( which == wxIMAGE_LIST_STATE )
|
||||
return m_imageListNormal;
|
||||
}
|
||||
else if ( which == wxIMAGE_LIST_STATE )
|
||||
{
|
||||
return m_imageListState;
|
||||
}
|
||||
return NULL;
|
||||
return m_imageListState;
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void wxTreeCtrl::SetImageList(wxImageList *imageList, int which)
|
||||
@@ -274,50 +274,50 @@ bool wxTreeCtrl::DeleteItem(long item)
|
||||
bool wxTreeCtrl::ExpandItem(long item, int action)
|
||||
{
|
||||
// TODO
|
||||
switch ( action )
|
||||
{
|
||||
switch ( action )
|
||||
{
|
||||
case wxTREE_EXPAND_EXPAND:
|
||||
break;
|
||||
|
||||
break;
|
||||
|
||||
case wxTREE_EXPAND_COLLAPSE:
|
||||
break;
|
||||
|
||||
break;
|
||||
|
||||
case wxTREE_EXPAND_COLLAPSE_RESET:
|
||||
break;
|
||||
|
||||
break;
|
||||
|
||||
case wxTREE_EXPAND_TOGGLE:
|
||||
break;
|
||||
|
||||
break;
|
||||
|
||||
default:
|
||||
wxFAIL_MSG("unknown action in wxTreeCtrl::ExpandItem");
|
||||
}
|
||||
|
||||
bool bOk = FALSE; // TODO expand item
|
||||
|
||||
// May not send messages, so emulate them
|
||||
if ( bOk ) {
|
||||
wxTreeEvent event(wxEVT_NULL, m_windowId);
|
||||
event.m_item.m_itemId = item;
|
||||
event.m_item.m_mask =
|
||||
event.m_item.m_stateMask = 0xffff; // get all
|
||||
GetItem(event.m_item);
|
||||
|
||||
bool bIsExpanded = (event.m_item.m_state & wxTREE_STATE_EXPANDED) != 0;
|
||||
|
||||
event.m_code = action;
|
||||
event.SetEventObject(this);
|
||||
|
||||
// @@@ return values of {EXPAND|COLLAPS}ING event handler is discarded
|
||||
event.SetEventType(bIsExpanded ? wxEVT_COMMAND_TREE_ITEM_EXPANDING
|
||||
: wxEVT_COMMAND_TREE_ITEM_COLLAPSING);
|
||||
GetEventHandler()->ProcessEvent(event);
|
||||
|
||||
event.SetEventType(bIsExpanded ? wxEVT_COMMAND_TREE_ITEM_EXPANDED
|
||||
: wxEVT_COMMAND_TREE_ITEM_COLLAPSED);
|
||||
GetEventHandler()->ProcessEvent(event);
|
||||
}
|
||||
|
||||
return bOk;
|
||||
wxFAIL_MSG("unknown action in wxTreeCtrl::ExpandItem");
|
||||
}
|
||||
|
||||
bool bOk = FALSE; // TODO expand item
|
||||
|
||||
// May not send messages, so emulate them
|
||||
if ( bOk ) {
|
||||
wxTreeEvent event(wxEVT_NULL, m_windowId);
|
||||
event.m_item.m_itemId = item;
|
||||
event.m_item.m_mask =
|
||||
event.m_item.m_stateMask = 0xffff; // get all
|
||||
GetItem(event.m_item);
|
||||
|
||||
bool bIsExpanded = (event.m_item.m_state & wxTREE_STATE_EXPANDED) != 0;
|
||||
|
||||
event.m_code = action;
|
||||
event.SetEventObject(this);
|
||||
|
||||
// @@@ return values of {EXPAND|COLLAPS}ING event handler is discarded
|
||||
event.SetEventType(bIsExpanded ? wxEVT_COMMAND_TREE_ITEM_EXPANDING
|
||||
: wxEVT_COMMAND_TREE_ITEM_COLLAPSING);
|
||||
GetEventHandler()->ProcessEvent(event);
|
||||
|
||||
event.SetEventType(bIsExpanded ? wxEVT_COMMAND_TREE_ITEM_EXPANDED
|
||||
: wxEVT_COMMAND_TREE_ITEM_COLLAPSED);
|
||||
GetEventHandler()->ProcessEvent(event);
|
||||
}
|
||||
|
||||
return bOk;
|
||||
}
|
||||
|
||||
long wxTreeCtrl::InsertItem(long parent, wxTreeItem& info, long insertAfter)
|
||||
|
||||
Reference in New Issue
Block a user