FileSelectionBrowser.st
author Claus Gittinger <cg@exept.de>
Fri, 21 Aug 1998 20:58:27 +0200
changeset 963 62cdb7923a3b
parent 957 c09018dc6954
child 969 c6530cd784bd
permissions -rw-r--r--
care for setup, before view components are built
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
923
32fafd49c100 load and saveImageFileNameFilters must return an orderedCollection
Claus Gittinger <cg@exept.de>
parents: 871
diff changeset
   133
    ^self saveImageFileNameFilters addAll: #('*.jpeg' '*.jpg' '*'); yourself
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   134
923
32fafd49c100 load and saveImageFileNameFilters must return an orderedCollection
Claus Gittinger <cg@exept.de>
parents: 871
diff changeset
   135
    "Modified: / 29.7.1998 / 00:56:29 / cg"
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   136
!
35982cf1482f initial checkin
tz
parents:
diff changeset
   137
35982cf1482f initial checkin
tz
parents:
diff changeset
   138
projectFileNameFilters
35982cf1482f initial checkin
tz
parents:
diff changeset
   139
    ^Array withAll: #('*.st' '*.*o'  '*.s' '*.c' 'Make*' '*.project')
35982cf1482f initial checkin
tz
parents:
diff changeset
   140
35982cf1482f initial checkin
tz
parents:
diff changeset
   141
!
35982cf1482f initial checkin
tz
parents:
diff changeset
   142
35982cf1482f initial checkin
tz
parents:
diff changeset
   143
saveImageFileNameFilters
923
32fafd49c100 load and saveImageFileNameFilters must return an orderedCollection
Claus Gittinger <cg@exept.de>
parents: 871
diff changeset
   144
    ^ OrderedCollection withAll: #('*.xpm' '*.xbm' '*.gif' '*.tif' '*.tiff' '*.bmp')
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   145
923
32fafd49c100 load and saveImageFileNameFilters must return an orderedCollection
Claus Gittinger <cg@exept.de>
parents: 871
diff changeset
   146
    "Modified: / 29.7.1998 / 00:55:14 / cg"
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   147
! !
35982cf1482f initial checkin
tz
parents:
diff changeset
   148
35982cf1482f initial checkin
tz
parents:
diff changeset
   149
!FileSelectionBrowser class methodsFor:'interface specs'!
35982cf1482f initial checkin
tz
parents:
diff changeset
   150
35982cf1482f initial checkin
tz
parents:
diff changeset
   151
windowSpec
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   152
    "This resource specification was automatically generated
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   153
     by the UIPainter of ST/X."
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   154
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   155
    "Do not manually edit this!! If it is corrupted,
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   156
     the UIPainter may not be able to read the specification."
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   157
35982cf1482f initial checkin
tz
parents:
diff changeset
   158
    "
35982cf1482f initial checkin
tz
parents:
diff changeset
   159
     UIPainter new openOnClass:FileSelectionBrowser andSelector:#windowSpec
35982cf1482f initial checkin
tz
parents:
diff changeset
   160
     FileSelectionBrowser new openInterface:#windowSpec
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   161
     FileSelectionBrowser open
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   162
    "
35982cf1482f initial checkin
tz
parents:
diff changeset
   163
35982cf1482f initial checkin
tz
parents:
diff changeset
   164
    <resource: #canvas>
35982cf1482f initial checkin
tz
parents:
diff changeset
   165
35982cf1482f initial checkin
tz
parents:
diff changeset
   166
    ^
35982cf1482f initial checkin
tz
parents:
diff changeset
   167
     
35982cf1482f initial checkin
tz
parents:
diff changeset
   168
       #(#FullSpec
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   169
          #window: 
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   170
           #(#WindowSpec
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   171
              #name: 'File Selection Browser'
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   172
              #layout: #(#LayoutFrame 379 0 259 0 978 0 608 0)
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   173
              #label: 'File Selection Browser'
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   174
              #min: #(#Point 10 10)
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   175
              #max: #(#Point 1152 900)
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   176
              #bounds: #(#Rectangle 379 259 979 609)
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   177
              #usePreferredExtent: false
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   178
          )
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   179
          #component: 
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   180
           #(#SpecCollection
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   181
              #collection: 
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   182
               #(
35982cf1482f initial checkin
tz
parents:
diff changeset
   183
                 #(#VariableHorizontalPanelSpec
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   184
                    #name: 'panel'
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   185
                    #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 -40 1.0)
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   186
                    #component: 
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   187
                     #(#SpecCollection
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   188
                        #collection: 
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   189
                         #(
35982cf1482f initial checkin
tz
parents:
diff changeset
   190
                           #(#ViewSpec
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   191
                              #name: 'view1'
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   192
                              #component: 
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   193
                               #(#SpecCollection
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   194
                                  #collection: 
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   195
                                   #(
35982cf1482f initial checkin
tz
parents:
diff changeset
   196
                                     #(#FileSelectionTreeSpec
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   197
                                        #name: 'directoryTreeView'
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   198
                                        #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 -25 1.0)
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   199
                                        #model: #selectionOfDirectory
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   200
                                        #hasHorizontalScrollBar: true
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   201
                                        #hasVerticalScrollBar: true
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   202
                                        #miniScrollerHorizontal: true
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   203
                                        #showDirectoryIndicatorForRoot: false
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   204
                                        #showDirectoryIndicator: true
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   205
                                        #valueChangeSelector: #readDirectory
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   206
                                        #hierarchicalList: #rootOfDirectory
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   207
                                        #itemClass: 'Directory'
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   208
                                    )
592
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   209
                                     #(#InputFieldSpec
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   210
                                        #name: 'directoryInputField'
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   211
                                        #layout: #(#LayoutFrame 2 0.0 -22 1 0 1.0 0 1)
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   212
                                        #model: #selectionOfDirectory
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   213
                                        #immediateAccept: false
592
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   214
                                    )
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   215
                                  )
35982cf1482f initial checkin
tz
parents:
diff changeset
   216
                              )
35982cf1482f initial checkin
tz
parents:
diff changeset
   217
                          )
35982cf1482f initial checkin
tz
parents:
diff changeset
   218
                           #(#ViewSpec
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   219
                              #name: 'view2'
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   220
                              #component: 
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   221
                               #(#SpecCollection
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   222
                                  #collection: 
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   223
                                   #(
35982cf1482f initial checkin
tz
parents:
diff changeset
   224
                                     #(#InputFieldSpec
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   225
                                        #name: 'EditField'
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   226
                                        #layout: #(#LayoutFrame 1 0.0 -22 1 -2 1.0 0 1)
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   227
                                        #model: #valueOfFileName
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   228
                                        #acceptOnReturn: false
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   229
                                        #acceptOnTab: false
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   230
                                    )
35982cf1482f initial checkin
tz
parents:
diff changeset
   231
                                     #(#SubCanvasSpec
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   232
                                        #name: 'subCanvas1'
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   233
                                        #layout: #(#LayoutFrame 1 0.0 0 0.0 0 1.0 -25 1.0)
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   234
                                        #clientHolder: #directoryView
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   235
                                    )
35982cf1482f initial checkin
tz
parents:
diff changeset
   236
                                  )
35982cf1482f initial checkin
tz
parents:
diff changeset
   237
                              )
35982cf1482f initial checkin
tz
parents:
diff changeset
   238
                          )
35982cf1482f initial checkin
tz
parents:
diff changeset
   239
                        )
35982cf1482f initial checkin
tz
parents:
diff changeset
   240
                    )
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   241
                    #handles: #(#Any 0.5 1.0)
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   242
                )
426
b8110a424326 commit buttons replaced by subSpec in ToolApplicationModel
tz
parents: 404
diff changeset
   243
                 #(#UISubSpecification
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   244
                    #name: 'SubSpecification'
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   245
                    #layout: #(#LayoutFrame 2 0.0 -32 1 0 1.0 -8 1.0)
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   246
                    #majorKey: #ToolApplicationModel
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   247
                    #minorKey: #windowSpecForCommitWithoutChannels
404
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
! !
35982cf1482f initial checkin
tz
parents:
diff changeset
   253
35982cf1482f initial checkin
tz
parents:
diff changeset
   254
!FileSelectionBrowser methodsFor:'accessing'!
35982cf1482f initial checkin
tz
parents:
diff changeset
   255
35982cf1482f initial checkin
tz
parents:
diff changeset
   256
directory: aDirectory
35982cf1482f initial checkin
tz
parents:
diff changeset
   257
957
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
   258
    directory := (aDirectory ? Filename currentDirectory) asFilename asAbsoluteFilename pathName
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   259
957
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
   260
    "Modified: / 17.8.1998 / 10:15:53 / cg"
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   261
!
35982cf1482f initial checkin
tz
parents:
diff changeset
   262
35982cf1482f initial checkin
tz
parents:
diff changeset
   263
directoryView
35982cf1482f initial checkin
tz
parents:
diff changeset
   264
35982cf1482f initial checkin
tz
parents:
diff changeset
   265
    ^directoryView ? (directoryView := DirectoryView new)
35982cf1482f initial checkin
tz
parents:
diff changeset
   266
!
35982cf1482f initial checkin
tz
parents:
diff changeset
   267
35982cf1482f initial checkin
tz
parents:
diff changeset
   268
fileName: aFileName
35982cf1482f initial checkin
tz
parents:
diff changeset
   269
35982cf1482f initial checkin
tz
parents:
diff changeset
   270
    self valueOfFileName value: (aFileName ? '') asFilename baseName.
957
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
   271
    directory := directory ? ((aFileName ? '') asFilename asAbsoluteFilename directoryName).
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
   272
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
   273
    "Modified: / 17.8.1998 / 10:15:54 / cg"
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   274
!
35982cf1482f initial checkin
tz
parents:
diff changeset
   275
35982cf1482f initial checkin
tz
parents:
diff changeset
   276
listOfFileFilters: anArray
35982cf1482f initial checkin
tz
parents:
diff changeset
   277
35982cf1482f initial checkin
tz
parents:
diff changeset
   278
    listOfFileFilters := anArray
35982cf1482f initial checkin
tz
parents:
diff changeset
   279
! !
35982cf1482f initial checkin
tz
parents:
diff changeset
   280
35982cf1482f initial checkin
tz
parents:
diff changeset
   281
!FileSelectionBrowser methodsFor:'accessing - views'!
35982cf1482f initial checkin
tz
parents:
diff changeset
   282
592
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   283
directoryInputField
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   284
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   285
    ^builder componentAt: #directoryInputField
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   286
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   287
!
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   288
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   289
directoryTreeView
35982cf1482f initial checkin
tz
parents:
diff changeset
   290
35982cf1482f initial checkin
tz
parents:
diff changeset
   291
    ^builder componentAt: #directoryTreeView
35982cf1482f initial checkin
tz
parents:
diff changeset
   292
35982cf1482f initial checkin
tz
parents:
diff changeset
   293
! !
35982cf1482f initial checkin
tz
parents:
diff changeset
   294
35982cf1482f initial checkin
tz
parents:
diff changeset
   295
!FileSelectionBrowser methodsFor:'aspects'!
35982cf1482f initial checkin
tz
parents:
diff changeset
   296
35982cf1482f initial checkin
tz
parents:
diff changeset
   297
rootOfDirectory
35982cf1482f initial checkin
tz
parents:
diff changeset
   298
35982cf1482f initial checkin
tz
parents:
diff changeset
   299
    |holder|
35982cf1482f initial checkin
tz
parents:
diff changeset
   300
    (holder := builder bindingAt:#rootOfDirectory) isNil ifTrue:[
35982cf1482f initial checkin
tz
parents:
diff changeset
   301
        builder aspectAt:#rootOfDirectory put: (holder :=  Filename rootDirectory name asValue).
35982cf1482f initial checkin
tz
parents:
diff changeset
   302
    ].
35982cf1482f initial checkin
tz
parents:
diff changeset
   303
    ^ holder
35982cf1482f initial checkin
tz
parents:
diff changeset
   304
35982cf1482f initial checkin
tz
parents:
diff changeset
   305
!
35982cf1482f initial checkin
tz
parents:
diff changeset
   306
35982cf1482f initial checkin
tz
parents:
diff changeset
   307
selectionOfDirectory
35982cf1482f initial checkin
tz
parents:
diff changeset
   308
35982cf1482f initial checkin
tz
parents:
diff changeset
   309
    |holder|
35982cf1482f initial checkin
tz
parents:
diff changeset
   310
    (holder := builder bindingAt:#selectionOfDirectory) isNil ifTrue:[
35982cf1482f initial checkin
tz
parents:
diff changeset
   311
        builder aspectAt:#selectionOfDirectory put: (holder := ValueHolder new)
35982cf1482f initial checkin
tz
parents:
diff changeset
   312
    ].
35982cf1482f initial checkin
tz
parents:
diff changeset
   313
    ^ holder
35982cf1482f initial checkin
tz
parents:
diff changeset
   314
35982cf1482f initial checkin
tz
parents:
diff changeset
   315
!
35982cf1482f initial checkin
tz
parents:
diff changeset
   316
35982cf1482f initial checkin
tz
parents:
diff changeset
   317
valueOfFileName
35982cf1482f initial checkin
tz
parents:
diff changeset
   318
35982cf1482f initial checkin
tz
parents:
diff changeset
   319
    |holder|
35982cf1482f initial checkin
tz
parents:
diff changeset
   320
    (holder := builder bindingAt:#valueOfFileName) isNil ifTrue:[
35982cf1482f initial checkin
tz
parents:
diff changeset
   321
        builder aspectAt:#valueOfFileName put:(holder :=  ValueHolder new).
35982cf1482f initial checkin
tz
parents:
diff changeset
   322
    ].
35982cf1482f initial checkin
tz
parents:
diff changeset
   323
    ^ holder
35982cf1482f initial checkin
tz
parents:
diff changeset
   324
! !
35982cf1482f initial checkin
tz
parents:
diff changeset
   325
35982cf1482f initial checkin
tz
parents:
diff changeset
   326
!FileSelectionBrowser methodsFor:'callbacks'!
35982cf1482f initial checkin
tz
parents:
diff changeset
   327
35982cf1482f initial checkin
tz
parents:
diff changeset
   328
fileDoubleClicked: aFileName
35982cf1482f initial checkin
tz
parents:
diff changeset
   329
35982cf1482f initial checkin
tz
parents:
diff changeset
   330
    self valueOfFileName value: aFileName.
35982cf1482f initial checkin
tz
parents:
diff changeset
   331
    accept value: true.
35982cf1482f initial checkin
tz
parents:
diff changeset
   332
    self close
35982cf1482f initial checkin
tz
parents:
diff changeset
   333
!
35982cf1482f initial checkin
tz
parents:
diff changeset
   334
35982cf1482f initial checkin
tz
parents:
diff changeset
   335
readDirectory
35982cf1482f initial checkin
tz
parents:
diff changeset
   336
592
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   337
    self directoryTreeView selection notNil 
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   338
    ifTrue: 
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   339
    [
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   340
        directoryView directory: self selectionOfDirectory value; readDirectory.  
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   341
        self class lastSelection notNil ifTrue: [self class lastSelection: self selectionOfDirectory value]
592
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   342
    ]
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   343
! !
35982cf1482f initial checkin
tz
parents:
diff changeset
   344
35982cf1482f initial checkin
tz
parents:
diff changeset
   345
!FileSelectionBrowser methodsFor:'startup / release'!
35982cf1482f initial checkin
tz
parents:
diff changeset
   346
35982cf1482f initial checkin
tz
parents:
diff changeset
   347
closeCancel
35982cf1482f initial checkin
tz
parents:
diff changeset
   348
35982cf1482f initial checkin
tz
parents:
diff changeset
   349
    directoryView release.
35982cf1482f initial checkin
tz
parents:
diff changeset
   350
    super closeCancel
35982cf1482f initial checkin
tz
parents:
diff changeset
   351
!
35982cf1482f initial checkin
tz
parents:
diff changeset
   352
35982cf1482f initial checkin
tz
parents:
diff changeset
   353
closeRequest
35982cf1482f initial checkin
tz
parents:
diff changeset
   354
35982cf1482f initial checkin
tz
parents:
diff changeset
   355
    directoryView release.
35982cf1482f initial checkin
tz
parents:
diff changeset
   356
    super closeRequest
35982cf1482f initial checkin
tz
parents:
diff changeset
   357
35982cf1482f initial checkin
tz
parents:
diff changeset
   358
!
35982cf1482f initial checkin
tz
parents:
diff changeset
   359
35982cf1482f initial checkin
tz
parents:
diff changeset
   360
open
35982cf1482f initial checkin
tz
parents:
diff changeset
   361
35982cf1482f initial checkin
tz
parents:
diff changeset
   362
    super open.
515
1b64e990e495 Fix copyright.
Stefan Vogel <sv@exept.de>
parents: 502
diff changeset
   363
    accept value ifTrue:[
1b64e990e495 Fix copyright.
Stefan Vogel <sv@exept.de>
parents: 502
diff changeset
   364
        ^ (self selectionOfDirectory value ? '') asFilename 
1b64e990e495 Fix copyright.
Stefan Vogel <sv@exept.de>
parents: 502
diff changeset
   365
                constructString:(self valueOfFileName value ? '')
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   366
    ].
515
1b64e990e495 Fix copyright.
Stefan Vogel <sv@exept.de>
parents: 502
diff changeset
   367
    ^ nil
957
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
   368
c09018dc6954 comments
Claus Gittinger <cg@exept.de>
parents: 923
diff changeset
   369
    "Modified: / 17.8.1998 / 10:15:55 / cg"
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   370
!
35982cf1482f initial checkin
tz
parents:
diff changeset
   371
35982cf1482f initial checkin
tz
parents:
diff changeset
   372
postBuildWith:aBuilder
35982cf1482f initial checkin
tz
parents:
diff changeset
   373
35982cf1482f initial checkin
tz
parents:
diff changeset
   374
    directoryView listOfFileFilters: listOfFileFilters ? #('*').
462
90b8b353cd2f *** empty log message ***
tz
parents: 452
diff changeset
   375
    directoryView fileSelectAction: [:aFileName |self valueOfFileName value: aFileName asFilename baseName].
90b8b353cd2f *** empty log message ***
tz
parents: 452
diff changeset
   376
    directoryView fileDoubleClickAction: [:aFileName |self fileDoubleClicked: aFileName asFilename baseName].
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   377
    directoryView fileFilterSelectAction: [:fileFilter|
35982cf1482f initial checkin
tz
parents:
diff changeset
   378
    self valueOfFileName value: (
35982cf1482f initial checkin
tz
parents:
diff changeset
   379
        ((self valueOfFileName value ? 'unknown') readStream upTo: $.), '.',
594
75baf3968708 set real directory path
tz
parents: 592
diff changeset
   380
        (fileFilter copy reverse readStream upTo: $.) reverse)]. 
745
d3995881fa13 some changes for instancing
tz
parents: 626
diff changeset
   381
    self directoryTreeView selectPathname: directory ? self class lastSelection ? Filename currentDirectory asAbsoluteFilename name.
592
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   382
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   383
    self directoryInputField entryCompletionBlock: 
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   384
    [:f|
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   385
       |completedDirectory|
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   386
       (completedDirectory := Filename 
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   387
            filenameCompletionFor: self directoryInputField contents
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   388
            directory:directory 
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   389
            directoriesOnly:true 
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   390
            filesOnly:false 
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   391
            ifMultiple:
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   392
            [:dir | 
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   393
                self directoryTreeView selection notNil ifTrue: [
622
e5bc12d7af16 using a public method instead a private one
tz
parents: 619
diff changeset
   394
                    self directoryTreeView selectedNodeExpand: true]
592
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   395
            ]) asFilename exists
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   396
        ifTrue:
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   397
        [
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   398
            self directoryInputField contents: completedDirectory.
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   399
            self directoryTreeView selectPathname: completedDirectory.
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   400
            self readDirectory
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   401
        ]
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   402
        ifFalse: [self directoryInputField flash]
0383cd70fe79 dir input field added
tz
parents: 589
diff changeset
   403
    ].
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   404
626
402a50b931d5 select row of file after opening
tz
parents: 622
diff changeset
   405
    directoryView selectionOfFile value: 
402a50b931d5 select row of file after opening
tz
parents: 622
diff changeset
   406
        (directoryView listOfFiles detect: [:row| row baseName = self valueOfFileName value] ifNone: nil).
402a50b931d5 select row of file after opening
tz
parents: 622
diff changeset
   407
404
35982cf1482f initial checkin
tz
parents:
diff changeset
   408
    ^super postBuildWith:aBuilder
35982cf1482f initial checkin
tz
parents:
diff changeset
   409
! !
35982cf1482f initial checkin
tz
parents:
diff changeset
   410
35982cf1482f initial checkin
tz
parents:
diff changeset
   411
!FileSelectionBrowser class methodsFor:'documentation'!
35982cf1482f initial checkin
tz
parents:
diff changeset
   412
35982cf1482f initial checkin
tz
parents:
diff changeset
   413
version
35982cf1482f initial checkin
tz
parents:
diff changeset
   414
    ^ '$Header$'
35982cf1482f initial checkin
tz
parents:
diff changeset
   415
! !