
wx.lib.agw.hypertreelist.EditCtrl¶Base class for controls used for in-place edit.
Class Hierarchy¶
Inheritance diagram for class EditCtrl:
Known Subclasses¶wx.lib.agw.hypertreelist.EditTextCtrl
Methods Summary¶Default class constructor. |
|
Accepts/refuses the changes made by the user. |
|
Returns the column currently edited. |
|
Finish editing. |
|
Returns the item currently edited. |
|
Handles the |
|
Suddenly stops the editing. |
Class API¶Base class for controls used for in-place edit.
Default class constructor.
parent – the window parent. Must not be None;
id – window identifier. A value of -1 indicates a default value;
item – an instance of TreeListItem;
column – if not None, an integer specifying the column index.
If it is None, the main column index is used;
owner – the window owner, in this case an instance of TreeListMainWindow;
value – the initial value in the control;
pos – the control position. A value of (-1, -1) indicates a default position, chosen by either the windowing system or wxPython, depending on platform;
size – the control size. A value of (-1, -1) indicates a default size, chosen by either the windowing system or wxPython, depending on platform;
style – the window style;
validator – the window validator;
name – the window name.
Accepts/refuses the changes made by the user.
Returns the column currently edited.
Finish editing.
Returns the item currently edited.
Handles the wx.EVT_KILL_FOCUS event for EditCtrl
event – a FocusEvent event to be processed.
Suddenly stops the editing.