| Home | Trees | Indices | Help |
|
|---|
|
|
buffers.wx.ListCtrl --+
|
object --+ |
| |
lib.column_autosize.ColumnAutoSizeMixin --+
|
wx.lib.mixins.listctrl.ColumnSorterMixin --+
|
object --+ |
| |
lib.userparams.ClassPrefs --+ |
| |
object --+ | |
| | |
debug.debugmixin --+ |
| |
major.MajorMode --+
|
DiredMode
Directory viewing mode
Dired is a directory viewing mode that works like an extremely bare-bones file manager.
| Nested Classes | |
|
stc_class stc_class is used to associate this major mode with a storage mechanism (implementing the STCInterface). |
|
|
Inherited from |
|
| Instance Methods | |||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
Inherited from Inherited from Inherited from Inherited from |
|||
| Class Methods | |||
|
|||
|
Inherited from Inherited from |
|||
| Class Variables | |
keyword = "Dired"The single-word keyword representing this major mode |
|
icon = 'icons/folder_explore.png'Pointer to the icon representing this major mode |
|
allow_threaded_loading = FalseIf this mode allows threading loading, set this True |
|
|
Inherited from Inherited from |
|
| Properties | |
|
Inherited from |
| Method Details |
Hook to short-circuit the mode matching heuristics. For non-editing applications and client applications that connect to a server, this hook provides the ability to short-circuit the matching process and open a mode immediately. This method must not attempt to open the url and read any data. All modes' verifyProtocol methods are called before the file is attempted to be opened, and attempting to read data here could mess up streaming files.
|
Initialized required parameters. This constructor must be called within the init method of the associated ListCtrl class using this mixin in order to set up some required parameters. If the automatic scaling is used in response to user resize events and the ListCtrl class also binds the wx.EVT_SIZE event, it will have to manually call the mixin's OnSize method, otherwise the mixin will not automatically resize the columns in the list. Keyword arguments recognized: resize: True/False value indicating if the wx.EVT_SIZE event should be caught and the list columns should be resized in response to the user resizing the window. (Default is True)
|
Returns a tuple of image list indexesthe indexes in the image list for an image to be put on the column header when sorting in descending order.
|
Returns a tuple of 2 values to use for secondary sort values when the items in the selected column match equal. The default just returns the item data values.
|
Hook to add custom listeners. Subclasses should override this method rather than createListeners to add their own listeners.
|
Hook to remove custom listeners. Any listeners added by subclasses in createListenersPostHook should be removed here.
|
Move the selection up or down. If dir < 0, move the selection to the item before the first currently selected item, and if dir > 0 move the selection to after the last item that is currently selected. |
Get the flags for the given key. If the key has not been seen before, create an initial state for those flags (which is all flags cleared) and return that. |
Set the specified flag for all the selected items. flag: a single character representing the flag to set |
Operate on all the flags for each of the buffers. For each buffer item, process the flags to perform the requested action. |
Reset the list. No optimization here, just rebuild the entire list. |
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Thu Feb 21 14:51:15 2008 | http://epydoc.sourceforge.net |