FileSelectionBrowser.st
author Claus Gittinger <cg@exept.de>
Thu, 24 Sep 1998 16:57:14 +0200
changeset 1000 efafa57e0313
parent 998 ad33f2625598
child 1001 4474ba86a5d8
permissions -rw-r--r--
kludge for win32 in #setRootForFile: WIN32 has trouble with network drives.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
404
35982cf1482f initial checkin
tz
parents:
diff changeset
     1
"
502
624dc714fd69 copyright changed
tz
parents: 468
diff changeset
     2
 COPYRIGHT (c) 1997 by eXept Software AG
404
35982cf1482f initial checkin
tz
parents:
diff changeset
     3
              All Rights Reserved
35982cf1482f initial checkin
tz
parents:
diff changeset
     4
35982cf1482f initial checkin
tz
parents:
diff changeset
     5
 This software is furnished under a license and may be used
35982cf1482f initial checkin
tz
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
35982cf1482f initial checkin
tz
parents:
diff changeset
     7
 inclusion of the above copyright notice. This software may not
35982cf1482f initial checkin
tz
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
35982cf1482f initial checkin
tz
parents:
diff changeset
     9
 other person. No title to or ownership of the software is
35982cf1482f initial checkin
tz
parents:
diff changeset
    10
 hereby transferred.
35982cf1482f initial checkin
tz
parents:
diff changeset
    11
"
35982cf1482f initial checkin
tz
parents:
diff changeset
    12
35982cf1482f initial checkin
tz
parents:
diff changeset
    13
35982cf1482f initial checkin
tz
parents:
diff changeset
    14
35982cf1482f initial checkin
tz
parents:
diff changeset
    15
SelectionBrowser subclass:#FileSelectionBrowser
35982cf1482f initial checkin
tz
parents:
diff changeset
    16
	instanceVariableNames:'selectedFileFilter directoryView listOfFileFilters directory'
35982cf1482f initial checkin
tz
parents:
diff changeset
    17
	classVariableNames:''
35982cf1482f initial checkin
tz
parents:
diff changeset
    18
	poolDictionaries:''
619
36c9d07f7dc3 class category changed
tz
parents: 615
diff changeset
    19
	category:'Interface-Dialogs'
404
35982cf1482f initial checkin
tz
parents:
diff changeset
    20
!
35982cf1482f initial checkin
tz
parents:
diff changeset
    21
35982cf1482f initial checkin
tz
parents:
diff changeset
    22
!FileSelectionBrowser class methodsFor:'documentation'!
35982cf1482f initial checkin
tz
parents:
diff changeset
    23
35982cf1482f initial checkin
tz
parents:
diff changeset
    24
copyright
35982cf1482f initial checkin
tz
parents:
diff changeset
    25
"
502
624dc714fd69 copyright changed
tz
parents: 468
diff changeset
    26
 COPYRIGHT (c) 1997 by eXept Software AG
404
35982cf1482f initial checkin
tz
parents:
diff changeset
    27
              All Rights Reserved
35982cf1482f initial checkin
tz
parents:
diff changeset
    28
35982cf1482f initial checkin
tz
parents:
diff changeset
    29
 This software is furnished under a license and may be used
35982cf1482f initial checkin
tz
parents:
diff changeset
    30
 only in accordance with the terms of that license and with the
35982cf1482f initial checkin
tz
parents:
diff changeset
    31
 inclusion of the above copyright notice. This software may not
35982cf1482f initial checkin
tz
parents:
diff changeset
    32
 be provided or otherwise made available to, or used by, any
35982cf1482f initial checkin
tz
parents:
diff changeset
    33
 other person. No title to or ownership of the software is
35982cf1482f initial checkin
tz
parents:
diff changeset
    34
 hereby transferred.
35982cf1482f initial checkin
tz
parents:
diff changeset
    35
"
35982cf1482f initial checkin
tz
parents:
diff changeset
    36
35982cf1482f initial checkin
tz
parents:
diff changeset
    37
35982cf1482f initial checkin
tz
parents:
diff changeset
    38
!
35982cf1482f initial checkin
tz
parents:
diff changeset
    39
35982cf1482f initial checkin
tz
parents:
diff changeset
    40
documentation
35982cf1482f initial checkin
tz
parents:
diff changeset
    41
"
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
    42
    The FileSelectionBrowser allows you to browse in file directories
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
    43
    and to select files in order to load file contents or to save
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
    44
    something to files.
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
    45
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
    46
    [start with:]
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
    47
        FileSelectionBrowser open
502
624dc714fd69 copyright changed
tz
parents: 468
diff changeset
    48
624dc714fd69 copyright changed
tz
parents: 468
diff changeset
    49
    [author:]
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
    50
        Thomas Zwick, eXept Software AG
404
35982cf1482f initial checkin
tz
parents:
diff changeset
    51
"
35982cf1482f initial checkin
tz
parents:
diff changeset
    52
! !
35982cf1482f initial checkin
tz
parents:
diff changeset
    53
35982cf1482f initial checkin
tz
parents:
diff changeset
    54
!FileSelectionBrowser class methodsFor:'instance creation'!
35982cf1482f initial checkin
tz
parents:
diff changeset
    55
35982cf1482f initial checkin
tz
parents:
diff changeset
    56
request: aTitle fileName: aFileName inDirectory: dir withFileFilters: fileFilters
957
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
    57
    ^self new
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
    58
        title: aTitle;
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
    59
        fileName: aFileName;
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
    60
        directory: dir;
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
    61
        listOfFileFilters: fileFilters;
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
    62
        open
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
    63
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
    64
    "
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
    65
    self 
404
35982cf1482f initial checkin
tz
parents:
diff changeset
    66
        request: 'Select Your Profile File' 
35982cf1482f initial checkin
tz
parents:
diff changeset
    67
        fileName: '.profile' 
35982cf1482f initial checkin
tz
parents:
diff changeset
    68
        inDirectory: Filename homeDirectory 
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
    69
        withFileFilters: #('.*')
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
    70
    "
404
35982cf1482f initial checkin
tz
parents:
diff changeset
    71
957
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
    72
    "Modified: / 17.8.1998 / 10:15:50 / cg"
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
    73
!
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
    74
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
    75
request: aTitle fileName: aFileName withFileFilters: fileFilters
404
35982cf1482f initial checkin
tz
parents:
diff changeset
    76
    ^self new
35982cf1482f initial checkin
tz
parents:
diff changeset
    77
        title: aTitle;
35982cf1482f initial checkin
tz
parents:
diff changeset
    78
        fileName: aFileName;
35982cf1482f initial checkin
tz
parents:
diff changeset
    79
        listOfFileFilters: fileFilters;
35982cf1482f initial checkin
tz
parents:
diff changeset
    80
        open
35982cf1482f initial checkin
tz
parents:
diff changeset
    81
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
    82
    "
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
    83
    self 
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
    84
        request: 'Select Your Profile File' 
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
    85
        fileName: '/etc/fstab' 
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
    86
        withFileFilters: #('*')  
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
    87
    "
462
90b8b353cd2f *** empty log message ***
tz
parents: 452
diff changeset
    88
957
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
    89
    "Modified: / 17.8.1998 / 10:15:50 / cg"
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
    90
!
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
    91
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
    92
request: aTitle pathName: aPath withFileFilters: fileFilters
957
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
    93
    ^self new
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
    94
        title: aTitle;
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
    95
        directory: aPath;
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
    96
        listOfFileFilters: fileFilters;
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
    97
        open
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
    98
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
    99
    "
871
45c6d4418ae6 checkin from browser
tz
parents: 745
diff changeset
   100
    self 
45c6d4418ae6 checkin from browser
tz
parents: 745
diff changeset
   101
        request: 'Select A File' 
45c6d4418ae6 checkin from browser
tz
parents: 745
diff changeset
   102
        pathName: '/etc' 
45c6d4418ae6 checkin from browser
tz
parents: 745
diff changeset
   103
        withFileFilters: #('*.conf')
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   104
    "
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   105
957
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
   106
    "Modified: / 17.8.1998 / 10:15:50 / cg"
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   107
!
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   108
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   109
request: aTitle withFileFilters: fileFilters
957
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
   110
    ^self new
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
   111
        title: aTitle;
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
   112
        listOfFileFilters: fileFilters;
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
   113
        open
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   114
    "
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   115
    self request: 'Select A File' fileFilters: #('.*')
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   116
    "
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   117
957
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
   118
    "Modified: / 17.8.1998 / 10:15:49 / cg"
462
90b8b353cd2f *** empty log message ***
tz
parents: 452
diff changeset
   119
!
90b8b353cd2f *** empty log message ***
tz
parents: 452
diff changeset
   120
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   121
requestFileName
957
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
   122
    ^self new title: 'Select A File'; open
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   123
    "
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   124
    self requestFileName
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   125
    "
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   126
957
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
   127
    "Modified: / 17.8.1998 / 10:15:48 / cg"
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   128
! !
35982cf1482f initial checkin
tz
parents:
diff changeset
   129
35982cf1482f initial checkin
tz
parents:
diff changeset
   130
!FileSelectionBrowser class methodsFor:'accessing'!
35982cf1482f initial checkin
tz
parents:
diff changeset
   131
35982cf1482f initial checkin
tz
parents:
diff changeset
   132
loadImageFileNameFilters
992
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   133
    ^ OrderedCollection 
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   134
        withAll: #(
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   135
                    '*.xpm ; *.xbm ; *.gif ; *.tif ; *.tiff ; *.bmp ; *.jpeg ; *.jpg'
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   136
                    '*'
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   137
                  )
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   138
992
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   139
    "Modified: / 12.9.1998 / 17:23:42 / cg"
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   140
!
35982cf1482f initial checkin
tz
parents:
diff changeset
   141
35982cf1482f initial checkin
tz
parents:
diff changeset
   142
projectFileNameFilters
992
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   143
    ^Array withAll: #(
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   144
                      '*.st ; *.*o ; *.s ; *.c ; Make* ; *.project'
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   145
                      '*'
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   146
                     )
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   147
992
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   148
    "Modified: / 12.9.1998 / 17:23:22 / cg"
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   149
!
35982cf1482f initial checkin
tz
parents:
diff changeset
   150
35982cf1482f initial checkin
tz
parents:
diff changeset
   151
saveImageFileNameFilters
992
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   152
    ^ OrderedCollection 
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   153
        withAll: #(
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   154
                    '*.xpm ; *.xbm ; *.gif ; *.tif ; *.tiff ; *.bmp'
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   155
                    '*'
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   156
                  )
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   157
992
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   158
    "Modified: / 12.9.1998 / 17:23:54 / cg"
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   159
! !
35982cf1482f initial checkin
tz
parents:
diff changeset
   160
35982cf1482f initial checkin
tz
parents:
diff changeset
   161
!FileSelectionBrowser class methodsFor:'interface specs'!
35982cf1482f initial checkin
tz
parents:
diff changeset
   162
35982cf1482f initial checkin
tz
parents:
diff changeset
   163
windowSpec
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   164
    "This resource specification was automatically generated
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   165
     by the UIPainter of ST/X."
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   166
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   167
    "Do not manually edit this!! If it is corrupted,
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   168
     the UIPainter may not be able to read the specification."
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   169
35982cf1482f initial checkin
tz
parents:
diff changeset
   170
    "
35982cf1482f initial checkin
tz
parents:
diff changeset
   171
     UIPainter new openOnClass:FileSelectionBrowser andSelector:#windowSpec
35982cf1482f initial checkin
tz
parents:
diff changeset
   172
     FileSelectionBrowser new openInterface:#windowSpec
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   173
     FileSelectionBrowser open
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   174
    "
35982cf1482f initial checkin
tz
parents:
diff changeset
   175
35982cf1482f initial checkin
tz
parents:
diff changeset
   176
    <resource: #canvas>
35982cf1482f initial checkin
tz
parents:
diff changeset
   177
35982cf1482f initial checkin
tz
parents:
diff changeset
   178
    ^
35982cf1482f initial checkin
tz
parents:
diff changeset
   179
     
35982cf1482f initial checkin
tz
parents:
diff changeset
   180
       #(#FullSpec
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   181
          #window: 
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   182
           #(#WindowSpec
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   183
              #name: 'File Selection Browser'
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   184
              #layout: #(#LayoutFrame 379 0 259 0 978 0 608 0)
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   185
              #label: 'File Selection Browser'
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   186
              #min: #(#Point 10 10)
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   187
              #max: #(#Point 1152 900)
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   188
              #bounds: #(#Rectangle 379 259 979 609)
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   189
              #usePreferredExtent: false
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   190
          )
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   191
          #component: 
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   192
           #(#SpecCollection
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   193
              #collection: 
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   194
               #(
35982cf1482f initial checkin
tz
parents:
diff changeset
   195
                 #(#VariableHorizontalPanelSpec
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   196
                    #name: 'panel'
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   197
                    #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 -40 1.0)
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   198
                    #component: 
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   199
                     #(#SpecCollection
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   200
                        #collection: 
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   201
                         #(
35982cf1482f initial checkin
tz
parents:
diff changeset
   202
                           #(#ViewSpec
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   203
                              #name: 'view1'
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   204
                              #component: 
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   205
                               #(#SpecCollection
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   206
                                  #collection: 
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   207
                                   #(
35982cf1482f initial checkin
tz
parents:
diff changeset
   208
                                     #(#FileSelectionTreeSpec
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   209
                                        #name: 'directoryTreeView'
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   210
                                        #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 -25 1.0)
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   211
                                        #model: #selectionOfDirectory
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   212
                                        #hasHorizontalScrollBar: true
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   213
                                        #hasVerticalScrollBar: true
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   214
                                        #miniScrollerHorizontal: true
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   215
                                        #showDirectoryIndicatorForRoot: false
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   216
                                        #showDirectoryIndicator: true
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   217
                                        #valueChangeSelector: #readDirectory
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   218
                                        #hierarchicalList: #rootOfDirectory
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   219
                                        #itemClass: 'Directory'
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   220
                                    )
592
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   221
                                     #(#InputFieldSpec
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   222
                                        #name: 'directoryInputField'
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   223
                                        #layout: #(#LayoutFrame 2 0.0 -22 1 0 1.0 0 1)
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   224
                                        #model: #selectionOfDirectory
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   225
                                        #immediateAccept: false
592
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   226
                                    )
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   227
                                  )
35982cf1482f initial checkin
tz
parents:
diff changeset
   228
                              )
35982cf1482f initial checkin
tz
parents:
diff changeset
   229
                          )
35982cf1482f initial checkin
tz
parents:
diff changeset
   230
                           #(#ViewSpec
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   231
                              #name: 'view2'
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   232
                              #component: 
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   233
                               #(#SpecCollection
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   234
                                  #collection: 
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   235
                                   #(
35982cf1482f initial checkin
tz
parents:
diff changeset
   236
                                     #(#InputFieldSpec
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   237
                                        #name: 'EditField'
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   238
                                        #layout: #(#LayoutFrame 1 0.0 -22 1 -2 1.0 0 1)
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   239
                                        #model: #valueOfFileName
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   240
                                        #acceptOnReturn: false
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   241
                                        #acceptOnTab: false
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   242
                                    )
35982cf1482f initial checkin
tz
parents:
diff changeset
   243
                                     #(#SubCanvasSpec
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   244
                                        #name: 'subCanvas1'
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   245
                                        #layout: #(#LayoutFrame 1 0.0 0 0.0 0 1.0 -25 1.0)
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   246
                                        #clientHolder: #directoryView
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   247
                                    )
35982cf1482f initial checkin
tz
parents:
diff changeset
   248
                                  )
35982cf1482f initial checkin
tz
parents:
diff changeset
   249
                              )
35982cf1482f initial checkin
tz
parents:
diff changeset
   250
                          )
35982cf1482f initial checkin
tz
parents:
diff changeset
   251
                        )
35982cf1482f initial checkin
tz
parents:
diff changeset
   252
                    )
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   253
                    #handles: #(#Any 0.5 1.0)
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   254
                )
426
b8110a424326 commit buttons replaced by subSpec in ToolApplicationModel
tz
parents: 404
diff changeset
   255
                 #(#UISubSpecification
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   256
                    #name: 'SubSpecification'
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   257
                    #layout: #(#LayoutFrame 2 0.0 -32 1 0 1.0 -8 1.0)
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   258
                    #majorKey: #ToolApplicationModel
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   259
                    #minorKey: #windowSpecForCommitWithoutChannels
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   260
                )
35982cf1482f initial checkin
tz
parents:
diff changeset
   261
              )
35982cf1482f initial checkin
tz
parents:
diff changeset
   262
          )
35982cf1482f initial checkin
tz
parents:
diff changeset
   263
      )
35982cf1482f initial checkin
tz
parents:
diff changeset
   264
! !
35982cf1482f initial checkin
tz
parents:
diff changeset
   265
35982cf1482f initial checkin
tz
parents:
diff changeset
   266
!FileSelectionBrowser methodsFor:'accessing'!
35982cf1482f initial checkin
tz
parents:
diff changeset
   267
35982cf1482f initial checkin
tz
parents:
diff changeset
   268
directory: aDirectory
35982cf1482f initial checkin
tz
parents:
diff changeset
   269
957
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
   270
    directory := (aDirectory ? Filename currentDirectory) asFilename asAbsoluteFilename pathName
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   271
957
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
   272
    "Modified: / 17.8.1998 / 10:15:53 / cg"
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   273
!
35982cf1482f initial checkin
tz
parents:
diff changeset
   274
35982cf1482f initial checkin
tz
parents:
diff changeset
   275
directoryView
998
ad33f2625598 care for volume changes in directory field.
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
   276
    "return the directory view on the right side (a subcanvas)"
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   277
35982cf1482f initial checkin
tz
parents:
diff changeset
   278
    ^directoryView ? (directoryView := DirectoryView new)
998
ad33f2625598 care for volume changes in directory field.
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
   279
ad33f2625598 care for volume changes in directory field.
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
   280
    "Modified: / 23.9.1998 / 16:46:50 / cg"
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   281
!
35982cf1482f initial checkin
tz
parents:
diff changeset
   282
35982cf1482f initial checkin
tz
parents:
diff changeset
   283
fileName: aFileName
35982cf1482f initial checkin
tz
parents:
diff changeset
   284
35982cf1482f initial checkin
tz
parents:
diff changeset
   285
    self valueOfFileName value: (aFileName ? '') asFilename baseName.
957
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
   286
    directory := directory ? ((aFileName ? '') asFilename asAbsoluteFilename directoryName).
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
   287
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
   288
    "Modified: / 17.8.1998 / 10:15:54 / cg"
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   289
!
35982cf1482f initial checkin
tz
parents:
diff changeset
   290
35982cf1482f initial checkin
tz
parents:
diff changeset
   291
listOfFileFilters: anArray
35982cf1482f initial checkin
tz
parents:
diff changeset
   292
35982cf1482f initial checkin
tz
parents:
diff changeset
   293
    listOfFileFilters := anArray
35982cf1482f initial checkin
tz
parents:
diff changeset
   294
! !
35982cf1482f initial checkin
tz
parents:
diff changeset
   295
35982cf1482f initial checkin
tz
parents:
diff changeset
   296
!FileSelectionBrowser methodsFor:'accessing - views'!
35982cf1482f initial checkin
tz
parents:
diff changeset
   297
592
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   298
directoryInputField
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   299
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   300
    ^builder componentAt: #directoryInputField
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   301
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   302
!
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   303
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   304
directoryTreeView
35982cf1482f initial checkin
tz
parents:
diff changeset
   305
35982cf1482f initial checkin
tz
parents:
diff changeset
   306
    ^builder componentAt: #directoryTreeView
35982cf1482f initial checkin
tz
parents:
diff changeset
   307
35982cf1482f initial checkin
tz
parents:
diff changeset
   308
! !
35982cf1482f initial checkin
tz
parents:
diff changeset
   309
35982cf1482f initial checkin
tz
parents:
diff changeset
   310
!FileSelectionBrowser methodsFor:'aspects'!
35982cf1482f initial checkin
tz
parents:
diff changeset
   311
35982cf1482f initial checkin
tz
parents:
diff changeset
   312
rootOfDirectory
35982cf1482f initial checkin
tz
parents:
diff changeset
   313
35982cf1482f initial checkin
tz
parents:
diff changeset
   314
    |holder|
35982cf1482f initial checkin
tz
parents:
diff changeset
   315
    (holder := builder bindingAt:#rootOfDirectory) isNil ifTrue:[
998
ad33f2625598 care for volume changes in directory field.
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
   316
        builder 
ad33f2625598 care for volume changes in directory field.
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
   317
            aspectAt:#rootOfDirectory 
ad33f2625598 care for volume changes in directory field.
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
   318
            put: (holder :=  Filename rootDirectory name asValue).
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   319
    ].
35982cf1482f initial checkin
tz
parents:
diff changeset
   320
    ^ holder
35982cf1482f initial checkin
tz
parents:
diff changeset
   321
998
ad33f2625598 care for volume changes in directory field.
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
   322
    "Modified: / 23.9.1998 / 16:34:59 / cg"
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   323
!
35982cf1482f initial checkin
tz
parents:
diff changeset
   324
35982cf1482f initial checkin
tz
parents:
diff changeset
   325
selectionOfDirectory
35982cf1482f initial checkin
tz
parents:
diff changeset
   326
35982cf1482f initial checkin
tz
parents:
diff changeset
   327
    |holder|
35982cf1482f initial checkin
tz
parents:
diff changeset
   328
    (holder := builder bindingAt:#selectionOfDirectory) isNil ifTrue:[
35982cf1482f initial checkin
tz
parents:
diff changeset
   329
        builder aspectAt:#selectionOfDirectory put: (holder := ValueHolder new)
35982cf1482f initial checkin
tz
parents:
diff changeset
   330
    ].
35982cf1482f initial checkin
tz
parents:
diff changeset
   331
    ^ holder
35982cf1482f initial checkin
tz
parents:
diff changeset
   332
35982cf1482f initial checkin
tz
parents:
diff changeset
   333
!
35982cf1482f initial checkin
tz
parents:
diff changeset
   334
998
ad33f2625598 care for volume changes in directory field.
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
   335
setRootForFile:aFilename
1000
efafa57e0313 kludge for win32 in #setRootForFile:
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   336
    |f root d parent|
efafa57e0313 kludge for win32 in #setRootForFile:
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   337
efafa57e0313 kludge for win32 in #setRootForFile:
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   338
    f := aFilename asFilename.
efafa57e0313 kludge for win32 in #setRootForFile:
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   339
    root := Filename rootDirectoryOnVolume:f volume.
efafa57e0313 kludge for win32 in #setRootForFile:
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   340
efafa57e0313 kludge for win32 in #setRootForFile:
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   341
    "/ on some systems, the root itself is not readable,
efafa57e0313 kludge for win32 in #setRootForFile:
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   342
    "/ but subdirs are (WIN32-network drives and VMS)
efafa57e0313 kludge for win32 in #setRootForFile:
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   343
efafa57e0313 kludge for win32 in #setRootForFile:
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   344
    (root exists and:[root isDirectory and:[root isReadable]])
efafa57e0313 kludge for win32 in #setRootForFile:
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   345
    ifFalse:[
efafa57e0313 kludge for win32 in #setRootForFile:
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   346
        "/ search backward from aFilename for the last readable dir.
efafa57e0313 kludge for win32 in #setRootForFile:
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   347
        root := f.
efafa57e0313 kludge for win32 in #setRootForFile:
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   348
        parent := root directory.
efafa57e0313 kludge for win32 in #setRootForFile:
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   349
        [parent exists and:[parent isDirectory and:[parent isReadable]]]
efafa57e0313 kludge for win32 in #setRootForFile:
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   350
        whileTrue:[
efafa57e0313 kludge for win32 in #setRootForFile:
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   351
            root := parent.
efafa57e0313 kludge for win32 in #setRootForFile:
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   352
            parent := root directory.
efafa57e0313 kludge for win32 in #setRootForFile:
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   353
        ].
efafa57e0313 kludge for win32 in #setRootForFile:
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   354
    ].
efafa57e0313 kludge for win32 in #setRootForFile:
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   355
998
ad33f2625598 care for volume changes in directory field.
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
   356
    self rootOfDirectory
1000
efafa57e0313 kludge for win32 in #setRootForFile:
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   357
        value:root pathName
998
ad33f2625598 care for volume changes in directory field.
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
   358
ad33f2625598 care for volume changes in directory field.
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
   359
    "Created: / 23.9.1998 / 16:36:28 / cg"
1000
efafa57e0313 kludge for win32 in #setRootForFile:
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   360
    "Modified: / 24.9.1998 / 15:31:30 / cg"
998
ad33f2625598 care for volume changes in directory field.
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
   361
!
ad33f2625598 care for volume changes in directory field.
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
   362
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   363
valueOfFileName
35982cf1482f initial checkin
tz
parents:
diff changeset
   364
35982cf1482f initial checkin
tz
parents:
diff changeset
   365
    |holder|
35982cf1482f initial checkin
tz
parents:
diff changeset
   366
    (holder := builder bindingAt:#valueOfFileName) isNil ifTrue:[
35982cf1482f initial checkin
tz
parents:
diff changeset
   367
        builder aspectAt:#valueOfFileName put:(holder :=  ValueHolder new).
35982cf1482f initial checkin
tz
parents:
diff changeset
   368
    ].
35982cf1482f initial checkin
tz
parents:
diff changeset
   369
    ^ holder
35982cf1482f initial checkin
tz
parents:
diff changeset
   370
! !
35982cf1482f initial checkin
tz
parents:
diff changeset
   371
35982cf1482f initial checkin
tz
parents:
diff changeset
   372
!FileSelectionBrowser methodsFor:'callbacks'!
35982cf1482f initial checkin
tz
parents:
diff changeset
   373
35982cf1482f initial checkin
tz
parents:
diff changeset
   374
fileDoubleClicked: aFileName
35982cf1482f initial checkin
tz
parents:
diff changeset
   375
35982cf1482f initial checkin
tz
parents:
diff changeset
   376
    self valueOfFileName value: aFileName.
35982cf1482f initial checkin
tz
parents:
diff changeset
   377
    accept value: true.
35982cf1482f initial checkin
tz
parents:
diff changeset
   378
    self close
35982cf1482f initial checkin
tz
parents:
diff changeset
   379
!
35982cf1482f initial checkin
tz
parents:
diff changeset
   380
35982cf1482f initial checkin
tz
parents:
diff changeset
   381
readDirectory
35982cf1482f initial checkin
tz
parents:
diff changeset
   382
592
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   383
    self directoryTreeView selection notNil 
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   384
    ifTrue: 
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   385
    [
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   386
        directoryView directory: self selectionOfDirectory value; readDirectory.  
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   387
        self class lastSelection notNil ifTrue: [self class lastSelection: self selectionOfDirectory value]
592
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   388
    ]
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   389
! !
35982cf1482f initial checkin
tz
parents:
diff changeset
   390
35982cf1482f initial checkin
tz
parents:
diff changeset
   391
!FileSelectionBrowser methodsFor:'startup / release'!
35982cf1482f initial checkin
tz
parents:
diff changeset
   392
35982cf1482f initial checkin
tz
parents:
diff changeset
   393
closeCancel
35982cf1482f initial checkin
tz
parents:
diff changeset
   394
35982cf1482f initial checkin
tz
parents:
diff changeset
   395
    directoryView release.
35982cf1482f initial checkin
tz
parents:
diff changeset
   396
    super closeCancel
35982cf1482f initial checkin
tz
parents:
diff changeset
   397
!
35982cf1482f initial checkin
tz
parents:
diff changeset
   398
35982cf1482f initial checkin
tz
parents:
diff changeset
   399
closeRequest
35982cf1482f initial checkin
tz
parents:
diff changeset
   400
35982cf1482f initial checkin
tz
parents:
diff changeset
   401
    directoryView release.
35982cf1482f initial checkin
tz
parents:
diff changeset
   402
    super closeRequest
35982cf1482f initial checkin
tz
parents:
diff changeset
   403
35982cf1482f initial checkin
tz
parents:
diff changeset
   404
!
35982cf1482f initial checkin
tz
parents:
diff changeset
   405
35982cf1482f initial checkin
tz
parents:
diff changeset
   406
open
35982cf1482f initial checkin
tz
parents:
diff changeset
   407
35982cf1482f initial checkin
tz
parents:
diff changeset
   408
    super open.
515
1b64e990e495 Fix copyright.
Stefan Vogel <sv@exept.de>
parents: 502
diff changeset
   409
    accept value ifTrue:[
1b64e990e495 Fix copyright.
Stefan Vogel <sv@exept.de>
parents: 502
diff changeset
   410
        ^ (self selectionOfDirectory value ? '') asFilename 
1b64e990e495 Fix copyright.
Stefan Vogel <sv@exept.de>
parents: 502
diff changeset
   411
                constructString:(self valueOfFileName value ? '')
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   412
    ].
515
1b64e990e495 Fix copyright.
Stefan Vogel <sv@exept.de>
parents: 502
diff changeset
   413
    ^ nil
957
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
   414
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
   415
    "Modified: / 17.8.1998 / 10:15:55 / cg"
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   416
!
35982cf1482f initial checkin
tz
parents:
diff changeset
   417
35982cf1482f initial checkin
tz
parents:
diff changeset
   418
postBuildWith:aBuilder
35982cf1482f initial checkin
tz
parents:
diff changeset
   419
35982cf1482f initial checkin
tz
parents:
diff changeset
   420
    directoryView listOfFileFilters: listOfFileFilters ? #('*').
462
90b8b353cd2f *** empty log message ***
tz
parents: 452
diff changeset
   421
    directoryView fileSelectAction: [:aFileName |self valueOfFileName value: aFileName asFilename baseName].
90b8b353cd2f *** empty log message ***
tz
parents: 452
diff changeset
   422
    directoryView fileDoubleClickAction: [:aFileName |self fileDoubleClicked: aFileName asFilename baseName].
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   423
    directoryView fileFilterSelectAction: [:fileFilter|
992
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   424
"/        CG: obscure code - isn't the code below the same as ?
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   425
"/        self valueOfFileName value:((self valueOfFileName value ? 'unknown') 
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   426
"/                                    asFilename
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   427
"/                                        withSuffix:(fileFilter asFilename suffix))
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   428
        self valueOfFileName value: (
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   429
            ((self valueOfFileName value ? 'unknown') readStream upTo: $.), '.',
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   430
            (fileFilter copy reverse readStream upTo: $.) reverse)
4d408220a60b fixed file filters.
Claus Gittinger <cg@exept.de>
parents: 969
diff changeset
   431
    ]. 
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   432
    self directoryTreeView selectPathname: directory ? self class lastSelection ? Filename currentDirectory asAbsoluteFilename name.
592
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   433
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   434
    self directoryInputField entryCompletionBlock: 
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   435
    [:f|
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   436
       |completedDirectory|
998
ad33f2625598 care for volume changes in directory field.
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
   437
592
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   438
       (completedDirectory := Filename 
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   439
            filenameCompletionFor: self directoryInputField contents
969
c6530cd784bd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 957
diff changeset
   440
            directory:(directory asFilename)
592
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   441
            directoriesOnly:true 
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   442
            filesOnly:false 
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   443
            ifMultiple:
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   444
            [:dir | 
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   445
                self directoryTreeView selection notNil ifTrue: [
622
e5bc12d7af16 using a public method instead a private one
tz
parents: 619
diff changeset
   446
                    self directoryTreeView selectedNodeExpand: true]
592
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   447
            ]) asFilename exists
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   448
        ifTrue:
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   449
        [
998
ad33f2625598 care for volume changes in directory field.
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
   450
            "/ volume changed ... (win32 or VMS)
ad33f2625598 care for volume changes in directory field.
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
   451
            completedDirectory asFilename volume ~= directory asFilename volume ifTrue:[
ad33f2625598 care for volume changes in directory field.
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
   452
                self setRootForFile:completedDirectory asFilename.
ad33f2625598 care for volume changes in directory field.
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
   453
            ].
ad33f2625598 care for volume changes in directory field.
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
   454
592
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   455
            self directoryInputField contents: completedDirectory.
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   456
            self directoryTreeView selectPathname: completedDirectory.
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   457
            self readDirectory
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   458
        ]
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   459
        ifFalse: [self directoryInputField flash]
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   460
    ].
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   461
626
402a50b931d5 select row of file after opening
tz
parents: 622
diff changeset
   462
    directoryView selectionOfFile value: 
402a50b931d5 select row of file after opening
tz
parents: 622
diff changeset
   463
        (directoryView listOfFiles detect: [:row| row baseName = self valueOfFileName value] ifNone: nil).
402a50b931d5 select row of file after opening
tz
parents: 622
diff changeset
   464
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   465
    ^super postBuildWith:aBuilder
969
c6530cd784bd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 957
diff changeset
   466
998
ad33f2625598 care for volume changes in directory field.
Claus Gittinger <cg@exept.de>
parents: 992
diff changeset
   467
    "Modified: / 23.9.1998 / 16:40:38 / cg"
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   468
! !
35982cf1482f initial checkin
tz
parents:
diff changeset
   469
35982cf1482f initial checkin
tz
parents:
diff changeset
   470
!FileSelectionBrowser class methodsFor:'documentation'!
35982cf1482f initial checkin
tz
parents:
diff changeset
   471
35982cf1482f initial checkin
tz
parents:
diff changeset
   472
version
35982cf1482f initial checkin
tz
parents:
diff changeset
   473
    ^ '$Header$'
35982cf1482f initial checkin
tz
parents:
diff changeset
   474
! !