FileBrowserV2.st
changeset 4581 d61fec7a9e4f
parent 4577 52c443045ead
child 4593 a2b057480bfc
--- a/FileBrowserV2.st	Thu Feb 20 17:27:57 2003 +0100
+++ b/FileBrowserV2.st	Thu Feb 20 17:32:16 2003 +0100
@@ -19,13 +19,6 @@
 	category:'Interface-Tools-File'
 !
 
-ApplicationModel subclass:#SettingDialog
-	instanceVariableNames:''
-	classVariableNames:''
-	poolDictionaries:''
-	privateIn:FileBrowserV2
-!
-
 !FileBrowserV2 class methodsFor:'documentation'!
 
 copyright
@@ -1430,117 +1423,10 @@
     ^ super release
 ! !
 
-!FileBrowserV2::SettingDialog class methodsFor:'interface specs'!
-
-windowSpec
-    "This resource specification was automatically generated
-     by the UIPainter of ST/X."
-
-    "Do not manually edit this!! If it is corrupted,
-     the UIPainter may not be able to read the specification."
-
-    "
-     UIPainter new openOnClass:FileBrowserV2::SettingDialog andSelector:#windowSpec
-     FileBrowserV2::SettingDialog new openInterface:#windowSpec
-     FileBrowserV2::SettingDialog open
-    "
-
-    <resource: #canvas>
-
-    ^ 
-     #(#FullSpec
-        #name: #windowSpec
-        #window: 
-       #(#WindowSpec
-          #label: 'FileBrowser V2 Settings'
-          #name: 'FileBrowser V2 Settings'
-          #min: #(#Point 10 10)
-          #max: #(#Point 1024 768)
-          #bounds: #(#Rectangle 12 22 512 272)
-        )
-        #component: 
-       #(#SpecCollection
-          #collection: #()
-        )
-      )
-! !
-
-!FileBrowserV2::SettingDialog methodsFor:'initialization & release'!
-
-closeDownViews
-    "This is a hook method generated by the Browser.
-     It will be invoked when your app/dialog-window is really closed.
-     See also #closeDownViews, which is invoked before and may suppress the close
-     or ask the user for confirmation."
-
-    "/ change the code below as required ...
-    "/ This should cleanup any leftover resources
-    "/ (for example, temporary files)
-    "/ super closeRequest will initiate the closeDown
-
-    "/ add your code here
-
-    "/ do not remove the one below ...
-    ^ super closeDownViews
-!
-
-closeRequest
-    "This is a hook method generated by the Browser.
-     It will be invoked when your app/dialog-window is about to be
-     closed (this method has a chance to suppress the close).
-     See also #closeDownViews, which is invoked when the close is really done."
-
-    "/ change the code below as required ...
-    "/ Closing can be suppressed, by simply returning.
-    "/ The 'super closeRequest' at the end will initiate the real closeDown
-
-    ^ super closeRequest
-!
-
-postBuildWith:aBuilder
-    "This is a hook method generated by the Browser.
-     It will be invoked during the initialization of your app/dialog,
-     after all of the visual components have been built, 
-     but BEFORE the top window is made visible.
-     Add any app-specific actions here (reading files, setting up values etc.)
-     See also #postOpenWith:, which is invoked after opening."
-
-    "/ add any code here ...
-
-    ^ super postBuildWith:aBuilder
-!
-
-postOpenWith:aBuilder
-    "This is a hook method generated by the Browser.
-     It will be invoked right after the applications window has been opened.
-     Add any app-specific actions here (starting background processes etc.).
-     See also #postBuildWith:, which is invoked before opening."
-
-    "/ add any code here ...
-
-    ^ super postOpenWith:aBuilder
-! !
-
-!FileBrowserV2::SettingDialog methodsFor:'menu actions'!
-
-help
-    "This method was generated by the Browser.
-     It will be invoked when the menu-item 'help-documentation' is selected."
-
-    "/ change below as required ...
-
-    "/ to open an HTML viewer on some document (under 'doc/online/<language>/' ):
-"/    HTMLDocumentView openFullOnDocumentationFile:'TOP.html'.
-
-    "/ add application-specific help files under the 'doc/online/<language>/help/appName'
-    "/ directory, and open a viewer with:
-    "/ HTMLDocumentView openFullOnDocumentationFile:'help/<MyApplication>/TOP.html'.
-! !
-
 !FileBrowserV2 class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/FileBrowserV2.st,v 1.64 2003-02-20 16:14:27 penk Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/FileBrowserV2.st,v 1.65 2003-02-20 16:31:43 penk Exp $'
 ! !
 
 FileBrowserV2 initialize!