build fix for wxUSE_DRAGIMAGE==0

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@45841 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Paul Cornett
2007-05-05 18:48:56 +00:00
parent 446e3c13a4
commit c5fd16fca0
2 changed files with 10 additions and 0 deletions

View File

@@ -291,8 +291,10 @@ private:
// true if the hash above is not empty
bool m_hasAnyAttr;
#if wxUSE_DRAGIMAGE
// used for dragging
wxDragImage *m_dragImage;
#endif
// Virtual root item, if wxTR_HIDE_ROOT is set.
void* m_pVirtualRoot;

View File

@@ -622,7 +622,9 @@ void wxTreeCtrl::Init()
{
m_textCtrl = NULL;
m_hasAnyAttr = false;
#if wxUSE_DRAGIMAGE
m_dragImage = NULL;
#endif
m_pVirtualRoot = NULL;
// initialize the global array of events now as it can't be done statically
@@ -2198,6 +2200,7 @@ WXLRESULT wxTreeCtrl::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lPara
}
#endif // __WXWINCE__
#if wxUSE_DRAGIMAGE
if ( m_dragImage )
{
m_dragImage->Move(wxPoint(x, y));
@@ -2210,6 +2213,7 @@ WXLRESULT wxTreeCtrl::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lPara
m_dragImage->Show();
}
}
#endif // wxUSE_DRAGIMAGE
break;
case WM_LBUTTONUP:
@@ -2235,6 +2239,7 @@ WXLRESULT wxTreeCtrl::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lPara
// fall through
case WM_RBUTTONUP:
#if wxUSE_DRAGIMAGE
if ( m_dragImage )
{
m_dragImage->EndDrag();
@@ -2250,6 +2255,7 @@ WXLRESULT wxTreeCtrl::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lPara
// are selected simultaneously which is quite weird
TreeView_SelectDropTarget(GetHwnd(), 0);
}
#endif // wxUSE_DRAGIMAGE
break;
}
}
@@ -2778,6 +2784,7 @@ bool wxTreeCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
case TVN_BEGINDRAG:
case TVN_BEGINRDRAG:
#if wxUSE_DRAGIMAGE
if ( event.IsAllowed() )
{
// normally this is impossible because the m_dragImage is
@@ -2788,6 +2795,7 @@ bool wxTreeCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
m_dragImage->BeginDrag(wxPoint(0,0), this);
m_dragImage->Show();
}
#endif // wxUSE_DRAGIMAGE
break;
case TVN_DELETEITEM: