|
Class: AbstractDirectoryBrowser
Object
|
+--Model
|
+--ApplicationModel
|
+--AbstractFileBrowser
|
+--AbstractDirectoryBrowser
|
+--DirectoryContentsBrowser
|
+--DirectoryTreeBrowser
- Package:
- stx:libtool
- Category:
- Interface-Tools-File
- Version:
- rev:
1.35
date: 2018/05/22 16:52:01
- user: cg
- file: AbstractDirectoryBrowser.st directory: libtool
- module: stx stc-classLibrary: libtool
- Author:
- Christian Penk
Abstract class containing the common code from DirectoryTreeBrowser and
DirectoryContentsBrowser applications.
queries
-
isAbstract
-
accessing
-
updateToExternFileHolderLock
-
drag & drop
-
canDrop: aDropContext
-
-
doDrop: aContext
-
-
dropDestinationPath
-
-
dropEnter: aContext
-
self directory isNil ifTrue:[^ self].
-
dropLeave: aDropContext
-
called, when leaving the widget
-
dropTargetItemChangedTo: anItem in: aContext
-
-
getDropObjects: anArgument
-
-
getLineNumberFor: aDropContext
-
-
pushUserEvent: selector withArgument: argument
-
-
removeExpandItemTimedBlock
-
left blank
file actions
-
doCopy
-
copy the selected files/directories to the clipBoard
-
doCut
-
cut the selected files/directories to the clipBoard
-
doDelete
-
delete the selected files/directories
-
doErase
-
erase the selected files
selection
-
selectedFiles
-
-
selectedItems
-
startup & release
-
initialize
-
-
postOpenAsSubcanvasWith: aBuilder
-
this is sent after the applications window is opened inside another application.
Can be redefined in subclasses for actions after showing the canvas view.
-
postOpenFromMaster: fromMaster
-
-
postOpenWith: aBuilder
-
this is sent after the applications main window is opened.
Can be redefined in subclasses for actions after opening the view.
-
preBuildWith: aBuilder
-
|