wx.lib.agw.customtreectrl.TreeTextCtrl¶
Control used for in-place edit.
This is a subclass of lib.expando.ExpandoTextCtrl as CustomTreeCtrl supports multiline
text items.
Note
To add a newline character in a multiline item, press Shift + Enter as the Enter
key alone is consumed by CustomTreeCtrl to finish the editing and Ctrl + Enter is
consumed by the platform for tab navigation.
Class Hierarchy¶
Known Superclasses¶
wx.lib.expando.ExpandoTextCtrl
Methods Summary¶
Default class constructor. |
|
Accepts/rejects the changes made by the user. |
|
Finish editing. |
|
Returns the item currently edited. |
|
Handles the |
|
Handles the |
|
Handles the |
|
Suddenly stops the editing. |
Class API¶
- class TreeTextCtrl(ExpandoTextCtrl)¶
Control used for in-place edit.
This is a subclass of
lib.expando.ExpandoTextCtrlasCustomTreeCtrlsupports multiline text items.Note
To add a newline character in a multiline item, press
Shift+Enteras theEnterkey alone is consumed byCustomTreeCtrlto finish the editing andCtrl+Enteris consumed by the platform for tab navigation.
Methods¶
- __init__(self, owner, item=None)¶
Default class constructor. For internal use: do not call it in your code!
- Parameters:
owner – the control parent (an instance of
CustomTreeCtrl);item – an instance of
GenericTreeItem.
- Raise:
Exception when the item has an associated image but the parent
CustomTreeCtrldoes not have awx.ImageListassigned.
- AcceptChanges(self)¶
Accepts/rejects the changes made by the user.
- Returns:
Trueif the changes to the item text have been accepted,Falseif they have been rejected (i.e., vetoed by the user).
- Finish(self)¶
Finish editing.
- item(self)¶
Returns the item currently edited.
- Returns:
An instance of
GenericTreeItem.
- OnChar(self, event)¶
Handles the
wx.EVT_CHARevent forTreeTextCtrl.- Parameters:
event – a
KeyEventevent to be processed.
- OnKeyUp(self, event)¶
Handles the
wx.EVT_KEY_UPevent forTreeTextCtrl.- Parameters:
event – a
KeyEventevent to be processed.
- OnKillFocus(self, event)¶
Handles the
wx.EVT_KILL_FOCUSevent forTreeTextCtrl.- Parameters:
event – a
FocusEventevent to be processed.
- StopEditing(self)¶
Suddenly stops the editing.