AbstractFileBrowser.st
changeset 15053 264292b5eb1b
parent 15000 b8587413d9f6
child 15108 4dee866e7b23
--- a/AbstractFileBrowser.st	Thu Dec 18 17:13:43 2014 +0100
+++ b/AbstractFileBrowser.st	Fri Dec 19 00:15:24 2014 +0100
@@ -984,101 +984,101 @@
     <resource: #canvas>
 
     ^ 
-     #(FullSpec
-        name: encodingDialogSpec
-        window: 
-       (WindowSpec
-          label: 'File Encoding'
-          name: 'File Encoding'
-          min: (Point 10 10)
-          bounds: (Rectangle 0 0 379 590)
-        )
-        component: 
-       (SpecCollection
-          collection: (
-           (LabelSpec
-              label: 'Select the External (File-) Encoding:'
-              name: 'Label1'
-              layout: (LayoutFrame 0 0 0 0 0 1 30 0)
-              translateLabel: true
-              adjust: left
-            )
-           (DataSetSpec
-              name: 'Table1'
-              layout: (LayoutFrame 0 0 30 0 0 1 -60 1)
-              model: selectedEncoding
-              hasHorizontalScrollBar: true
-              hasVerticalScrollBar: true
-              dataList: encodingList
-              has3Dseparators: true
-              columns: 
-             (Array
-                
-               (DataSetColumnSpec
-                  label: 'Encoding'
-                  labelButtonType: Button
-                  model: at:
-                  canSelect: false
-                  isResizeable: false
-                  showRowSeparator: false
-                  showColSeparator: false
-                ) 
-               (DataSetColumnSpec
-                  label: 'Description'
-                  labelButtonType: Button
-                  model: at:
-                  canSelect: false
-                  isResizeable: false
-                  showRowSeparator: false
-                  showColSeparator: false
+    #(FullSpec
+       name: encodingDialogSpec
+       window: 
+      (WindowSpec
+         label: 'File Encoding'
+         name: 'File Encoding'
+         min: (Point 10 10)
+         bounds: (Rectangle 0 0 379 590)
+       )
+       component: 
+      (SpecCollection
+         collection: (
+          (LabelSpec
+             label: 'Select the External (File-) Encoding:'
+             name: 'Label1'
+             layout: (LayoutFrame 0 0 0 0 0 1 30 0)
+             translateLabel: true
+             adjust: left
+           )
+          (DataSetSpec
+             name: 'Table1'
+             layout: (LayoutFrame 0 0 30 0 0 1 -60 1)
+             model: selectedEncoding
+             hasHorizontalScrollBar: true
+             hasVerticalScrollBar: true
+             dataList: encodingList
+             has3Dseparators: true
+             columns: 
+            (Array
+               
+              (DataSetColumnSpec
+                 label: 'Encoding'
+                 labelButtonType: Button
+                 height: heightOfFirstRow
+                 model: at:
+                 canSelect: false
+                 isResizeable: false
+                 showRowSeparator: false
+                 showColSeparator: false
+               ) 
+              (DataSetColumnSpec
+                 label: 'Description'
+                 labelButtonType: Button
+                 height: heightOfFirstRow
+                 model: at:
+                 canSelect: false
+                 isResizeable: false
+                 showRowSeparator: false
+                 showColSeparator: false
+               )
+             )
+             doubleClickChannel: accept
+           )
+          (CheckBoxSpec
+             label: 'Lock Encoding'
+             name: 'LockEncodingCheckBox'
+             layout: (LayoutFrame 3 0 -60 1 217 0 -30 1)
+             activeHelpKey: lockFileEncoding
+             model: lockFileEncoding
+             translateLabel: true
+           )
+          (HorizontalPanelViewSpec
+             name: 'ButtonPanel'
+             layout: (LayoutFrame 0 0 -30 1 0 1 0 1)
+             horizontalLayout: fitSpace
+             verticalLayout: center
+             horizontalSpace: 3
+             verticalSpace: 3
+             reverseOrderIfOKAtLeft: true
+             component: 
+            (SpecCollection
+               collection: (
+                (ActionButtonSpec
+                   label: 'Cancel'
+                   name: 'Button2'
+                   translateLabel: true
+                   model: cancel
+                   extent: (Point 183 22)
+                 )
+                (ActionButtonSpec
+                   label: 'OK'
+                   name: 'Button1'
+                   translateLabel: true
+                   model: accept
+                   isDefault: true
+                   extent: (Point 184 22)
+                 )
                 )
-              )
-              doubleClickChannel: accept
-            )
-           (HorizontalPanelViewSpec
-              name: 'ButtonPanel'
-              layout: (LayoutFrame 0 0 -30 1 0 1 0 1)
-              horizontalLayout: fitSpace
-              verticalLayout: center
-              horizontalSpace: 3
-              verticalSpace: 3
-              reverseOrderIfOKAtLeft: true
-              component: 
-             (SpecCollection
-                collection: (
-                 (ActionButtonSpec
-                    label: 'Cancel'
-                    name: 'Button2'
-                    translateLabel: true
-                    model: cancel
-                    extent: (Point 185 22)
-                  )
-                 (ActionButtonSpec
-                    label: 'OK'
-                    name: 'Button1'
-                    translateLabel: true
-                    model: accept
-                    isDefault: true
-                    extent: (Point 185 22)
-                  )
-                 )
-               
-              )
-            )
-           (CheckBoxSpec
-              label: 'Lock Encoding'
-              name: 'LockEncodingCheckBox'
-              layout: (LayoutFrame 3 0 -60 1 217 0 -30 1)
-              activeHelpKey: lockFileEncoding
-              model: lockFileEncoding
-              translateLabel: true
-            )
+              
+             )
            )
-         
-        )
-      )
-
-    "Modified: / 06-01-2012 / 15:40:54 / cg"
+          )
+        
+       )
+     )
 !
 
 lineEndConventionDialogSpec
@@ -9559,10 +9559,10 @@
 !AbstractFileBrowser class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractFileBrowser.st,v 1.574 2014-12-09 16:36:24 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractFileBrowser.st,v 1.575 2014-12-18 23:15:24 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractFileBrowser.st,v 1.574 2014-12-09 16:36:24 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractFileBrowser.st,v 1.575 2014-12-18 23:15:24 cg Exp $'
 ! !