class WXDLLEXPORT wxTreeRenameTimer;
class WXDLLEXPORT wxTreeFindTimer;
class WXDLLEXPORT wxTreeTextCtrl;
+class WXDLLEXPORT wxTextCtrl;
// -----------------------------------------------------------------------------
// wxGenericTreeCtrl - the tree control
// been before.
void EditLabel( const wxTreeItemId& item ) { Edit( item ); }
void Edit( const wxTreeItemId& item );
+ // returns a pointer to the text edit control if the item is being
+ // edited, NULL otherwise (it's assumed that no more than one item may
+ // be edited simultaneously)
+ wxTextCtrl* GetEditControl() const;
// sorting
// this function is called to compare 2 items and should return -1, 0
wxGenericTreeItem *m_dropTarget;
wxCursor m_oldCursor; // cursor is changed while dragging
wxGenericTreeItem *m_oldSelection;
+ wxTreeTextCtrl *m_textCtrl;
wxTimer *m_renameTimer;
int image, int selectedImage,
wxTreeItemData *data);
+ // called by wxTextTreeCtrl when it marks itself for deletion
+ void ResetTextControl();
+
// find the first item starting with the given prefix after the given item
wxTreeItemId FindItem(const wxTreeItemId& id, const wxString& prefix) const;
{
if ( !m_finished )
{
+ m_owner->ResetTextControl();
+
wxPendingDelete.Append(this);
m_finished = TRUE;
m_dragCount = 0;
m_isDragging = FALSE;
m_dropTarget = m_oldSelection = (wxGenericTreeItem *)NULL;
+ m_textCtrl = NULL;
m_renameTimer = NULL;
m_findTimer = NULL;
return wxTreeItemId();
}
+// called by wxTextTreeCtrl when it marks itself for deletion
+void wxGenericTreeCtrl::ResetTextControl()
+{
+ m_textCtrl = NULL;
+}
+
// find the first item starting with the given prefix after the given item
wxTreeItemId wxGenericTreeCtrl::FindItem(const wxTreeItemId& idParent,
const wxString& prefixOrig) const
if ( m_dirty )
wxYieldIfNeeded();
- wxTreeTextCtrl *text = new wxTreeTextCtrl(this, itemEdit);
+ m_textCtrl = new wxTreeTextCtrl(this, itemEdit);
- text->SetFocus();
+ m_textCtrl->SetFocus();
+}
+
+// returns a pointer to the text edit control if the item is being
+// edited, NULL otherwise (it's assumed that no more than one item may
+// be edited simultaneously)
+wxTextCtrl* wxGenericTreeCtrl::GetEditControl() const
+{
+ return m_textCtrl;
}
bool wxGenericTreeCtrl::OnRenameAccept(wxGenericTreeItem *item,