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