FilenameWidgetWithHistory.st
author Claus Gittinger <cg@exept.de>
Fri, 27 Feb 2015 16:31:27 +0100
changeset 4721 e3cb03ac761a
parent 4708 adabb83e93bf
child 4797 b145bd0e466d
permissions -rw-r--r--
class: FilenameWidgetWithHistory changed: #browseForFileOrDirectory
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4721
e3cb03ac761a class: FilenameWidgetWithHistory
Claus Gittinger <cg@exept.de>
parents: 4708
diff changeset
     1
"{ Encoding: utf8 }"
e3cb03ac761a class: FilenameWidgetWithHistory
Claus Gittinger <cg@exept.de>
parents: 4708
diff changeset
     2
3318
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
     3
"
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
     4
 COPYRIGHT (c) 2007 by eXept Software AG
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
     5
              All Rights Reserved
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
     6
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
     7
 This software is furnished under a license and may be used
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
     8
 only in accordance with the terms of that license and with the
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
    10
 be provided or otherwise made available to, or used by, any
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
    11
 other person.  No title to or ownership of the software is
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
    12
 hereby transferred.
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
    13
"
3251
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
"{ Package: 'stx:libwidg2' }"
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
4708
adabb83e93bf class: FilenameWidgetWithHistory
Claus Gittinger <cg@exept.de>
parents: 4330
diff changeset
    16
"{ NameSpace: Smalltalk }"
adabb83e93bf class: FilenameWidgetWithHistory
Claus Gittinger <cg@exept.de>
parents: 4330
diff changeset
    17
3251
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
SimpleView subclass:#FilenameWidgetWithHistory
3590
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
    19
	instanceVariableNames:'fileNameEntryField browseButton history directoriesOnly filesOnly
3959
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
    20
		dialogTitle initialDirectoryHolder baseDirectory'
3251
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
	classVariableNames:''
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
	poolDictionaries:''
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
	category:'Views-Interactors'
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
!
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
!FilenameWidgetWithHistory class methodsFor:'documentation'!
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
3318
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
    28
copyright
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
    29
"
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
    30
 COPYRIGHT (c) 2007 by eXept Software AG
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
    31
              All Rights Reserved
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
    32
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
    33
 This software is furnished under a license and may be used
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
    34
 only in accordance with the terms of that license and with the
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
    35
 inclusion of the above copyright notice.   This software may not
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
    36
 be provided or otherwise made available to, or used by, any
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
    37
 other person.  No title to or ownership of the software is
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
    38
 hereby transferred.
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
    39
"
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
    40
!
5a0aff0fd23a copyright
Claus Gittinger <cg@exept.de>
parents: 3251
diff changeset
    41
3471
f3cde37d9d53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3427
diff changeset
    42
documentation
f3cde37d9d53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3427
diff changeset
    43
"
f3cde37d9d53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3427
diff changeset
    44
    A Filename InputField with history-list and a browse-button, which opens a file dialog.
f3cde37d9d53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3427
diff changeset
    45
f3cde37d9d53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3427
diff changeset
    46
    [author:]
f3cde37d9d53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3427
diff changeset
    47
        Claus Gittinger
f3cde37d9d53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3427
diff changeset
    48
f3cde37d9d53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3427
diff changeset
    49
    [see also:]
f3cde37d9d53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3427
diff changeset
    50
        ComboBoxView
f3cde37d9d53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3427
diff changeset
    51
        FilenameEditField
f3cde37d9d53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3427
diff changeset
    52
        FilenameComboBoxView
f3cde37d9d53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3427
diff changeset
    53
"
f3cde37d9d53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3427
diff changeset
    54
!
f3cde37d9d53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3427
diff changeset
    55
3251
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
examples
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
"
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
                                                                        [exBegin]
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
     |top b|
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
     top := StandardSystemView new.
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
     top extent:(300 @ 200).
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
     b := FilenameWidgetWithHistory in:top.
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
     b origin:(0.0 @ 0.0) corner:(1.0 @ 0.0).
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
     b bottomInset:(b preferredExtent y negated).
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
     top open.
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
                                                                        [exEnd]
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
"
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
! !
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
!FilenameWidgetWithHistory methodsFor:'accessing'!
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
3950
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
    75
acceptOnExpand:aBoolean
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
    76
    fileNameEntryField acceptOnExpand:aBoolean
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
    77
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
    78
    "Created: / 20-10-2010 / 17:49:54 / cg"
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
    79
!
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
    80
3959
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
    81
baseDirectory
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
    82
    ^ baseDirectory
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
    83
!
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
    84
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
    85
baseDirectory:something
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
    86
    baseDirectory := something.
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
    87
!
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
    88
3950
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
    89
contents
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
    90
    ^ fileNameEntryField contents
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
    91
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
    92
    "Created: / 20-10-2010 / 17:51:07 / cg"
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
    93
!
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
    94
3590
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
    95
dialogTitle:something
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
    96
    "set the dialogs title"
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
    97
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
    98
    dialogTitle := something.
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
    99
!
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   100
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   101
directoriesOnly:aBoolean
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   102
    "if true, directories are selectable only.
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   103
     If both filesOnly and directoriesOnly are false, which is the default, 
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   104
     anything is selectable."
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   105
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   106
    directoriesOnly := aBoolean.
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   107
    directoriesOnly ifTrue:[
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   108
        filesOnly := false.
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   109
    ].
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   110
    fileNameEntryField notNil ifTrue:[
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   111
        fileNameEntryField directoriesOnly:aBoolean
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   112
    ].
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   113
!
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   114
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   115
filesOnly:aBoolean
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   116
    "if true, files are selectable only.
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   117
     If both filesOnly and directoriesOnly are false, which is the default, 
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   118
     anything is selectable."
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   119
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   120
    filesOnly := aBoolean.
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   121
    filesOnly ifTrue:[
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   122
        directoriesOnly := false.
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   123
    ].
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   124
    fileNameEntryField notNil ifTrue:[
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   125
        fileNameEntryField filesOnly:aBoolean
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   126
    ].
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   127
!
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   128
3251
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
historyList
3474
cde8a45f74f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
   130
    history isNil ifTrue:[
4708
adabb83e93bf class: FilenameWidgetWithHistory
Claus Gittinger <cg@exept.de>
parents: 4330
diff changeset
   131
        history := ValueHolder with:nil
3474
cde8a45f74f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
   132
    ].
cde8a45f74f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
   133
    ^ history
3251
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   134
!
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   135
3593
f11c5a41d4a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   136
historyList:aList
f11c5a41d4a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   137
    "set the history - useful when two or more such fields shall share a common history"
f11c5a41d4a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   138
f11c5a41d4a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   139
    history := aList
f11c5a41d4a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   140
!
f11c5a41d4a9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   141
3594
8bdad6d9c51a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3593
diff changeset
   142
initialDirectoryHolder
8bdad6d9c51a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3593
diff changeset
   143
    "can be used to force the file-dialog into some initial directory"
8bdad6d9c51a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3593
diff changeset
   144
8bdad6d9c51a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3593
diff changeset
   145
    ^ initialDirectoryHolder
8bdad6d9c51a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3593
diff changeset
   146
!
8bdad6d9c51a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3593
diff changeset
   147
3251
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   148
model
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   149
    ^ fileNameEntryField model
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   150
!
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   151
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   152
model:aFilenameHolder
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   153
    fileNameEntryField model:aFilenameHolder.
3950
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
   154
!
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
   155
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
   156
selectAllInitially
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
   157
    fileNameEntryField selectAllInitially
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
   158
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
   159
    "Created: / 20-10-2010 / 17:50:23 / cg"
3251
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   160
! !
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   161
3546
b3269a9dec19 +enableChannel
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
   162
!FilenameWidgetWithHistory methodsFor:'accessing-channels'!
b3269a9dec19 +enableChannel
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
   163
b3269a9dec19 +enableChannel
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
   164
enableChannel:aValueHolder
b3269a9dec19 +enableChannel
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
   165
    fileNameEntryField enableChannel:aValueHolder.
b3269a9dec19 +enableChannel
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
   166
    browseButton enableChannel:aValueHolder.
4084
5738fc3ced77 added: #modifiedChannel:
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   167
!
5738fc3ced77 added: #modifiedChannel:
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   168
5738fc3ced77 added: #modifiedChannel:
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   169
modifiedChannel:aValueHolder
5738fc3ced77 added: #modifiedChannel:
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   170
    fileNameEntryField modifiedChannel:aValueHolder.
5738fc3ced77 added: #modifiedChannel:
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   171
5738fc3ced77 added: #modifiedChannel:
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   172
    "Created: / 05-10-2011 / 14:59:48 / cg"
3546
b3269a9dec19 +enableChannel
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
   173
! !
b3269a9dec19 +enableChannel
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
   174
b3269a9dec19 +enableChannel
Claus Gittinger <cg@exept.de>
parents: 3474
diff changeset
   175
!FilenameWidgetWithHistory methodsFor:'accessing-editField attributes'!
3472
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   176
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   177
acceptIfUnchanged:aBoolean
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   178
    fileNameEntryField acceptIfUnchanged:aBoolean
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   179
!
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   180
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   181
acceptOnLeave:aBoolean
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   182
    fileNameEntryField acceptOnLeave:aBoolean
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   183
!
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   184
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   185
acceptOnLostFocus:aBoolean
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   186
    fileNameEntryField acceptOnLostFocus:aBoolean
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   187
!
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   188
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   189
acceptOnPointerLeave:aBoolean
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   190
    fileNameEntryField acceptOnPointerLeave:aBoolean
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   191
!
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   192
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   193
acceptOnReturn:aBoolean
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   194
    fileNameEntryField acceptOnReturn:aBoolean
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   195
!
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   196
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   197
acceptOnTab:aBoolean
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   198
    fileNameEntryField acceptOnTab:aBoolean
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   199
!
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   200
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   201
contents:aString
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   202
    fileNameEntryField contents:aString
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   203
!
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   204
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   205
immediateAccept:aBoolean
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   206
    fileNameEntryField immediateAccept:aBoolean
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   207
!
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   208
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   209
maxChars:aBoolean
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   210
    fileNameEntryField maxChars:aBoolean
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   211
!
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   212
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   213
readOnly:aBoolean
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   214
    fileNameEntryField readOnly:aBoolean
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   215
! !
20087c3d9dda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3471
diff changeset
   216
3251
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   217
!FilenameWidgetWithHistory methodsFor:'initialization'!
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   218
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   219
initialize
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   220
    super initialize.
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   221
3590
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   222
    directoriesOnly := filesOnly := false.
4708
adabb83e93bf class: FilenameWidgetWithHistory
Claus Gittinger <cg@exept.de>
parents: 4330
diff changeset
   223
    initialDirectoryHolder := ValueHolder with:nil.
3590
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   224
3940
705b77e37f67 added: #initializeFilenameField
Claus Gittinger <cg@exept.de>
parents: 3700
diff changeset
   225
    self initializeFilenameField.
3251
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   226
    fileNameEntryField layout:(LayoutFrame
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   227
                                  leftFraction:0 offset:0 
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   228
                                  rightFraction:1 offset:-22 
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   229
                                  topFraction:0 offset:0 
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   230
                                  bottomFraction:1 offset:0).
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   231
3959
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   232
    self initializeBrowseButton.
3251
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   233
    browseButton layout:(LayoutFrame
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   234
                                  leftFraction:1 offset:-22 
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   235
                                  rightFraction:1 offset:-2 
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   236
                                  topFraction:0 offset:0 
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   237
                                  bottomFraction:1 offset:0).
3940
705b77e37f67 added: #initializeFilenameField
Claus Gittinger <cg@exept.de>
parents: 3700
diff changeset
   238
3959
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   239
    "Modified: / 02-11-2010 / 19:50:33 / cg"
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   240
!
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   241
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   242
initializeBrowseButton
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   243
    browseButton := Button in:self.
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   244
    browseButton label:'...'.
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   245
    browseButton action:[ self browseForFileOrDirectory ].
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   246
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   247
    "Created: / 02-11-2010 / 19:50:21 / cg"
3940
705b77e37f67 added: #initializeFilenameField
Claus Gittinger <cg@exept.de>
parents: 3700
diff changeset
   248
!
705b77e37f67 added: #initializeFilenameField
Claus Gittinger <cg@exept.de>
parents: 3700
diff changeset
   249
705b77e37f67 added: #initializeFilenameField
Claus Gittinger <cg@exept.de>
parents: 3700
diff changeset
   250
initializeFilenameField
705b77e37f67 added: #initializeFilenameField
Claus Gittinger <cg@exept.de>
parents: 3700
diff changeset
   251
    fileNameEntryField := FilenameComboBoxView in:self.
705b77e37f67 added: #initializeFilenameField
Claus Gittinger <cg@exept.de>
parents: 3700
diff changeset
   252
    fileNameEntryField listHolder:(self historyList).
705b77e37f67 added: #initializeFilenameField
Claus Gittinger <cg@exept.de>
parents: 3700
diff changeset
   253
705b77e37f67 added: #initializeFilenameField
Claus Gittinger <cg@exept.de>
parents: 3700
diff changeset
   254
    "Created: / 19-10-2010 / 16:20:09 / cg"
3251
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   255
! !
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   256
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   257
!FilenameWidgetWithHistory methodsFor:'queries'!
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   258
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   259
preferredExtent
3568
2f293d1e2eef changed #preferredExtent - use explicitExtent instvar
Stefan Vogel <sv@exept.de>
parents: 3546
diff changeset
   260
    "/ If I have an explicit preferredExtent..
2f293d1e2eef changed #preferredExtent - use explicitExtent instvar
Stefan Vogel <sv@exept.de>
parents: 3546
diff changeset
   261
    explicitExtent notNil ifTrue:[
2f293d1e2eef changed #preferredExtent - use explicitExtent instvar
Stefan Vogel <sv@exept.de>
parents: 3546
diff changeset
   262
        ^ explicitExtent
2f293d1e2eef changed #preferredExtent - use explicitExtent instvar
Stefan Vogel <sv@exept.de>
parents: 3546
diff changeset
   263
    ].
2f293d1e2eef changed #preferredExtent - use explicitExtent instvar
Stefan Vogel <sv@exept.de>
parents: 3546
diff changeset
   264
    "/ If I have a cached preferredExtent value..
3251
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   265
    preferredExtent notNil ifTrue:[
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   266
        ^ preferredExtent
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   267
    ].
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   268
3427
9927e4970fce added preferredWidth & preferredHeight
Claus Gittinger <cg@exept.de>
parents: 3318
diff changeset
   269
    preferredExtent := (fileNameEntryField preferredWidth + browseButton preferredWidth)
3251
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   270
                       @
3427
9927e4970fce added preferredWidth & preferredHeight
Claus Gittinger <cg@exept.de>
parents: 3318
diff changeset
   271
                       (fileNameEntryField preferredHeight "max: browseButton preferredExtent y").
3251
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   272
    ^ preferredExtent
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   273
! !
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   274
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   275
!FilenameWidgetWithHistory methodsFor:'user actions'!
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   276
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   277
browseForDestinationDirectory
3590
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   278
    <resource: #obsolete>
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   279
    self obsoleteMethodWarning.
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   280
    self browseForFileOrDirectory
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   281
!
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   282
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   283
browseForFileOrDirectory
3594
8bdad6d9c51a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3593
diff changeset
   284
    |path |
3251
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   285
4721
e3cb03ac761a class: FilenameWidgetWithHistory
Claus Gittinger <cg@exept.de>
parents: 4708
diff changeset
   286
    Dialog modifyingBoxWith:[:box |
e3cb03ac761a class: FilenameWidgetWithHistory
Claus Gittinger <cg@exept.de>
parents: 4708
diff changeset
   287
        box perform:#browsemenuItemVisibleHolder: with:true ifNotUnderstood:[].
3251
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   288
    ] do:[
3594
8bdad6d9c51a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3593
diff changeset
   289
        |title defaultPath defaultDir|
3590
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   290
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   291
        title := dialogTitle notNil 
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   292
                    ifTrue:[ dialogTitle ]
3959
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   293
                    ifFalse:[
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   294
                        resources string:(
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   295
                            directoriesOnly 
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   296
                                ifTrue:[ 'Select Directory' ]
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   297
                                ifFalse:[ 
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   298
                                    filesOnly
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   299
                                        ifTrue:[ 'Select File' ]
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   300
                                        ifFalse:[ 'Select Path' ]])].
3590
c3c778e11564 fixes (thanx to bretts info)
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   301
3950
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
   302
        defaultPath := (self model notNil)
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
   303
                            ifTrue:[ self model value ]
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
   304
                            ifFalse:[ fileNameEntryField contents ].
3959
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   305
4019
33b8c1b762cb changed: #browseForFileOrDirectory
Claus Gittinger <cg@exept.de>
parents: 3959
diff changeset
   306
        defaultPath notEmptyOrNil ifTrue:[
33b8c1b762cb changed: #browseForFileOrDirectory
Claus Gittinger <cg@exept.de>
parents: 3959
diff changeset
   307
            defaultPath asFilename isAbsolute ifFalse:[
33b8c1b762cb changed: #browseForFileOrDirectory
Claus Gittinger <cg@exept.de>
parents: 3959
diff changeset
   308
                baseDirectory notNil ifTrue:[
33b8c1b762cb changed: #browseForFileOrDirectory
Claus Gittinger <cg@exept.de>
parents: 3959
diff changeset
   309
                    defaultPath := baseDirectory asFilename construct:defaultPath.
33b8c1b762cb changed: #browseForFileOrDirectory
Claus Gittinger <cg@exept.de>
parents: 3959
diff changeset
   310
                ].
3959
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   311
            ].
3594
8bdad6d9c51a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3593
diff changeset
   312
            defaultDir := defaultPath asFilename directory.
8bdad6d9c51a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3593
diff changeset
   313
        ] ifFalse:[     
8bdad6d9c51a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3593
diff changeset
   314
            defaultDir := initialDirectoryHolder value.
8bdad6d9c51a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3593
diff changeset
   315
        ].
8bdad6d9c51a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3593
diff changeset
   316
        path := Dialog 
3954
e28b5c4fe0c9 comment/format in: #browseForFileOrDirectory
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
   317
                    requestFileName:title
e28b5c4fe0c9 comment/format in: #browseForFileOrDirectory
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
   318
                    default:defaultPath
e28b5c4fe0c9 comment/format in: #browseForFileOrDirectory
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
   319
                    fromDirectory:defaultDir.
3251
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   320
    ].
3594
8bdad6d9c51a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3593
diff changeset
   321
    path isEmptyOrNil ifTrue:[ ^ self ].
3953
370687d1030b changed: #browseForFileOrDirectory
Stefan Vogel <sv@exept.de>
parents: 3950
diff changeset
   322
    path := path asFilename.
3251
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   323
3959
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   324
    baseDirectory notNil ifTrue:[
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   325
        (path pathName startsWith:baseDirectory asFilename pathName) ifTrue:[
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   326
            path := (path pathName copyFrom:(baseDirectory asFilename pathName size + 2)) asFilename.
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   327
        ].
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   328
    ].        
5b7ff23ff724 baseDirectory
Claus Gittinger <cg@exept.de>
parents: 3954
diff changeset
   329
3953
370687d1030b changed: #browseForFileOrDirectory
Stefan Vogel <sv@exept.de>
parents: 3950
diff changeset
   330
    initialDirectoryHolder value:path directory.
370687d1030b changed: #browseForFileOrDirectory
Stefan Vogel <sv@exept.de>
parents: 3950
diff changeset
   331
    path := path pathName.
370687d1030b changed: #browseForFileOrDirectory
Stefan Vogel <sv@exept.de>
parents: 3950
diff changeset
   332
3594
8bdad6d9c51a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3593
diff changeset
   333
    "/ lastDirectoryHolder value:path directory.
3950
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
   334
    self model notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
   335
        self model value:path.
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
   336
    ].
Claus Gittinger <cg@exept.de>
parents: 3940
diff changeset
   337
    fileNameEntryField contents:path.
3251
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   338
4019
33b8c1b762cb changed: #browseForFileOrDirectory
Claus Gittinger <cg@exept.de>
parents: 3959
diff changeset
   339
    "Modified: / 08-02-2011 / 09:24:51 / cg"
3251
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   340
! !
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   341
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   342
!FilenameWidgetWithHistory class methodsFor:'documentation'!
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   343
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   344
version
4721
e3cb03ac761a class: FilenameWidgetWithHistory
Claus Gittinger <cg@exept.de>
parents: 4708
diff changeset
   345
    ^ '$Header: /cvs/stx/stx/libwidg2/FilenameWidgetWithHistory.st,v 1.23 2015-02-27 15:31:27 cg Exp $'
3940
705b77e37f67 added: #initializeFilenameField
Claus Gittinger <cg@exept.de>
parents: 3700
diff changeset
   346
!
705b77e37f67 added: #initializeFilenameField
Claus Gittinger <cg@exept.de>
parents: 3700
diff changeset
   347
705b77e37f67 added: #initializeFilenameField
Claus Gittinger <cg@exept.de>
parents: 3700
diff changeset
   348
version_CVS
4721
e3cb03ac761a class: FilenameWidgetWithHistory
Claus Gittinger <cg@exept.de>
parents: 4708
diff changeset
   349
    ^ '$Header: /cvs/stx/stx/libwidg2/FilenameWidgetWithHistory.st,v 1.23 2015-02-27 15:31:27 cg Exp $'
3251
29b44f456526 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   350
! !
4330
69a2cba2229e aboutToOpenBoxNotificationSignal semantic change (for Jan)
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   351