SimpleDialog.st
author Stefan Vogel <sv@exept.de>
Mon, 13 Mar 2017 09:54:33 +0100
changeset 3941 dd9237d3a727
parent 3867 9b2f1d48773a
child 3970 d993b77cf073
permissions -rw-r--r--
#BUGFIX by stefan class: MIMETypes application/xml -> #isXmlType
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
366
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 1996 by eXept Software AG
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
1373
c04eea37d7db Fix typos in comment.
Stefan Vogel <sv@exept.de>
parents: 1346
diff changeset
    12
"{ Package: 'stx:libview2' }"
c04eea37d7db Fix typos in comment.
Stefan Vogel <sv@exept.de>
parents: 1346
diff changeset
    13
3445
c0ee6acd0090 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3422
diff changeset
    14
"{ NameSpace: Smalltalk }"
c0ee6acd0090 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3422
diff changeset
    15
366
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
ApplicationModel subclass:#SimpleDialog
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
    17
	instanceVariableNames:'accept cancel close escapeIsCancel postBuildBlock postOpenBlock
2500
d146fa50819b allow for an acceptValue to be returned
Claus Gittinger <cg@exept.de>
parents: 2441
diff changeset
    18
		preBuildBlock closeAllowedChannel acceptedValue'
366
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	classVariableNames:''
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	poolDictionaries:''
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
	category:'Interface-Framework'
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
!
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
!SimpleDialog class methodsFor:'documentation'!
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
copyright
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
"
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
 COPYRIGHT (c) 1996 by eXept Software AG
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
              All Rights Reserved
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 This software is furnished under a license and may be used
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 only in accordance with the terms of that license and with the
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 inclusion of the above copyright notice.   This software may not
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
 be provided or otherwise made available to, or used by, any
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
 other person.  No title to or ownership of the software is
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
 hereby transferred.
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
"
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
!
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
documentation
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
"
1589
2c0a2c71d775 Update docu
Stefan Vogel <sv@exept.de>
parents: 1551
diff changeset
    43
    Use SimpleDialog to specify Dialogs with a windowSpec built by the GUI Builder.
366
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
    Notice: this class was implemented using protocol information
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
    from alpha testers and PD code - it may not be complete or compatible to
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
    the corresponding ST-80 class. If you encounter any incompatibilities,
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
    please forward a note to the ST/X team.
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
    [author:]
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
        Claus Gittinger
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
    [see also:]
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
        StandardSystemView
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
        WindowGroup DeviceWorkstation DialogBox
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
"
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
! !
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
906
732822b19bc3 isVisualStartable
tz
parents: 905
diff changeset
    59
!SimpleDialog class methodsFor:'queries'!
732822b19bc3 isVisualStartable
tz
parents: 905
diff changeset
    60
732822b19bc3 isVisualStartable
tz
parents: 905
diff changeset
    61
isVisualStartable
1427
b3e355574ccf comment only
Claus Gittinger <cg@exept.de>
parents: 1397
diff changeset
    62
    "return true, if this application can be started via #open.
b3e355574ccf comment only
Claus Gittinger <cg@exept.de>
parents: 1397
diff changeset
    63
     (to allow start of a change browser via double-click in the browser)"
906
732822b19bc3 isVisualStartable
tz
parents: 905
diff changeset
    64
732822b19bc3 isVisualStartable
tz
parents: 905
diff changeset
    65
    self == SimpleDialog ifTrue:[^false].
732822b19bc3 isVisualStartable
tz
parents: 905
diff changeset
    66
    ^super isVisualStartable
732822b19bc3 isVisualStartable
tz
parents: 905
diff changeset
    67
! !
732822b19bc3 isVisualStartable
tz
parents: 905
diff changeset
    68
2019
7ad3dee35894 protocol compatibility with DialogBox
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
    69
!SimpleDialog methodsFor:'DialogBox compatibility'!
7ad3dee35894 protocol compatibility with DialogBox
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
    70
7ad3dee35894 protocol compatibility with DialogBox
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
    71
destroy
7ad3dee35894 protocol compatibility with DialogBox
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
    72
    self closeRequest
7ad3dee35894 protocol compatibility with DialogBox
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
    73
!
7ad3dee35894 protocol compatibility with DialogBox
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
    74
7ad3dee35894 protocol compatibility with DialogBox
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
    75
hide
7ad3dee35894 protocol compatibility with DialogBox
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
    76
    self window hide
7ad3dee35894 protocol compatibility with DialogBox
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
    77
! !
976
dd0045c9fdd7 must create the builder ... (sigh)
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
    78
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
    79
!SimpleDialog methodsFor:'accessing'!
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
    80
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
    81
accept
2500
d146fa50819b allow for an acceptValue to be returned
Claus Gittinger <cg@exept.de>
parents: 2441
diff changeset
    82
    "return the valueholder which gets set to true by the accept button.
d146fa50819b allow for an acceptValue to be returned
Claus Gittinger <cg@exept.de>
parents: 2441
diff changeset
    83
     Also, when this valueHolder gets a true stuffed into it, the dialog is closed.
d146fa50819b allow for an acceptValue to be returned
Claus Gittinger <cg@exept.de>
parents: 2441
diff changeset
    84
     This valueHolder is also set to true, if the acceptValue get a value stored into."
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
    85
1640
5bd912083327 Initialize accept and cancel valueHolders
Stefan Vogel <sv@exept.de>
parents: 1598
diff changeset
    86
    accept isNil ifTrue:[
3445
c0ee6acd0090 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3422
diff changeset
    87
        accept := ValueHolder with:false.
1640
5bd912083327 Initialize accept and cancel valueHolders
Stefan Vogel <sv@exept.de>
parents: 1598
diff changeset
    88
    ].
5bd912083327 Initialize accept and cancel valueHolders
Stefan Vogel <sv@exept.de>
parents: 1598
diff changeset
    89
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
    90
    ^ accept
605
9e9445252e25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 485
diff changeset
    91
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
    92
    "Modified: / 20.5.1998 / 20:51:05 / cg"
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
    93
!
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
    94
2500
d146fa50819b allow for an acceptValue to be returned
Claus Gittinger <cg@exept.de>
parents: 2441
diff changeset
    95
acceptValue:something
d146fa50819b allow for an acceptValue to be returned
Claus Gittinger <cg@exept.de>
parents: 2441
diff changeset
    96
    "save something in acceptedValue (to be passed back to the opened of this dialog),
d146fa50819b allow for an acceptValue to be returned
Claus Gittinger <cg@exept.de>
parents: 2441
diff changeset
    97
     and set the accept-holder to true, which closes the dialog window.
d146fa50819b allow for an acceptValue to be returned
Claus Gittinger <cg@exept.de>
parents: 2441
diff changeset
    98
     This is similar to a regular accept, but allows for a particular return-value to be passed
d146fa50819b allow for an acceptValue to be returned
Claus Gittinger <cg@exept.de>
parents: 2441
diff changeset
    99
     back."
d146fa50819b allow for an acceptValue to be returned
Claus Gittinger <cg@exept.de>
parents: 2441
diff changeset
   100
d146fa50819b allow for an acceptValue to be returned
Claus Gittinger <cg@exept.de>
parents: 2441
diff changeset
   101
    acceptedValue := something.
d146fa50819b allow for an acceptValue to be returned
Claus Gittinger <cg@exept.de>
parents: 2441
diff changeset
   102
    self closeAccept
d146fa50819b allow for an acceptValue to be returned
Claus Gittinger <cg@exept.de>
parents: 2441
diff changeset
   103
!
d146fa50819b allow for an acceptValue to be returned
Claus Gittinger <cg@exept.de>
parents: 2441
diff changeset
   104
1381
1035403e302e added #accepted
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
   105
accepted
1035403e302e added #accepted
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
   106
    "after the box has closed:
1035403e302e added #accepted
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
   107
         return true if accepted, false if canceled"
1035403e302e added #accepted
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
   108
3259
901d67809da0 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3208
diff changeset
   109
    ^ accept value
1381
1035403e302e added #accepted
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
   110
!
1035403e302e added #accepted
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
   111
2500
d146fa50819b allow for an acceptValue to be returned
Claus Gittinger <cg@exept.de>
parents: 2441
diff changeset
   112
acceptedValue
d146fa50819b allow for an acceptValue to be returned
Claus Gittinger <cg@exept.de>
parents: 2441
diff changeset
   113
    "an additional value which can be passed back to the one who opened a dialog"
d146fa50819b allow for an acceptValue to be returned
Claus Gittinger <cg@exept.de>
parents: 2441
diff changeset
   114
d146fa50819b allow for an acceptValue to be returned
Claus Gittinger <cg@exept.de>
parents: 2441
diff changeset
   115
    ^ acceptedValue
d146fa50819b allow for an acceptValue to be returned
Claus Gittinger <cg@exept.de>
parents: 2441
diff changeset
   116
!
d146fa50819b allow for an acceptValue to be returned
Claus Gittinger <cg@exept.de>
parents: 2441
diff changeset
   117
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   118
bindings
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   119
    "return my builders bindings"
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   120
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   121
    ^ builder bindings
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   122
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   123
    "Modified: / 20.5.1998 / 20:51:15 / cg"
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   124
!
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   125
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   126
cancel
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   127
    "return the valueholder which gets set by the cancel button.
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   128
     Also, when this valueHolder gets a true stuffed into it, the
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   129
     dialog is closed."
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   130
1640
5bd912083327 Initialize accept and cancel valueHolders
Stefan Vogel <sv@exept.de>
parents: 1598
diff changeset
   131
    cancel isNil ifTrue:[
3445
c0ee6acd0090 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3422
diff changeset
   132
        cancel := ValueHolder with:false.
1640
5bd912083327 Initialize accept and cancel valueHolders
Stefan Vogel <sv@exept.de>
parents: 1598
diff changeset
   133
    ].
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   134
    ^ cancel
605
9e9445252e25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 485
diff changeset
   135
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   136
    "Modified: / 20.5.1998 / 20:51:02 / cg"
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   137
!
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   138
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   139
closeAllowedChannel
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   140
    "return the value-provider which controls if close is allowed.
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   141
     This is initialized to true."
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   142
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   143
    ^ closeAllowedChannel
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   144
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   145
    "Created: / 20.5.1998 / 21:52:32 / cg"
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   146
    "Modified: / 20.5.1998 / 21:53:18 / cg"
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   147
!
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   148
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   149
closeAllowedChannel:aValueHolderOrBlock
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   150
    "set a value-provider which controls if close is allowed."
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   151
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   152
    ^ closeAllowedChannel
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   153
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   154
    "Created: / 20.5.1998 / 21:52:53 / cg"
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   155
!
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   156
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   157
closeChannel
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   158
    "return the closeChannel; If a true is stuffed into this valueHolder,
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   159
     I will close myself."
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   160
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   161
    ^ close
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   162
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   163
    "Modified: / 20.5.1998 / 20:52:29 / cg"
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   164
!
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   165
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   166
escapeIsCancel
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   167
    "return the escapeIsCancel setting"
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   168
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   169
    ^ escapeIsCancel
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   170
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   171
    "Modified: / 20.5.1998 / 20:52:44 / cg"
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   172
!
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   173
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   174
escapeIsCancel:something
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   175
    "set/clear the escapeIsCancel option.
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   176
     If on, an ESC-key will be treated like a cancel action."
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   177
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   178
    escapeIsCancel := something.
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   179
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   180
    "Modified: / 20.5.1998 / 20:53:23 / cg"
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   181
!
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   182
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   183
postBuildBlock:something
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   184
    "set postBuildBlock; if non-nil, this is evaluated after the build process"
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   185
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   186
    postBuildBlock := something.
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   187
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   188
    "Modified: / 20.5.1998 / 20:54:06 / cg"
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   189
!
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   190
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   191
postOpenBlock:something
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   192
    "set the postBuildBlock; if non-nil, this is evaluated after the view is opened"
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   193
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   194
    postOpenBlock := something.
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   195
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   196
    "Modified: / 20.5.1998 / 20:54:23 / cg"
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   197
!
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   198
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   199
preBuildBlock:something
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   200
    "set the preBuildBlock; if non-nil, this is evaluated before the view is constructed"
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   201
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   202
    preBuildBlock := something.
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   203
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   204
    "Modified: / 20.5.1998 / 20:54:41 / cg"
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   205
!
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   206
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   207
source:anApplication
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   208
    "define the application which provides resources, aspects etc."
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   209
1067
5b39cef366fe also set the masterApplication when a simpleDialogs source
Claus Gittinger <cg@exept.de>
parents: 1053
diff changeset
   210
    builder source:anApplication.
5b39cef366fe also set the masterApplication when a simpleDialogs source
Claus Gittinger <cg@exept.de>
parents: 1053
diff changeset
   211
    masterApplication isNil ifTrue:[
1440
7a0b8cc86e87 added #openSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
   212
        anApplication ~~ self ifTrue:[
7a0b8cc86e87 added #openSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
   213
            masterApplication := anApplication
7a0b8cc86e87 added #openSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
   214
        ]
1067
5b39cef366fe also set the masterApplication when a simpleDialogs source
Claus Gittinger <cg@exept.de>
parents: 1053
diff changeset
   215
    ].
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   216
1067
5b39cef366fe also set the masterApplication when a simpleDialogs source
Claus Gittinger <cg@exept.de>
parents: 1053
diff changeset
   217
    "Modified: / 8.9.1998 / 01:46:06 / cg"
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   218
! !
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   219
1397
47ac1d3e1df1 category changes
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
   220
!SimpleDialog methodsFor:'accessing-window'!
481
02d1db5d428a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 476
diff changeset
   221
02d1db5d428a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 476
diff changeset
   222
minWidth:nPixels
3303
24f64ee4560b class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   223
    |w|
481
02d1db5d428a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 476
diff changeset
   224
02d1db5d428a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 476
diff changeset
   225
    w := builder window width.
02d1db5d428a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 476
diff changeset
   226
    builder window width:(w max:nPixels).
02d1db5d428a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 476
diff changeset
   227
02d1db5d428a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 476
diff changeset
   228
"/    box := builder window displayBox.
02d1db5d428a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 476
diff changeset
   229
"/    box width: (box width max: nPixels).
02d1db5d428a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 476
diff changeset
   230
"/    builder window displayBox: box
02d1db5d428a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 476
diff changeset
   231
02d1db5d428a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 476
diff changeset
   232
    "Modified: 3.3.1997 / 21:56:27 / cg"
02d1db5d428a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 476
diff changeset
   233
! !
02d1db5d428a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 476
diff changeset
   234
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   235
!SimpleDialog methodsFor:'events'!
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   236
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   237
closeAccept
605
9e9445252e25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 485
diff changeset
   238
    "accept was pressed. close the dialog"
9e9445252e25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 485
diff changeset
   239
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   240
    self requestForWindowClose ifTrue:[
1129
0d5fd9b819a9 autoAccept
Claus Gittinger <cg@exept.de>
parents: 1067
diff changeset
   241
        builder keyboardProcessor requestGlobalAutoAccept ifTrue:[
1943
0cff3328cb36 set acceptChannels valueHolder to true in closeAccept.
Claus Gittinger <cg@exept.de>
parents: 1881
diff changeset
   242
            accept value:true.
1129
0d5fd9b819a9 autoAccept
Claus Gittinger <cg@exept.de>
parents: 1067
diff changeset
   243
            self closeWindow
0d5fd9b819a9 autoAccept
Claus Gittinger <cg@exept.de>
parents: 1067
diff changeset
   244
        ]
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   245
    ]
605
9e9445252e25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 485
diff changeset
   246
9e9445252e25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 485
diff changeset
   247
    "Modified: 17.6.1997 / 14:10:23 / cg"
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   248
!
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   249
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   250
closeCancel
605
9e9445252e25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 485
diff changeset
   251
    "cancel was pressed. close the dialog"
9e9445252e25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 485
diff changeset
   252
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   253
    self requestForWindowClose ifTrue:[
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   254
        self closeWindow
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   255
    ]
605
9e9445252e25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 485
diff changeset
   256
9e9445252e25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 485
diff changeset
   257
    "Modified: 17.6.1997 / 14:10:29 / cg"
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   258
!
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   259
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   260
closeWindow
605
9e9445252e25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 485
diff changeset
   261
    "close the dialog"
9e9445252e25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 485
diff changeset
   262
1053
0d77637f9d45 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 978
diff changeset
   263
    |c|
0d77637f9d45 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 978
diff changeset
   264
0d77637f9d45 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 978
diff changeset
   265
    c := self closeChannel.
0d77637f9d45 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 978
diff changeset
   266
    c retractInterestsFor:self.
0d77637f9d45 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 978
diff changeset
   267
    c value:true.
3204
c606e3239538 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3180
diff changeset
   268
c606e3239538 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3180
diff changeset
   269
    "/ must destroy instead of hide - otherwise there is no #release to
c606e3239538 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3180
diff changeset
   270
    "/ the controller (onChangeSend-dependency problem)
c606e3239538 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3180
diff changeset
   271
    "/     builder window destroy. "/ hide
605
9e9445252e25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 485
diff changeset
   272
3204
c606e3239538 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3180
diff changeset
   273
    "/ changed to use the general closeDownViews 
c606e3239538 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3180
diff changeset
   274
    "/ (some want to redefine it and expect it to be called; it eventually also does a window destroy)
c606e3239538 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3180
diff changeset
   275
    self closeDownViews.
c606e3239538 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3180
diff changeset
   276
c606e3239538 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3180
diff changeset
   277
    "Modified (comment): / 31-07-2013 / 18:02:55 / cg"
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   278
!
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   279
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   280
requestForWindowClose
1373
c04eea37d7db Fix typos in comment.
Stefan Vogel <sv@exept.de>
parents: 1346
diff changeset
   281
    "the dialog is about to be closed - this method is invoked and may
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   282
     return false to suppress the close.
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   283
     Here the value of closeAllowedChannel is returned, which is
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   284
     set to true initially.
1373
c04eea37d7db Fix typos in comment.
Stefan Vogel <sv@exept.de>
parents: 1346
diff changeset
   285
     You may redefined this in a special dialog, and/or provide a boolean
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   286
     valueHolder or a boolean block via the #closeAllowedChannel: method."
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   287
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   288
    ^ closeAllowedChannel value
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   289
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   290
    "Modified: / 20.5.1998 / 21:52:25 / cg"
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   291
! !
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   292
713
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   293
!SimpleDialog methodsFor:'forced actions'!
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   294
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   295
doAccept
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   296
    "force accept"
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   297
1640
5bd912083327 Initialize accept and cancel valueHolders
Stefan Vogel <sv@exept.de>
parents: 1598
diff changeset
   298
    self accept value:true
713
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   299
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   300
    "Created: / 18.10.1997 / 05:18:09 / cg"
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   301
    "Modified: / 20.5.1998 / 21:53:35 / cg"
713
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   302
!
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   303
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   304
doCancel
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   305
    "force cancel"
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   306
1640
5bd912083327 Initialize accept and cancel valueHolders
Stefan Vogel <sv@exept.de>
parents: 1598
diff changeset
   307
    self cancel value:true
713
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   308
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   309
    "Created: / 18.10.1997 / 05:18:22 / cg"
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   310
    "Modified: / 20.5.1998 / 21:53:40 / cg"
713
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   311
! !
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   312
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   313
!SimpleDialog methodsFor:'initialization'!
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   314
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   315
initialize
3867
9b2f1d48773a #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 3495
diff changeset
   316
    <modifier: #super> "must be called if redefined"
9b2f1d48773a #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 3495
diff changeset
   317
935
ccb6caad1da0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
   318
    accept := (ValueHolder with:false).
ccb6caad1da0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
   319
    close := (ValueHolder with:false).
ccb6caad1da0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 932
diff changeset
   320
    cancel := (ValueHolder with:false).
978
cd056a68d67a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 976
diff changeset
   321
    self createBuilder.
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   322
    builder aspectAt:#accept put:accept.
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   323
    builder aspectAt:#close put:close.
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   324
    builder aspectAt:#cancel put:cancel.
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   325
    escapeIsCancel := true.
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   326
    closeAllowedChannel := true
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   327
3867
9b2f1d48773a #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 3495
diff changeset
   328
    "Modified: / 08-02-2017 / 00:34:07 / cg"
476
628766c580c3 added dummy #initializeBuilderFor: and #initializeWindowFor:
Claus Gittinger <cg@exept.de>
parents: 466
diff changeset
   329
!
628766c580c3 added dummy #initializeBuilderFor: and #initializeWindowFor:
Claus Gittinger <cg@exept.de>
parents: 466
diff changeset
   330
628766c580c3 added dummy #initializeBuilderFor: and #initializeWindowFor:
Claus Gittinger <cg@exept.de>
parents: 466
diff changeset
   331
initializeBuilderFor:aView 
628766c580c3 added dummy #initializeBuilderFor: and #initializeWindowFor:
Claus Gittinger <cg@exept.de>
parents: 466
diff changeset
   332
    aView notNil ifTrue:[
628766c580c3 added dummy #initializeBuilderFor: and #initializeWindowFor:
Claus Gittinger <cg@exept.de>
parents: 466
diff changeset
   333
        builder window:aView.
628766c580c3 added dummy #initializeBuilderFor: and #initializeWindowFor:
Claus Gittinger <cg@exept.de>
parents: 466
diff changeset
   334
    ]
628766c580c3 added dummy #initializeBuilderFor: and #initializeWindowFor:
Claus Gittinger <cg@exept.de>
parents: 466
diff changeset
   335
628766c580c3 added dummy #initializeBuilderFor: and #initializeWindowFor:
Claus Gittinger <cg@exept.de>
parents: 466
diff changeset
   336
    "Created: 3.3.1997 / 16:23:04 / cg"
628766c580c3 added dummy #initializeBuilderFor: and #initializeWindowFor:
Claus Gittinger <cg@exept.de>
parents: 466
diff changeset
   337
!
628766c580c3 added dummy #initializeBuilderFor: and #initializeWindowFor:
Claus Gittinger <cg@exept.de>
parents: 466
diff changeset
   338
628766c580c3 added dummy #initializeBuilderFor: and #initializeWindowFor:
Claus Gittinger <cg@exept.de>
parents: 466
diff changeset
   339
initializeWindowFor:aView
679
0f94c493751c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 605
diff changeset
   340
    |v|
476
628766c580c3 added dummy #initializeBuilderFor: and #initializeWindowFor:
Claus Gittinger <cg@exept.de>
parents: 466
diff changeset
   341
628766c580c3 added dummy #initializeBuilderFor: and #initializeWindowFor:
Claus Gittinger <cg@exept.de>
parents: 466
diff changeset
   342
    (v := aView) isNil ifTrue:[
628766c580c3 added dummy #initializeBuilderFor: and #initializeWindowFor:
Claus Gittinger <cg@exept.de>
parents: 466
diff changeset
   343
        v := ModalBox new.
628766c580c3 added dummy #initializeBuilderFor: and #initializeWindowFor:
Claus Gittinger <cg@exept.de>
parents: 466
diff changeset
   344
    ].
628766c580c3 added dummy #initializeBuilderFor: and #initializeWindowFor:
Claus Gittinger <cg@exept.de>
parents: 466
diff changeset
   345
481
02d1db5d428a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 476
diff changeset
   346
    builder setupWindowFor:v.
476
628766c580c3 added dummy #initializeBuilderFor: and #initializeWindowFor:
Claus Gittinger <cg@exept.de>
parents: 466
diff changeset
   347
481
02d1db5d428a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 476
diff changeset
   348
    "Modified: 3.3.1997 / 20:39:46 / cg"
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   349
! !
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   350
2922
ff84e43f9c94 special postBuildDialog & postOpenDialog hooks for apps opening
Claus Gittinger <cg@exept.de>
parents: 2877
diff changeset
   351
!SimpleDialog methodsFor:'opening-dialogInterface'!
429
3311c88f2a0e dialog opening stuff
ca
parents: 366
diff changeset
   352
2877
2ab7a4fa2b3d added: #allButOpenFor:interfaceSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 2500
diff changeset
   353
allButOpenFor:anApplication interfaceSpec:aSpec withBindings:bindings
2ab7a4fa2b3d added: #allButOpenFor:interfaceSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 2500
diff changeset
   354
    "open the dialog for some appModel from a given spec;
3099
90ad6c9bb1bd class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 2922
diff changeset
   355
     the bindings argument may provide overwriting bindings for the dialog.
2877
2ab7a4fa2b3d added: #allButOpenFor:interfaceSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 2500
diff changeset
   356
     Return true if accepted, false if canceled"
2ab7a4fa2b3d added: #allButOpenFor:interfaceSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 2500
diff changeset
   357
2ab7a4fa2b3d added: #allButOpenFor:interfaceSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 2500
diff changeset
   358
    |app|
2ab7a4fa2b3d added: #allButOpenFor:interfaceSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 2500
diff changeset
   359
2922
ff84e43f9c94 special postBuildDialog & postOpenDialog hooks for apps opening
Claus Gittinger <cg@exept.de>
parents: 2877
diff changeset
   360
    builder isNil ifTrue:[ self createBuilder ].
ff84e43f9c94 special postBuildDialog & postOpenDialog hooks for apps opening
Claus Gittinger <cg@exept.de>
parents: 2877
diff changeset
   361
2877
2ab7a4fa2b3d added: #allButOpenFor:interfaceSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 2500
diff changeset
   362
    builder addBindings:bindings.
2ab7a4fa2b3d added: #allButOpenFor:interfaceSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 2500
diff changeset
   363
    (app := anApplication) isNil ifTrue:[
2ab7a4fa2b3d added: #allButOpenFor:interfaceSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 2500
diff changeset
   364
        app := ApplicationModel new
2ab7a4fa2b3d added: #allButOpenFor:interfaceSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 2500
diff changeset
   365
    ].
2ab7a4fa2b3d added: #allButOpenFor:interfaceSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 2500
diff changeset
   366
    self source:app.
2ab7a4fa2b3d added: #allButOpenFor:interfaceSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 2500
diff changeset
   367
    ^ self allButOpenFrom:aSpec
2ab7a4fa2b3d added: #allButOpenFor:interfaceSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 2500
diff changeset
   368
2ab7a4fa2b3d added: #allButOpenFor:interfaceSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 2500
diff changeset
   369
    "Created: / 05-11-2010 / 11:27:26 / cg"
2ab7a4fa2b3d added: #allButOpenFor:interfaceSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 2500
diff changeset
   370
!
2ab7a4fa2b3d added: #allButOpenFor:interfaceSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 2500
diff changeset
   371
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   372
allButOpenFrom:aSpec
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   373
    "create my views but do not open the main window"
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   374
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   375
    super allButOpenFrom:aSpec.
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   376
    self preOpen
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   377
!
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   378
429
3311c88f2a0e dialog opening stuff
ca
parents: 366
diff changeset
   379
openFor:anApplication interface:aSelector
465
5df2fbe7275a comments
Claus Gittinger <cg@exept.de>
parents: 464
diff changeset
   380
    "open the dialog for some appModel from a given spec;
5df2fbe7275a comments
Claus Gittinger <cg@exept.de>
parents: 464
diff changeset
   381
     Return true if accepted, false if canceled"
5df2fbe7275a comments
Claus Gittinger <cg@exept.de>
parents: 464
diff changeset
   382
464
25e6380399c6 allow additional bindings to be passed with #openDialogInterface
Claus Gittinger <cg@exept.de>
parents: 462
diff changeset
   383
    ^ self openFor:anApplication interface:aSelector withBindings:nil
25e6380399c6 allow additional bindings to be passed with #openDialogInterface
Claus Gittinger <cg@exept.de>
parents: 462
diff changeset
   384
465
5df2fbe7275a comments
Claus Gittinger <cg@exept.de>
parents: 464
diff changeset
   385
    "Modified: 28.2.1997 / 16:22:08 / cg"
464
25e6380399c6 allow additional bindings to be passed with #openDialogInterface
Claus Gittinger <cg@exept.de>
parents: 462
diff changeset
   386
!
25e6380399c6 allow additional bindings to be passed with #openDialogInterface
Claus Gittinger <cg@exept.de>
parents: 462
diff changeset
   387
25e6380399c6 allow additional bindings to be passed with #openDialogInterface
Claus Gittinger <cg@exept.de>
parents: 462
diff changeset
   388
openFor:anApplication interface:aSelector withBindings:bindings
713
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   389
    "open the dialog for some appModel from a given specSymbol;
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   390
     the application must provide an interfaceSpec for that symbol.
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   391
     The bindings argument may provide overwriting bindings for the
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   392
     dialog.
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   393
     Return true if accepted, false if canceled"
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   394
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   395
    ^ self
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   396
        openFor:anApplication 
2441
61d9292cdb41 interfaceSpecFor must go via the instance
Claus Gittinger <cg@exept.de>
parents: 2019
diff changeset
   397
        interfaceSpec:(anApplication interfaceSpecFor:aSelector)
713
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   398
        withBindings:bindings
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   399
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   400
    "Modified: 18.10.1997 / 04:43:13 / cg"
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   401
!
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   402
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   403
openFor:anApplication interfaceSpec:aSpec withBindings:bindings
465
5df2fbe7275a comments
Claus Gittinger <cg@exept.de>
parents: 464
diff changeset
   404
    "open the dialog for some appModel from a given spec;
5df2fbe7275a comments
Claus Gittinger <cg@exept.de>
parents: 464
diff changeset
   405
     the bindings argument may provide overwriting bindings for the
5df2fbe7275a comments
Claus Gittinger <cg@exept.de>
parents: 464
diff changeset
   406
     dialog.
5df2fbe7275a comments
Claus Gittinger <cg@exept.de>
parents: 464
diff changeset
   407
     Return true if accepted, false if canceled"
5df2fbe7275a comments
Claus Gittinger <cg@exept.de>
parents: 464
diff changeset
   408
2877
2ab7a4fa2b3d added: #allButOpenFor:interfaceSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 2500
diff changeset
   409
    self allButOpenFor:anApplication interfaceSpec:aSpec withBindings:bindings.
2ab7a4fa2b3d added: #allButOpenFor:interfaceSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 2500
diff changeset
   410
    self openDialog.
2ab7a4fa2b3d added: #allButOpenFor:interfaceSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 2500
diff changeset
   411
    ^ accept value
1491
6a1c859f50da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1441
diff changeset
   412
2922
ff84e43f9c94 special postBuildDialog & postOpenDialog hooks for apps opening
Claus Gittinger <cg@exept.de>
parents: 2877
diff changeset
   413
    "Created: / 07-07-2011 / 16:52:04 / cg"
429
3311c88f2a0e dialog opening stuff
ca
parents: 366
diff changeset
   414
!
3311c88f2a0e dialog opening stuff
ca
parents: 366
diff changeset
   415
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   416
openFor:anApplication spec:aSpec withBindings:bindings
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   417
    "open the dialog for some appModel from a given spec.
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   418
     The bindings argument may provide overwriting bindings for the
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   419
     dialog.
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   420
     Return true if accepted, false if canceled"
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   421
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   422
    ^ self
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   423
        openFor:anApplication 
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   424
        interfaceSpec:aSpec
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   425
        withBindings:bindings
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   426
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   427
    "Modified: / 18.10.1997 / 04:43:13 / cg"
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   428
    "Created: / 20.5.1998 / 20:28:29 / cg"
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   429
!
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   430
429
3311c88f2a0e dialog opening stuff
ca
parents: 366
diff changeset
   431
openFrom:anInterfaceSpec
466
784ed480f4eb comments
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
   432
    "open the dialog from a given spec;
784ed480f4eb comments
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
   433
     return true if accepted, false if canceled"
784ed480f4eb comments
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
   434
429
3311c88f2a0e dialog opening stuff
ca
parents: 366
diff changeset
   435
    self allButOpenFrom:anInterfaceSpec.
3311c88f2a0e dialog opening stuff
ca
parents: 366
diff changeset
   436
    self openDialog.
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   437
    ^ accept value
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   438
466
784ed480f4eb comments
Claus Gittinger <cg@exept.de>
parents: 465
diff changeset
   439
    "Modified: 28.2.1997 / 16:40:36 / cg"
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   440
!
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   441
1441
2777d3f49053 category changes
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
   442
openInterface:aSymbol
2777d3f49053 category changes
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
   443
    "open a standard interface.
2777d3f49053 category changes
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
   444
     Redefined to return the accept value instead of the builder."
2777d3f49053 category changes
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
   445
3493
4570371765c6 class: SimpleDialog
Stefan Vogel <sv@exept.de>
parents: 3445
diff changeset
   446
    self accept setValue:false.
3422
aba77672c635 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3303
diff changeset
   447
1441
2777d3f49053 category changes
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
   448
    super openInterfaceModal:aSymbol.
2500
d146fa50819b allow for an acceptValue to be returned
Claus Gittinger <cg@exept.de>
parents: 2441
diff changeset
   449
    acceptedValue notNil ifTrue:[^ acceptedValue].
1441
2777d3f49053 category changes
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
   450
    ^ accept value.
2777d3f49053 category changes
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
   451
2777d3f49053 category changes
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
   452
    "Created: / 23.1.1998 / 18:19:57 / cg"
2777d3f49053 category changes
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
   453
    "Modified: / 20.5.1998 / 20:21:28 / cg"
2777d3f49053 category changes
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
   454
!
2777d3f49053 category changes
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
   455
3180
ddb23aad351e class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
   456
openInterface:aSymbol at:position
ddb23aad351e class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
   457
    "open a standard interface.
ddb23aad351e class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
   458
     Redefined to return the accept value instead of the builder."
ddb23aad351e class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
   459
ddb23aad351e class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
   460
    super openInterfaceModal:aSymbol at:position.
ddb23aad351e class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
   461
    acceptedValue notNil ifTrue:[^ acceptedValue].
ddb23aad351e class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
   462
    ^ accept value.
ddb23aad351e class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
   463
ddb23aad351e class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
   464
    "Created: / 23.1.1998 / 18:19:57 / cg"
ddb23aad351e class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
   465
    "Modified: / 20.5.1998 / 20:21:28 / cg"
ddb23aad351e class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
   466
!
ddb23aad351e class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
   467
3495
f626e72f5334 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
   468
openModelessFor:anApplication interfaceSpec:aSpec withBindings:bindings
f626e72f5334 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
   469
    "open the dialog for some appModel from a given spec;
f626e72f5334 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
   470
     the bindings argument may provide overwriting bindings for the
f626e72f5334 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
   471
     dialog.
f626e72f5334 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
   472
     Return immediately, not blocking the caller"
f626e72f5334 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
   473
f626e72f5334 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
   474
    self allButOpenFor:anApplication interfaceSpec:aSpec withBindings:bindings.
f626e72f5334 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
   475
    self openDialogModeless
f626e72f5334 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
   476
!
f626e72f5334 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
   477
f626e72f5334 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
   478
openModelessFor:anApplication spec:aSpec withBindings:bindings
f626e72f5334 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
   479
    "open the dialog for some appModel from a given spec.
f626e72f5334 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
   480
     The bindings argument may provide overwriting bindings for the
f626e72f5334 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
   481
     dialog.
f626e72f5334 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
   482
     Return immediately (i.e non-blocking the caller)"
f626e72f5334 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
   483
f626e72f5334 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
   484
    self
f626e72f5334 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
   485
        openModelessFor:anApplication 
f626e72f5334 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
   486
        interfaceSpec:aSpec
f626e72f5334 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
   487
        withBindings:bindings
f626e72f5334 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
   488
!
f626e72f5334 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
   489
1441
2777d3f49053 category changes
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
   490
openSpec:aWindowSpec
2777d3f49053 category changes
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
   491
    "open a window spec.
2777d3f49053 category changes
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
   492
     Redefned to open modal and to return the accept value instead 
2777d3f49053 category changes
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
   493
     of the builder."
2777d3f49053 category changes
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
   494
2777d3f49053 category changes
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
   495
    super openSpecModal:aWindowSpec.
2777d3f49053 category changes
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
   496
    ^ accept value.
2777d3f49053 category changes
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
   497
2777d3f49053 category changes
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
   498
    "Modified: / 22.4.1998 / 11:59:05 / cg"
2777d3f49053 category changes
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
   499
    "Created: / 20.5.1998 / 20:21:17 / cg"
2777d3f49053 category changes
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
   500
!
2777d3f49053 category changes
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
   501
1440
7a0b8cc86e87 added #openSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
   502
openSpec:anInterfaceSpec withBindings:bindings
7a0b8cc86e87 added #openSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
   503
    "open the dialog with a given spec;
7a0b8cc86e87 added #openSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
   504
     The bindings argument is mandatory and provides aspect bindings for the
7a0b8cc86e87 added #openSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
   505
     dialog.
7a0b8cc86e87 added #openSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
   506
     Return true if accepted, false if canceled"
7a0b8cc86e87 added #openSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
   507
7a0b8cc86e87 added #openSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
   508
    ^ self
7a0b8cc86e87 added #openSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
   509
        openFor:self 
7a0b8cc86e87 added #openSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
   510
        interfaceSpec:anInterfaceSpec
7a0b8cc86e87 added #openSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
   511
        withBindings:bindings
7a0b8cc86e87 added #openSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
   512
!
7a0b8cc86e87 added #openSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
   513
713
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   514
postBuildWith:aBuilder
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   515
    "this is sent after the dialogs widgets have been created
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   516
     (but before the dialog is opened).
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   517
     If a postBuildBlock was set, evaluate it here."
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   518
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   519
    postBuildBlock notNil ifTrue:[
1551
f3428747591f use new #valueWithOptionalArg
Claus Gittinger <cg@exept.de>
parents: 1491
diff changeset
   520
        postBuildBlock valueWithOptionalArgument:aBuilder
713
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   521
    ].
2922
ff84e43f9c94 special postBuildDialog & postOpenDialog hooks for apps opening
Claus Gittinger <cg@exept.de>
parents: 2877
diff changeset
   522
    builder source ~= self ifTrue:[
ff84e43f9c94 special postBuildDialog & postOpenDialog hooks for apps opening
Claus Gittinger <cg@exept.de>
parents: 2877
diff changeset
   523
        "/ I was opened as dialogInterface for another application;
ff84e43f9c94 special postBuildDialog & postOpenDialog hooks for apps opening
Claus Gittinger <cg@exept.de>
parents: 2877
diff changeset
   524
        "/ inform it that I am ready now
ff84e43f9c94 special postBuildDialog & postOpenDialog hooks for apps opening
Claus Gittinger <cg@exept.de>
parents: 2877
diff changeset
   525
        builder source postBuildDialogWith:aBuilder
ff84e43f9c94 special postBuildDialog & postOpenDialog hooks for apps opening
Claus Gittinger <cg@exept.de>
parents: 2877
diff changeset
   526
    ].
ff84e43f9c94 special postBuildDialog & postOpenDialog hooks for apps opening
Claus Gittinger <cg@exept.de>
parents: 2877
diff changeset
   527
713
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   528
    super postBuildWith:aBuilder
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   529
2922
ff84e43f9c94 special postBuildDialog & postOpenDialog hooks for apps opening
Claus Gittinger <cg@exept.de>
parents: 2877
diff changeset
   530
    "Created: / 18-10-1997 / 05:17:12 / cg"
713
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   531
!
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   532
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   533
postOpenWith:aBuilder
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   534
    "this is sent after the dialogs main window is opened.
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   535
     If a postOpenBlock was set, evaluate it here."
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   536
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   537
    postOpenBlock notNil ifTrue:[
1551
f3428747591f use new #valueWithOptionalArg
Claus Gittinger <cg@exept.de>
parents: 1491
diff changeset
   538
        postOpenBlock valueWithOptionalArgument:aBuilder
713
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   539
    ].
2922
ff84e43f9c94 special postBuildDialog & postOpenDialog hooks for apps opening
Claus Gittinger <cg@exept.de>
parents: 2877
diff changeset
   540
    builder source ~= self ifTrue:[
ff84e43f9c94 special postBuildDialog & postOpenDialog hooks for apps opening
Claus Gittinger <cg@exept.de>
parents: 2877
diff changeset
   541
        "/ I was opened as dialogInterface for another application;
ff84e43f9c94 special postBuildDialog & postOpenDialog hooks for apps opening
Claus Gittinger <cg@exept.de>
parents: 2877
diff changeset
   542
        "/ inform it that I am ready now
ff84e43f9c94 special postBuildDialog & postOpenDialog hooks for apps opening
Claus Gittinger <cg@exept.de>
parents: 2877
diff changeset
   543
        builder source postOpenDialogWith:aBuilder
ff84e43f9c94 special postBuildDialog & postOpenDialog hooks for apps opening
Claus Gittinger <cg@exept.de>
parents: 2877
diff changeset
   544
    ].
713
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   545
    super postOpenWith:aBuilder
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   546
2922
ff84e43f9c94 special postBuildDialog & postOpenDialog hooks for apps opening
Claus Gittinger <cg@exept.de>
parents: 2877
diff changeset
   547
    "Created: / 18-10-1997 / 05:15:48 / cg"
713
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   548
!
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   549
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   550
preBuildWith:aBuilder
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   551
    "this is sent before the dialogs widgets are created.
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   552
     If a preBuildBlock was set, evaluate it here."
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   553
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   554
    preBuildBlock notNil ifTrue:[
1551
f3428747591f use new #valueWithOptionalArg
Claus Gittinger <cg@exept.de>
parents: 1491
diff changeset
   555
        preBuildBlock valueWithOptionalArgument:aBuilder
713
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   556
    ].
2922
ff84e43f9c94 special postBuildDialog & postOpenDialog hooks for apps opening
Claus Gittinger <cg@exept.de>
parents: 2877
diff changeset
   557
    builder source ~= self ifTrue:[
ff84e43f9c94 special postBuildDialog & postOpenDialog hooks for apps opening
Claus Gittinger <cg@exept.de>
parents: 2877
diff changeset
   558
        "/ I was opened as dialogInterface for another application;
ff84e43f9c94 special postBuildDialog & postOpenDialog hooks for apps opening
Claus Gittinger <cg@exept.de>
parents: 2877
diff changeset
   559
        "/ inform it that I am ready now
ff84e43f9c94 special postBuildDialog & postOpenDialog hooks for apps opening
Claus Gittinger <cg@exept.de>
parents: 2877
diff changeset
   560
        builder source preBuildDialogWith:aBuilder
ff84e43f9c94 special postBuildDialog & postOpenDialog hooks for apps opening
Claus Gittinger <cg@exept.de>
parents: 2877
diff changeset
   561
    ].
713
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   562
    super preBuildWith:aBuilder
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   563
2922
ff84e43f9c94 special postBuildDialog & postOpenDialog hooks for apps opening
Claus Gittinger <cg@exept.de>
parents: 2877
diff changeset
   564
    "Created: / 18-10-1997 / 15:02:27 / cg"
713
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   565
!
548898fdd1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 679
diff changeset
   566
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   567
preOpen
605
9e9445252e25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 485
diff changeset
   568
    "arrange for #closeAccept & #closeCancel to be invoked when
9e9445252e25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 485
diff changeset
   569
     either accept or close is triggered
9e9445252e25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 485
diff changeset
   570
     (usually the models of corresponding buttons)"
9e9445252e25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 485
diff changeset
   571
431
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   572
    accept onChangeSend:#closeAccept to:self.
99a2737206a6 checkin from browser
ca
parents: 429
diff changeset
   573
    cancel onChangeSend:#closeCancel to:self.
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   574
    close  onChangeSend:#closeWindow to:self.
429
3311c88f2a0e dialog opening stuff
ca
parents: 366
diff changeset
   575
932
f7b0ce4cc1d1 allow opening an interface by spec.
Claus Gittinger <cg@exept.de>
parents: 906
diff changeset
   576
    "Modified: / 20.5.1998 / 20:49:26 / cg"
3299
c3f409635112 Added pre-open hooks.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3259
diff changeset
   577
!
c3f409635112 Added pre-open hooks.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3259
diff changeset
   578
c3f409635112 Added pre-open hooks.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3259
diff changeset
   579
preOpenWith:aBuilder
c3f409635112 Added pre-open hooks.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3259
diff changeset
   580
    "this is sent after the dialogs main window is opened.
c3f409635112 Added pre-open hooks.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3259
diff changeset
   581
     If a postOpenBlock was set, evaluate it here."
c3f409635112 Added pre-open hooks.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3259
diff changeset
   582
c3f409635112 Added pre-open hooks.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3259
diff changeset
   583
    builder source ~= self ifTrue:[
c3f409635112 Added pre-open hooks.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3259
diff changeset
   584
        "/ I was opened as dialogInterface for another application;
c3f409635112 Added pre-open hooks.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3259
diff changeset
   585
        "/ inform it that I am ready now
c3f409635112 Added pre-open hooks.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3259
diff changeset
   586
        builder source preOpenDialogWith:aBuilder
c3f409635112 Added pre-open hooks.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3259
diff changeset
   587
    ].
c3f409635112 Added pre-open hooks.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3259
diff changeset
   588
    super preOpenWith:aBuilder
c3f409635112 Added pre-open hooks.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3259
diff changeset
   589
c3f409635112 Added pre-open hooks.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3259
diff changeset
   590
    "Created: / 05-03-2014 / 18:47:29 / Jan Vrany <jan.vrany@fit.cvut.cz>"
429
3311c88f2a0e dialog opening stuff
ca
parents: 366
diff changeset
   591
! !
3311c88f2a0e dialog opening stuff
ca
parents: 366
diff changeset
   592
366
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   593
!SimpleDialog methodsFor:'queries'!
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   594
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   595
defaultWindowType
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   596
    "SimpleDialogs come up modal, by default"
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   597
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   598
    ^ #dialog
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   599
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   600
    "Modified: 14.2.1997 / 22:17:20 / cg"
3205
88b0e4082379 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3204
diff changeset
   601
!
88b0e4082379 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3204
diff changeset
   602
88b0e4082379 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3204
diff changeset
   603
shouldRememberLastExtent
3208
bc25fa88a042 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 3205
diff changeset
   604
    (self accepted) ifFalse:[^ false].
bc25fa88a042 class: UserPreferences
Claus Gittinger <cg@exept.de>
parents: 3205
diff changeset
   605
    ^ super shouldRememberLastExtent
3205
88b0e4082379 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3204
diff changeset
   606
88b0e4082379 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3204
diff changeset
   607
    "Created: / 31-07-2013 / 18:06:12 / cg"
366
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   608
! !
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   609
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   610
!SimpleDialog class methodsFor:'documentation'!
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   611
3205
88b0e4082379 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3204
diff changeset
   612
version
3493
4570371765c6 class: SimpleDialog
Stefan Vogel <sv@exept.de>
parents: 3445
diff changeset
   613
    ^ '$Header$'
3205
88b0e4082379 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3204
diff changeset
   614
!
88b0e4082379 class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 3204
diff changeset
   615
2877
2ab7a4fa2b3d added: #allButOpenFor:interfaceSpec:withBindings:
Claus Gittinger <cg@exept.de>
parents: 2500
diff changeset
   616
version_CVS
3493
4570371765c6 class: SimpleDialog
Stefan Vogel <sv@exept.de>
parents: 3445
diff changeset
   617
    ^ '$Header$'
366
bde54cb70d97 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   618
! !
3099
90ad6c9bb1bd class: SimpleDialog
Claus Gittinger <cg@exept.de>
parents: 2922
diff changeset
   619