X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1e6feb95a79834836e88143b15d9f424ebe79621..aed08d7967af9365edd61723ca9fff977ca744c2:/src/generic/treelay.cpp diff --git a/src/generic/treelay.cpp b/src/generic/treelay.cpp index 44ab82d233..701a0f14b7 100644 --- a/src/generic/treelay.cpp +++ b/src/generic/treelay.cpp @@ -21,6 +21,8 @@ #endif #ifndef WX_PRECOMP +#include "wx/dc.h" +#include "wx/event.h" #endif #if wxUSE_TREELAYOUT @@ -298,6 +300,32 @@ long wxTreeLayoutStored::AddChild(const wxString& name, const wxString& parent) return -1; } +long wxTreeLayoutStored::AddChild(const wxString& name, long parent) +{ + if (m_num < (m_maxNodes -1 ) && parent < m_num) + { + long i = -1; + if (parent != -1) + { + i = parent; + } + else + { + m_parentNode = m_num; + } + + m_nodes[m_num].m_parentId = i; + m_nodes[m_num].m_name = name; + m_nodes[m_num].m_x = m_nodes[m_num].m_y = 0; + m_nodes[m_num].m_clientData = 0; + m_num ++; + + return (m_num - 1); + } + else + return -1; +} + long wxTreeLayoutStored::NameToId(const wxString& name) { long i;