FileSelectionBox.st
author Claus Gittinger <cg@exept.de>
Fri, 19 Mar 1999 22:13:33 +0100
changeset 1809 111f603c0a1c
parent 1674 75149fa16b10
child 2231 48ab82d819bc
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     1
"
5
claus
parents: 3
diff changeset
     2
 COPYRIGHT (c) 1990 by Claus Gittinger
59
450ce95a72a4 *** empty log message ***
claus
parents: 44
diff changeset
     3
	      All Rights Reserved
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     4
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    11
"
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    12
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    13
ListSelectionBox subclass:#FileSelectionBox
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
    14
	instanceVariableNames:'patternField selectingDirectory'
1320
47ff27735939 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1271
diff changeset
    15
	classVariableNames:'LastFileSelectionDirectory'
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
    16
	poolDictionaries:''
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
    17
	category:'Views-DialogBoxes'
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    18
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    19
849
3f3371dd8222 commentary
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
    20
!FileSelectionBox class methodsFor:'documentation'!
7
15a9291b9bd0 *** empty log message ***
claus
parents: 5
diff changeset
    21
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
    22
copyright
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
    23
"
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
    24
 COPYRIGHT (c) 1990 by Claus Gittinger
59
450ce95a72a4 *** empty log message ***
claus
parents: 44
diff changeset
    25
	      All Rights Reserved
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
    26
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
    27
 This software is furnished under a license and may be used
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
    28
 only in accordance with the terms of that license and with the
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
    29
 inclusion of the above copyright notice.   This software may not
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
    30
 be provided or otherwise made available to, or used by, any
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
    31
 other person.  No title to or ownership of the software is
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
    32
 hereby transferred.
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
    33
"
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
    34
!
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
    35
7
15a9291b9bd0 *** empty log message ***
claus
parents: 5
diff changeset
    36
documentation
15a9291b9bd0 *** empty log message ***
claus
parents: 5
diff changeset
    37
"
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
    38
    this class implements file selection boxes. Instances show a list of
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
    39
    files, and perform an action block with the selected pathname as
296
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
    40
    argument when ok is clicked. It is also possible, to open the box
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
    41
    without action and ask it afterward if it has been left with ok
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
    42
    (i.e. the ST-80 way, asking 'aBox accepted ifTrue:[...]')
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
    43
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
    44
    There is an optional PatternField, which shows itself when a pattern
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
    45
    is defined (i.e. if there is no pattern, it is hidden). 
296
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
    46
    If there is a pattern, only files matching the pattern are shown in 
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
    47
    the list. Directories are not affected by the patternField.
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
    48
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
    49
    In addition, there is an optional matchBlock (actually this is defined 
296
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
    50
    in the FileSelectionList). Only names for which this matchblock
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
    51
    returns true will be presented. The matchBlock affects both regular files
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
    52
    and names of directories. The argument passed to the matchBlock is the full
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
    53
    pathname.
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
    54
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
    55
    All of the actual work is done in the fileList; see the documentation
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
    56
    of FileSelectionList for more options 
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
    57
    (you can access a boxes fileList via 'aBox>>listView' and get access to all
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
    58
     of those fancy settings)
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
    59
    For example, by accessing the list, it is possible to hide all directories 
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
    60
    ('aBox listView ignoreDirectories:true'), to hide the parentDirectory alone 
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
    61
    ('aBox listView ignoreParentDirectory') and to turn off the marking 
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
    62
    of subdirectories ('aBox listView markSubdirectories:false').
585
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 548
diff changeset
    63
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 548
diff changeset
    64
    [author:]
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 548
diff changeset
    65
        Claus Gittinger
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 548
diff changeset
    66
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 548
diff changeset
    67
    [see also:]
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 548
diff changeset
    68
        DialogBox
648
fcf02d58882e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    69
        EnterBox2 FilenameEnterBox YesNoBox
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    70
        ListSelectionBox FileSaveBox
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    71
        FileSelectionList SelectionInListView
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
    72
"
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
    73
!
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
    74
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
    75
examples 
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
    76
"
296
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
    77
  simple standard queries
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
    78
238
a81e517187e4 examples
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    79
    very simple:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    80
                                                                        [exBegin]
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
    81
        |name|
238
a81e517187e4 examples
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    82
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    83
        name := FileSelectionBox requestFileName.
655
acad3ef3a46c showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 648
diff changeset
    84
        Transcript showCR:name
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    85
                                                                        [exEnd]
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
    86
238
a81e517187e4 examples
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    87
a81e517187e4 examples
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    88
    simple:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    89
                                                                        [exBegin]
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
    90
        |name|
238
a81e517187e4 examples
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    91
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    92
        name := FileSelectionBox requestFileName:'which file ?'.
655
acad3ef3a46c showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 648
diff changeset
    93
        Transcript showCR:name
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    94
                                                                        [exEnd]
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
    95
238
a81e517187e4 examples
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    96
a81e517187e4 examples
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    97
    with initial selection:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    98
                                                                        [exBegin]
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
    99
        |name|
238
a81e517187e4 examples
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
   100
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   101
        name := FileSelectionBox requestFileName:'which file ?' default:'Make.proto'.
655
acad3ef3a46c showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 648
diff changeset
   102
        Transcript showCR:name
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   103
                                                                        [exEnd]
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
   104
238
a81e517187e4 examples
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
   105
12
1c8e8c53e8cf *** empty log message ***
claus
parents: 7
diff changeset
   106
296
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
   107
  more detailed setup
238
a81e517187e4 examples
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
   108
a81e517187e4 examples
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
   109
    setting title:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   110
                                                                        [exBegin]
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   111
        |box|
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   112
        box := FileSelectionBox new.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   113
        box title:'Which file ?'.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   114
        box open.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   115
        box accepted ifTrue:[
1411
c11734cd83ee checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
   116
            Transcript showCR:'you selected: ' , box pathName
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   117
        ]
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   118
                                                                        [exEnd]
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
   119
238
a81e517187e4 examples
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
   120
    setting a matchpattern:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   121
                                                                        [exBegin]
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   122
        |box|
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   123
        box := FileSelectionBox new.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   124
        box title:'Which file ?'.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   125
        box pattern:'*.rc'.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   126
        box open
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   127
                                                                        [exEnd]
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   128
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   129
    setting multiple patterns:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   130
                                                                        [exBegin]
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   131
        |box|
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   132
        box := FileSelectionBox new.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   133
        box title:'Which file ?'.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   134
        box pattern:'*.rc;*.st'.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   135
        box open
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   136
                                                                        [exEnd]
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
   137
238
a81e517187e4 examples
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
   138
    setting a matchblock:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   139
                                                                        [exBegin]
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   140
        |box|
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   141
        box := FileSelectionBox new.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   142
        box title:'Which file ?'.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   143
        box directory:'/etc'.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   144
        box pattern:'*'.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   145
        box matchBlock:[:name | name asFilename baseName first between:$a and:$z].
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   146
        box open
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   147
                                                                        [exEnd]
44
f5e3a267fe4e pass fullname to matchblock
claus
parents: 41
diff changeset
   148
238
a81e517187e4 examples
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
   149
    both pattern and matchBlock:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   150
                                                                        [exBegin]
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   151
        |box|
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   152
        box := FileSelectionBox new.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   153
        box title:'Which directory ?'.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   154
        box selectingDirectory:true.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   155
        box pattern:'l*'.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   156
        box matchBlock:[:name | OperatingSystem isDirectory:name].
655
acad3ef3a46c showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 648
diff changeset
   157
        box action:[:fn | Transcript showCR:fn].
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   158
        box open
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   159
                                                                        [exEnd]
238
a81e517187e4 examples
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
   160
296
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
   161
    dont show the parent directory:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   162
                                                                        [exBegin]
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   163
        |box|
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   164
        box := FileSelectionBox new.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   165
        box title:'Which directory ?'.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   166
        box listView ignoreParentDirectory:true.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   167
        box open
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   168
                                                                        [exEnd]
296
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
   169
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
   170
    dont show any directory:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   171
                                                                        [exBegin]
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   172
        |box|
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   173
        box := FileSelectionBox new.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   174
        box title:'Which file ?'.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   175
        box listView ignoreDirectories:true.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   176
        box open
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   177
                                                                        [exEnd]
296
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
   178
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
   179
    dont show any directory or hidden file:
842
a27a1c6ddde0 Rename misspelled "interrest" to "interest".
Stefan Vogel <sv@exept.de>
parents: 800
diff changeset
   180
    (notice the basename extraction - we are not interested in the full pathName)
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   181
                                                                        [exBegin]
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   182
        |box|
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   183
        box := FileSelectionBox new.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   184
        box title:'Which file ?'.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   185
        box listView ignoreDirectories:true.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   186
        box matchBlock:[:name | (name asFilename baseName startsWith:'.') not].
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   187
        box open
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   188
                                                                        [exEnd]
296
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
   189
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
   190
    dont allow direct filename entry:
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
   191
    (i.e. avoid the user choosing files from other directories)
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   192
                                                                        [exBegin]
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   193
        |box|
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   194
        box := FileSelectionBox new.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   195
        box title:'Which one ?'.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   196
        box enterField beInvisible.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   197
        box open.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   198
        box accepted ifTrue:[
655
acad3ef3a46c showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 648
diff changeset
   199
            Transcript showCR:'path is ' , box pathName
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   200
        ].
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   201
                                                                        [exEnd]
296
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
   202
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
   203
    combined with above directory ignoring,
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
   204
    this limits selection of files from a single directory:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   205
                                                                        [exBegin]
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   206
        |box|
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   207
        box := FileSelectionBox new.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   208
        box title:'Which file ?'.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   209
        box enterField beInvisible.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   210
        box listView ignoreDirectories:true.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   211
        box open.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   212
        box accepted ifTrue:[
655
acad3ef3a46c showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 648
diff changeset
   213
            Transcript showCR:'path is ' , box pathName
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   214
        ].
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   215
                                                                        [exEnd]
296
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
   216
238
a81e517187e4 examples
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
   217
    finally, an action:
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   218
                                                                        [exBegin]
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   219
        |box|
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   220
        box := FileSelectionBox new.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   221
        box title:'Which directory ?'.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   222
        box pattern:'l*'.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   223
        box matchBlock:[:name | OperatingSystem isDirectory:name].
655
acad3ef3a46c showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 648
diff changeset
   224
        box action:[:name | Transcript showCR:name].
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   225
        box open
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   226
                                                                        [exEnd]
296
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
   227
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
   228
  concrete examples:
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
   229
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
   230
    only show files beginning with lowercase characters
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
   231
    and ending in '.c':
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   232
                                                                        [exBegin]
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   233
        |box|
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   234
        box := FileSelectionBox new.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   235
        box title:'Which directory ?'.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   236
        box matchBlock:[:name |
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   237
                            box pathName asFilename isDirectory
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   238
                            or:[name first isLowercase
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   239
                                and:[name endsWith:'.c']]
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   240
                       ].
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   241
        box open.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   242
        box accepted ifTrue:[
655
acad3ef3a46c showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 648
diff changeset
   243
            Transcript showCR:'full path:  ' , box pathName.
acad3ef3a46c showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 648
diff changeset
   244
            Transcript showCR:'files name: ' , box fileName.
1643
2710f3be2a77 fixed #fileName - return fileName only (not full path)
Claus Gittinger <cg@exept.de>
parents: 1639
diff changeset
   245
            Transcript showCR:'directory : ' , box directory pathName.
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   246
        ]
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   247
                                                                        [exEnd]
7
15a9291b9bd0 *** empty log message ***
claus
parents: 5
diff changeset
   248
"
15a9291b9bd0 *** empty log message ***
claus
parents: 5
diff changeset
   249
! !
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   250
1320
47ff27735939 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1271
diff changeset
   251
!FileSelectionBox class methodsFor:'accessing'!
47ff27735939 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1271
diff changeset
   252
47ff27735939 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1271
diff changeset
   253
lastFileSelectionDirectory
1571
fdaa3b9aa746 flush lastFileSelectionDirectory, if it does not exists
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   254
    "return the name of the directory used in the previous
fdaa3b9aa746 flush lastFileSelectionDirectory, if it does not exists
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   255
     fileSelection dialog. This will be used as default for the next dialog,
fdaa3b9aa746 flush lastFileSelectionDirectory, if it does not exists
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   256
     if no explicit path is specified (see requestFileName:* methods)"
fdaa3b9aa746 flush lastFileSelectionDirectory, if it does not exists
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   257
1574
471b68cfa6ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
   258
    |f|
471b68cfa6ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
   259
1571
fdaa3b9aa746 flush lastFileSelectionDirectory, if it does not exists
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   260
    LastFileSelectionDirectory notNil ifTrue:[
1574
471b68cfa6ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
   261
        ((f := LastFileSelectionDirectory asFilename) exists 
471b68cfa6ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
   262
        and:[f isDirectory]) ifFalse:[
471b68cfa6ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
   263
            LastFileSelectionDirectory := nil.
471b68cfa6ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
   264
        ]
1571
fdaa3b9aa746 flush lastFileSelectionDirectory, if it does not exists
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   265
    ].
1320
47ff27735939 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1271
diff changeset
   266
    ^ LastFileSelectionDirectory
47ff27735939 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1271
diff changeset
   267
1571
fdaa3b9aa746 flush lastFileSelectionDirectory, if it does not exists
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   268
    "Created: / 9.9.1997 / 10:03:17 / cg"
1574
471b68cfa6ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1571
diff changeset
   269
    "Modified: / 16.6.1998 / 15:11:20 / cg"
1320
47ff27735939 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1271
diff changeset
   270
!
47ff27735939 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1271
diff changeset
   271
47ff27735939 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1271
diff changeset
   272
lastFileSelectionDirectory:aDirectoryString
1571
fdaa3b9aa746 flush lastFileSelectionDirectory, if it does not exists
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   273
    "set the name of the directory used in the previous
fdaa3b9aa746 flush lastFileSelectionDirectory, if it does not exists
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   274
     fileSelection dialog. This will be used as default for the next dialog,
fdaa3b9aa746 flush lastFileSelectionDirectory, if it does not exists
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   275
     if no explicit path is specified (see requestFileName:* methods)"
fdaa3b9aa746 flush lastFileSelectionDirectory, if it does not exists
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   276
1320
47ff27735939 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1271
diff changeset
   277
    LastFileSelectionDirectory := aDirectoryString
47ff27735939 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1271
diff changeset
   278
1571
fdaa3b9aa746 flush lastFileSelectionDirectory, if it does not exists
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   279
    "Created: / 9.9.1997 / 10:03:42 / cg"
fdaa3b9aa746 flush lastFileSelectionDirectory, if it does not exists
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
   280
    "Modified: / 15.6.1998 / 14:05:21 / cg"
1320
47ff27735939 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1271
diff changeset
   281
! !
47ff27735939 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1271
diff changeset
   282
849
3f3371dd8222 commentary
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
   283
!FileSelectionBox class methodsFor:'defaults'!
12
1c8e8c53e8cf *** empty log message ***
claus
parents: 7
diff changeset
   284
1c8e8c53e8cf *** empty log message ***
claus
parents: 7
diff changeset
   285
listViewType
1c8e8c53e8cf *** empty log message ***
claus
parents: 7
diff changeset
   286
    "return the type of listView - using a FileSelectionList here"
1c8e8c53e8cf *** empty log message ***
claus
parents: 7
diff changeset
   287
1c8e8c53e8cf *** empty log message ***
claus
parents: 7
diff changeset
   288
    ^ FileSelectionList
1c8e8c53e8cf *** empty log message ***
claus
parents: 7
diff changeset
   289
! !
1c8e8c53e8cf *** empty log message ***
claus
parents: 7
diff changeset
   290
197
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   291
!FileSelectionBox methodsFor:'accessing'!
3
claus
parents: 0
diff changeset
   292
197
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   293
contents
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   294
    "return the current entered value (i.e. the enterFields string).
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   295
     redefined to return the full pathname."
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   296
1809
111f603c0a1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1674
diff changeset
   297
    |string|
3
claus
parents: 0
diff changeset
   298
197
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   299
    string := super contents.
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   300
    string isNil ifTrue:[
1670
8d24855a9f0b oops - handle absolute filenames correctly under vms and msdos
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   301
        ^ selectionList directory pathName
121
claus
parents: 120
diff changeset
   302
    ].
1670
8d24855a9f0b oops - handle absolute filenames correctly under vms and msdos
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   303
    (string asFilename isAbsolute) ifTrue:[
8d24855a9f0b oops - handle absolute filenames correctly under vms and msdos
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   304
        ^ string
77
565b052f5277 *** empty log message ***
claus
parents: 62
diff changeset
   305
    ].
197
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   306
    ^ (selectionList directory pathName asFilename construct:string) asString
1670
8d24855a9f0b oops - handle absolute filenames correctly under vms and msdos
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   307
8d24855a9f0b oops - handle absolute filenames correctly under vms and msdos
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   308
    "Modified: / 9.9.1998 / 21:23:16 / cg"
132
claus
parents: 130
diff changeset
   309
!
claus
parents: 130
diff changeset
   310
1672
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   311
directory
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   312
    "return the directory which is currently shown"
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   313
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   314
    ^ selectionList directory
296
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
   315
!
e1b9431b3aef more examples in the documentation category
Claus Gittinger <cg@exept.de>
parents: 240
diff changeset
   316
1672
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   317
directory:directoryName
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   318
    "change the directory shown in the list."
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   319
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   320
    selectionList directory:directoryName
132
claus
parents: 130
diff changeset
   321
!
claus
parents: 130
diff changeset
   322
1672
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   323
fileName
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   324
    "if some filename has been entered, return it (without the directory path)
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   325
     otherwise, return nil"
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   326
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   327
    |string|
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   328
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   329
    string := super contents.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   330
    string isNil ifTrue:[^ nil].
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   331
    ^ self pathName asFilename baseName
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   332
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   333
    "Modified: / 12.8.1998 / 09:54:01 / cg"
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   334
!
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   335
1672
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   336
matchBlock:aBlock
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   337
    "set the matchBlock (in the selectionList). Only files
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   338
     for which the block returns true are shown.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   339
     The matching is actually done in the fileSelectionList."
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   340
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   341
    selectionList matchBlock:aBlock 
197
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   342
!
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   343
1672
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   344
openOn:aPath
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   345
    "open the box showing files in aPath.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   346
     This is only a shortcut message - no new functionality."
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   347
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   348
    self directory:aPath.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   349
    self showAtPointer
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
   350
!
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
   351
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   352
pathName
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   353
    "same as contents - return the full pathname of the selected file,
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   354
     or the pathname of the directory if nothing has been entered"
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   355
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   356
    ^ self contents
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   357
!
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   358
1672
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   359
pattern:aPattern
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   360
    "set the pattern - this also enables the PatternField
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   361
     (if the pattern is non-nil) or hides it (if nil)."
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   362
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   363
    |focusSequence|
130
claus
parents: 121
diff changeset
   364
1672
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   365
    patternField initialText:aPattern.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   366
    selectionList pattern:aPattern.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   367
    aPattern isNil ifTrue:[
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   368
        patternField beInvisible.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   369
        self makeUntabable:patternField.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   370
        focusSequence := (Array 
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   371
                             with:enterField 
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   372
                             with:selectionList 
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   373
                             with:okButton 
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   374
                             with:abortButton)
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   375
    ] ifFalse:[
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   376
        patternField beVisible.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   377
        self makeTabable:patternField before:enterField.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   378
        focusSequence := (Array 
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   379
                             with:patternField 
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   380
                             with:enterField 
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   381
                             with:selectionList 
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   382
                             with:okButton 
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   383
                             with:abortButton)
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   384
    ].
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   385
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   386
    windowGroup notNil ifTrue:[
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   387
        windowGroup focusSequence:focusSequence
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   388
    ].
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   389
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   390
    "Modified: 18.10.1997 / 03:02:05 / cg"
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   391
!
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   392
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   393
selectingDirectory:aBoolean
849
3f3371dd8222 commentary
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
   394
    "setup the box for directory selection (hides regular files).
3f3371dd8222 commentary
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
   395
     Use this, to ask the user for a directories name"
3f3371dd8222 commentary
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
   396
548
c418699a90c0 moved all request methods (class protocol) to DialogBox
Claus Gittinger <cg@exept.de>
parents: 438
diff changeset
   397
    selectingDirectory := aBoolean.
c418699a90c0 moved all request methods (class protocol) to DialogBox
Claus Gittinger <cg@exept.de>
parents: 438
diff changeset
   398
    aBoolean ifTrue:[
c418699a90c0 moved all request methods (class protocol) to DialogBox
Claus Gittinger <cg@exept.de>
parents: 438
diff changeset
   399
        selectionList directoryChangeAction:[:entry | self directoryChanged].
c418699a90c0 moved all request methods (class protocol) to DialogBox
Claus Gittinger <cg@exept.de>
parents: 438
diff changeset
   400
        selectionList directorySelectAction:[:entry | self directorySelected].
c418699a90c0 moved all request methods (class protocol) to DialogBox
Claus Gittinger <cg@exept.de>
parents: 438
diff changeset
   401
        selectionList ignoreFiles:true.
c418699a90c0 moved all request methods (class protocol) to DialogBox
Claus Gittinger <cg@exept.de>
parents: 438
diff changeset
   402
    ]
c418699a90c0 moved all request methods (class protocol) to DialogBox
Claus Gittinger <cg@exept.de>
parents: 438
diff changeset
   403
849
3f3371dd8222 commentary
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
   404
    "Modified: 22.10.1996 / 13:24:50 / cg"
197
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   405
! !
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   406
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   407
!FileSelectionBox methodsFor:'change & update'!
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   408
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   409
update:something with:argument from:changedObject
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   410
    |commonName index s|
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   411
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   412
    something == #directory ifTrue:[
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   413
	"
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   414
	 sent by fileNameEnterField, if a filename
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   415
	 completion was not possible due to multiple
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   416
	 matches.
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   417
	"
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   418
	selectionList directory:argument.
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   419
	s := enterField contents.
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   420
	s notNil ifTrue:[
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   421
	    commonName := s asFilename baseName.
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   422
	    commonName size > 0 ifTrue:[
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   423
		index := selectionList list findFirst:[:entry | entry startsWith:commonName].
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   424
		index ~~ 0 ifTrue:[
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   425
		    selectionList makeLineVisible:index
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   426
		]
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   427
	    ]
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   428
	]
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   429
    ]
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   430
! !
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   431
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   432
!FileSelectionBox methodsFor:'initialization'!
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   433
1672
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   434
createEnterField
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   435
    "if the (optional) class FilenameEditField is present, use
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   436
     it, since it provides filename completion. Otherwise, we have
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   437
     to live with the dumb (default) field ...
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   438
    "
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   439
    FilenameEditField notNil ifTrue:[
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   440
        ^ FilenameEditField new.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   441
    ].
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   442
    ^ super createEnterField
548
c418699a90c0 moved all request methods (class protocol) to DialogBox
Claus Gittinger <cg@exept.de>
parents: 438
diff changeset
   443
1672
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   444
    "Modified: 18.4.1996 / 20:02:24 / cg"
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
   445
!
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   446
1672
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   447
initialize
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   448
    |corner|
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   449
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   450
    super initialize.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   451
    selectingDirectory := false.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   452
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   453
    label := resources string:'File dialog'.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   454
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   455
    labelField extent:(0.7 @ labelField height).
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   456
    labelField label:(resources string:'select a file:').
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   457
    labelField adjust:#left.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   458
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   459
    patternField := EditField in:self.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   460
    self is3D ifTrue:[
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   461
        corner := (1.0 @ (labelField origin y+patternField heightIncludingBorder)).
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   462
    ] ifFalse:[
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   463
        corner := [(width - ViewSpacing - (patternField borderWidth * 2)) @ (labelField origin y+patternField height"IncludingBorder")].
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   464
    ].
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   465
    patternField origin:(0.7 @ labelField origin y) corner:corner.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   466
    patternField rightInset:ViewSpacing.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   467
    patternField initialText:'*'.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   468
    patternField leaveAction:[:reason | self patternChanged]. 
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   469
    patternField crAction:[self patternChanged].
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   470
    patternField hiddenOnRealize:true. "delay showing, until a pattern is defined"
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   471
"/ no, since its invisible
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   472
"/    self makeTabable:patternField before:enterField.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   473
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   474
    enterField addDependent:self.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   475
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   476
    "
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   477
     FileSelectionBox open
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   478
     FileSelectionBox new show
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   479
    "
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   480
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   481
    "Modified: 18.10.1997 / 02:47:49 / cg"
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   482
!
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   483
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   484
postRealize
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   485
    "if some default is present in the enterField,
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   486
     scroll to make this one visible"
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   487
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   488
    |contents|
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   489
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   490
    super postRealize.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   491
    (contents := enterField contents) notNil ifTrue:[
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   492
        contents notEmpty ifTrue:[
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   493
            selectionList makeVisible:contents
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   494
        ]
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   495
    ]
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   496
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   497
    "Created: 24.7.1997 / 18:19:14 / cg"
197
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   498
! !
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   499
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   500
!FileSelectionBox methodsFor:'private'!
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   501
1672
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   502
updateList
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   503
    selectionList updateList
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   504
! !
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
   505
197
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   506
!FileSelectionBox methodsFor:'queries'!
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   507
1672
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   508
preferredExtent
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   509
    "return my preferred extent - thats the minimum size 
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   510
     to make everything visible"
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   511
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   512
    |wWanted hWanted mm|
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   513
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   514
    "/ If I have an explicit preferredExtent ..
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   515
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   516
    preferredExtent notNil ifTrue:[
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   517
        ^ preferredExtent
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   518
    ].
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   519
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   520
    mm := ViewSpacing.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   521
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   522
    wWanted := mm + 
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   523
               labelField preferredExtent x + 
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   524
               (mm * 2) + 
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   525
               patternField preferredExtent x + 
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   526
               mm.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   527
    (wWanted < width) ifTrue:[
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   528
        wWanted := width
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   529
    ].
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   530
    hWanted := mm + labelField height +
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   531
               mm + enterField height +
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   532
               mm + selectionList height +
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   533
               mm + buttonPanel preferredExtent y +
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   534
               mm.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   535
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   536
    (hWanted < height) ifTrue:[
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   537
        hWanted := height
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   538
    ].
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   539
    ^ (wWanted @ hWanted)
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   540
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   541
    "Modified: 19.7.1996 / 20:44:04 / cg"
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   542
! !
197
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   543
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   544
!FileSelectionBox methodsFor:'user actions'!
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   545
1672
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   546
directoryChanged
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   547
    selectingDirectory ifTrue:[
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   548
        selectionList changeDirectory.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   549
        enterField contents:(selectionList directory pathName).
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   550
        selectionList setSelection:nil.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   551
    ].
548
c418699a90c0 moved all request methods (class protocol) to DialogBox
Claus Gittinger <cg@exept.de>
parents: 438
diff changeset
   552
1672
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   553
    "Created: 18.4.1996 / 18:38:21 / cg"
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   554
    "Modified: 25.5.1996 / 12:27:05 / cg"
548
c418699a90c0 moved all request methods (class protocol) to DialogBox
Claus Gittinger <cg@exept.de>
parents: 438
diff changeset
   555
!
c418699a90c0 moved all request methods (class protocol) to DialogBox
Claus Gittinger <cg@exept.de>
parents: 438
diff changeset
   556
1672
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   557
directorySelected
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   558
    "a directory was selected - show the new path in the inputField,
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   559
     if we are in directory mode"
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   560
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   561
    selectingDirectory ifTrue:[
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   562
        |newDir|
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   563
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   564
        newDir := (selectionList directory)
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   565
                      construct:selectionList selectionValue.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   566
        enterField contents:newDir pathName.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   567
    ].
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   568
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   569
    "Created: / 18.4.1996 / 18:46:15 / cg"
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   570
    "Modified: / 7.8.1998 / 17:19:26 / cg"
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   571
!
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   572
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   573
doubleClick
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   574
    |entry|
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   575
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   576
    entry := selectionList selectionValue.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   577
    entry notNil ifTrue:[
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   578
        ((selectionList directory asFilename construct:entry) isDirectory) ifFalse:[
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   579
            selectingDirectory ifFalse:[
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   580
                enterField contents:entry.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   581
                self okPressed
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   582
            ]
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   583
        ]
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   584
    ].
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   585
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   586
    "Modified: 19.10.1997 / 00:17:37 / cg"
197
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   587
!
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   588
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   589
okPressed
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   590
    "called for both on ok-press and on return-key"
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   591
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   592
    |dir string fname|
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   593
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   594
    string := enterField contents.
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   595
    (string notNil and:[string notEmpty]) ifTrue:[
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   596
        string := string withoutSeparators.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   597
        string asFilename isAbsolute ifTrue:[
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   598
            fname := string asFilename
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   599
        ] ifFalse:[
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   600
            dir := selectionList directory pathName asFilename.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   601
            fname := dir construct:string
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   602
        ].
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   603
        fname isDirectory ifTrue:[
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   604
            selectingDirectory ifFalse:[
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   605
                selectionList directory:fname asString.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   606
                self updateList.
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   607
                ^ self
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   608
            ]    
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   609
        ]
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   610
    ] ifFalse:[
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   611
        selectingDirectory ifTrue:[
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   612
            enterField contents:(selectionList directory pathName).
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   613
        ].
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 21
diff changeset
   614
    ].
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   615
197
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   616
    super okPressed
351
24a527f86c7b allow multiple patterns sep'd by semi
ca
parents: 296
diff changeset
   617
1674
75149fa16b10 oops - leftover halt removed.
Claus Gittinger <cg@exept.de>
parents: 1672
diff changeset
   618
    "Modified: / 10.9.1998 / 22:19:11 / cg"
197
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   619
!
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   620
1672
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   621
patternChanged
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   622
    selectionList pattern:patternField contents. 
746
4442a4d4121f dont want return in patternField to be accept of box
Claus Gittinger <cg@exept.de>
parents: 740
diff changeset
   623
    self updateList
4442a4d4121f dont want return in patternField to be accept of box
Claus Gittinger <cg@exept.de>
parents: 740
diff changeset
   624
4442a4d4121f dont want return in patternField to be accept of box
Claus Gittinger <cg@exept.de>
parents: 740
diff changeset
   625
    "Created: 4.6.1996 / 20:30:23 / cg"
1672
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   626
!
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   627
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   628
selectionChanged
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   629
    |entry|
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   630
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   631
    entry := selectionList selectionValue.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   632
    (selectionList directory asFilename construct:entry) type == #directory ifFalse:[
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   633
        selectingDirectory ifTrue:[
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   634
            enterField contents:(selectionList directory pathName).
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   635
            selectionList setSelection:nil.
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   636
            ^ self
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   637
        ]
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   638
    ].
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   639
    enterField contents:entry
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   640
4ad88fcbc3ac oops - bad checkin
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
   641
    "Modified: 21.9.1997 / 12:07:55 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   642
! !
197
00927189c882 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   643
849
3f3371dd8222 commentary
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
   644
!FileSelectionBox class methodsFor:'documentation'!
240
75a3b67bd91d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 238
diff changeset
   645
75a3b67bd91d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 238
diff changeset
   646
version
1809
111f603c0a1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1674
diff changeset
   647
    ^ '$Header: /cvs/stx/stx/libwidg/FileSelectionBox.st,v 1.56 1999-03-19 21:12:13 cg Exp $'
240
75a3b67bd91d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 238
diff changeset
   648
! !