WindowBuilder.st
author ca
Mon, 16 Jun 1997 18:53:35 +0200
changeset 600 885bd39df8df
parent 598 52fee9e520b8
child 608 1cd72d2d7e3b
permissions -rw-r--r--
access help key
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
89
claus
parents: 86
diff changeset
     1
"
claus
parents: 86
diff changeset
     2
 COPYRIGHT (c) 1995 by Claus Gittinger
434
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
     3
              All Rights Reserved
89
claus
parents: 86
diff changeset
     4
claus
parents: 86
diff changeset
     5
 This software is furnished under a license and may be used
claus
parents: 86
diff changeset
     6
 only in accordance with the terms of that license and with the
claus
parents: 86
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
claus
parents: 86
diff changeset
     8
 be provided or otherwise made available to, or used by, any
claus
parents: 86
diff changeset
     9
 other person.  No title to or ownership of the software is
claus
parents: 86
diff changeset
    10
 hereby transferred.
claus
parents: 86
diff changeset
    11
"
claus
parents: 86
diff changeset
    12
100
claus
parents: 99
diff changeset
    13
Object subclass:#WindowBuilder
480
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
    14
	instanceVariableNames:'window windowView application bindings visuals focusSequence
600
885bd39df8df access help key
ca
parents: 598
diff changeset
    15
		namedComponents helpKeys componentCreationHook applicationClass
502
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
    16
		keyboardProcessor subCanvasSpecs'
436
b5e56e1f367f checkin from browser
ca
parents: 434
diff changeset
    17
	classVariableNames:''
b5e56e1f367f checkin from browser
ca
parents: 434
diff changeset
    18
	poolDictionaries:''
b5e56e1f367f checkin from browser
ca
parents: 434
diff changeset
    19
	category:'Interface-Support-UI'
66
claus
parents:
diff changeset
    20
!
claus
parents:
diff changeset
    21
claus
parents:
diff changeset
    22
!WindowBuilder class methodsFor:'documentation'!
claus
parents:
diff changeset
    23
89
claus
parents: 86
diff changeset
    24
copyright
claus
parents: 86
diff changeset
    25
"
claus
parents: 86
diff changeset
    26
 COPYRIGHT (c) 1995 by Claus Gittinger
434
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
    27
              All Rights Reserved
89
claus
parents: 86
diff changeset
    28
claus
parents: 86
diff changeset
    29
 This software is furnished under a license and may be used
claus
parents: 86
diff changeset
    30
 only in accordance with the terms of that license and with the
claus
parents: 86
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
claus
parents: 86
diff changeset
    32
 be provided or otherwise made available to, or used by, any
claus
parents: 86
diff changeset
    33
 other person.  No title to or ownership of the software is
claus
parents: 86
diff changeset
    34
 hereby transferred.
claus
parents: 86
diff changeset
    35
"
claus
parents: 86
diff changeset
    36
!
claus
parents: 86
diff changeset
    37
66
claus
parents:
diff changeset
    38
documentation
claus
parents:
diff changeset
    39
"
69
claus
parents: 66
diff changeset
    40
    a no-op class, for systems which do not use the UIBuilder.
66
claus
parents:
diff changeset
    41
    Concrete subclasses know how to create a view (with components) from
claus
parents:
diff changeset
    42
    some interface spec. Currently, an experimantal version of UIBuilder exists,
claus
parents:
diff changeset
    43
    and more may be added in the future (for example, to parse different UI
claus
parents:
diff changeset
    44
    specs - thinking of motifs UIL specs etc).
223
b65dc250db8d documentation
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
    45
b65dc250db8d documentation
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
    46
    [author:]
b65dc250db8d documentation
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
    47
        Claus Gittinger
66
claus
parents:
diff changeset
    48
"
claus
parents:
diff changeset
    49
! !
claus
parents:
diff changeset
    50
claus
parents:
diff changeset
    51
!WindowBuilder methodsFor:'accessing'!
claus
parents:
diff changeset
    52
463
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
    53
addBindings:moreBindings
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
    54
    "used with subDialogs, which provide local bindings.
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
    55
     All bindings from moreBindings overwrite any local bindings."
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
    56
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
    57
    moreBindings notNil ifTrue:[
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
    58
        moreBindings keysAndValuesDo:[:aKey :aValue |
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
    59
            bindings at:aKey put:aValue
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
    60
        ]
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
    61
    ]
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
    62
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
    63
    "Created: 28.2.1997 / 14:14:33 / cg"
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
    64
!
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
    65
100
claus
parents: 99
diff changeset
    66
application
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    67
    "return the application (an ApplicationModel),
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    68
     for which the view is built.
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    69
     This one is supposed to provide the aspects, menus etc."
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    70
100
claus
parents: 99
diff changeset
    71
    ^ application
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    72
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    73
    "Modified: 17.1.1997 / 19:04:40 / cg"
66
claus
parents:
diff changeset
    74
!
claus
parents:
diff changeset
    75
125
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    76
application:anApplicationModel
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    77
    "set the application (an ApplicationModel),
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    78
     for which the view is built.
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    79
     This one is supposed to provide the aspects, menus etc."
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    80
125
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
    81
    application := anApplicationModel
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    82
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    83
    "Modified: 17.1.1997 / 19:04:47 / cg"
66
claus
parents:
diff changeset
    84
!
claus
parents:
diff changeset
    85
422
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
    86
applicationClass:something
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
    87
    "set the value of the instance variable 'applicationClass' (automatically generated)"
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
    88
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
    89
    applicationClass := something.!
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
    90
66
claus
parents:
diff changeset
    91
aspectAt:aSymbol
433
31b52cc4451a *** empty log message ***
ca
parents: 428
diff changeset
    92
    |b|
31b52cc4451a *** empty log message ***
ca
parents: 428
diff changeset
    93
473
9ef922391c70 nil aspect
ca
parents: 467
diff changeset
    94
    aSymbol notNil ifTrue:[
9ef922391c70 nil aspect
ca
parents: 467
diff changeset
    95
        bindings notNil ifTrue:[
9ef922391c70 nil aspect
ca
parents: 467
diff changeset
    96
            b := bindings at:aSymbol ifAbsent:nil.
9ef922391c70 nil aspect
ca
parents: 467
diff changeset
    97
            b notNil ifTrue:[^ b].
9ef922391c70 nil aspect
ca
parents: 467
diff changeset
    98
        ].
434
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
    99
473
9ef922391c70 nil aspect
ca
parents: 467
diff changeset
   100
        application notNil ifTrue:[
577
818d08c9aef1 add trace messages:
ca
parents: 502
diff changeset
   101
            Object messageNotUnderstoodSignal handle:[:ex |
818d08c9aef1 add trace messages:
ca
parents: 502
diff changeset
   102
                Transcript showCR:'not understood: ' , aSymbol.
818d08c9aef1 add trace messages:
ca
parents: 502
diff changeset
   103
            ] do:[
473
9ef922391c70 nil aspect
ca
parents: 467
diff changeset
   104
                ^ application aspectFor:aSymbol
9ef922391c70 nil aspect
ca
parents: 467
diff changeset
   105
            ]
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   106
        ]
433
31b52cc4451a *** empty log message ***
ca
parents: 428
diff changeset
   107
    ].
31b52cc4451a *** empty log message ***
ca
parents: 428
diff changeset
   108
    ^ nil
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   109
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   110
    "Modified: 17.1.1997 / 19:28:32 / cg"
66
claus
parents:
diff changeset
   111
!
claus
parents:
diff changeset
   112
125
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   113
aspectAt:aSymbol put:aModel
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   114
    bindings isNil ifTrue:[
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   115
        bindings := IdentityDictionary new
125
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   116
    ].
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   117
    ^ bindings at:aSymbol put:aModel
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   118
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   119
    "Modified: 17.1.1997 / 19:28:37 / cg"
100
claus
parents: 99
diff changeset
   120
!
claus
parents: 99
diff changeset
   121
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   122
bindingAt:aSymbol
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   123
    bindings notNil ifTrue:[
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   124
        ^ bindings at:aSymbol ifAbsent:nil.
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   125
    ].
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   126
    ^ nil
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   127
!
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   128
100
claus
parents: 99
diff changeset
   129
bindings
claus
parents: 99
diff changeset
   130
    ^ bindings
claus
parents: 99
diff changeset
   131
!
claus
parents: 99
diff changeset
   132
claus
parents: 99
diff changeset
   133
bindings:aDictionary
claus
parents: 99
diff changeset
   134
    bindings := aDictionary
claus
parents: 99
diff changeset
   135
!
claus
parents: 99
diff changeset
   136
125
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   137
componentAt:name
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   138
    namedComponents isNil ifTrue:[^ nil].
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   139
    ^ namedComponents at:name asSymbol ifAbsent:nil
125
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   140
!
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   141
100
claus
parents: 99
diff changeset
   142
componentAt:name put:aComponent
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   143
    namedComponents isNil ifTrue:[
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   144
        namedComponents := IdentityDictionary new.
100
claus
parents: 99
diff changeset
   145
    ].
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   146
    namedComponents at:name asSymbol put:aComponent
100
claus
parents: 99
diff changeset
   147
!
claus
parents: 99
diff changeset
   148
410
2d21748e0d9c checkin from browser
ca
parents: 408
diff changeset
   149
componentCreationHook:something
2d21748e0d9c checkin from browser
ca
parents: 408
diff changeset
   150
    "set the value of the instance variable 'componentCreationHook' (automatically generated)"
2d21748e0d9c checkin from browser
ca
parents: 408
diff changeset
   151
2d21748e0d9c checkin from browser
ca
parents: 408
diff changeset
   152
    componentCreationHook := something.!
2d21748e0d9c checkin from browser
ca
parents: 408
diff changeset
   153
125
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   154
focusSequence 
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   155
    ^ focusSequence
66
claus
parents:
diff changeset
   156
!
claus
parents:
diff changeset
   157
600
885bd39df8df access help key
ca
parents: 598
diff changeset
   158
helpKeyFor:aComponent
885bd39df8df access help key
ca
parents: 598
diff changeset
   159
    |v key|
885bd39df8df access help key
ca
parents: 598
diff changeset
   160
885bd39df8df access help key
ca
parents: 598
diff changeset
   161
    helpKeys isNil ifTrue:[^ nil].
595
15d80dd3d974 help text
ca
parents: 587
diff changeset
   162
600
885bd39df8df access help key
ca
parents: 598
diff changeset
   163
    v := aComponent.
885bd39df8df access help key
ca
parents: 598
diff changeset
   164
    [v notNil] whileTrue:[
885bd39df8df access help key
ca
parents: 598
diff changeset
   165
        (key := helpKeys at:v ifAbsent:nil) notNil ifTrue:[
885bd39df8df access help key
ca
parents: 598
diff changeset
   166
            ^ key
885bd39df8df access help key
ca
parents: 598
diff changeset
   167
        ].
885bd39df8df access help key
ca
parents: 598
diff changeset
   168
        v := v superView
885bd39df8df access help key
ca
parents: 598
diff changeset
   169
    ].
595
15d80dd3d974 help text
ca
parents: 587
diff changeset
   170
    ^ nil
600
885bd39df8df access help key
ca
parents: 598
diff changeset
   171
!
595
15d80dd3d974 help text
ca
parents: 587
diff changeset
   172
600
885bd39df8df access help key
ca
parents: 598
diff changeset
   173
helpKeyFor:aComponent put:aKey
595
15d80dd3d974 help text
ca
parents: 587
diff changeset
   174
600
885bd39df8df access help key
ca
parents: 598
diff changeset
   175
    aKey isNil ifTrue:[
885bd39df8df access help key
ca
parents: 598
diff changeset
   176
        helpKeys isNil ifFalse:[
885bd39df8df access help key
ca
parents: 598
diff changeset
   177
            helpKeys removeKey:aComponent ifAbsent:nil
885bd39df8df access help key
ca
parents: 598
diff changeset
   178
        ]
885bd39df8df access help key
ca
parents: 598
diff changeset
   179
    ] ifFalse:[
885bd39df8df access help key
ca
parents: 598
diff changeset
   180
        helpKeys isNil ifTrue:[
885bd39df8df access help key
ca
parents: 598
diff changeset
   181
            helpKeys := IdentityDictionary new
885bd39df8df access help key
ca
parents: 598
diff changeset
   182
        ].
885bd39df8df access help key
ca
parents: 598
diff changeset
   183
        helpKeys at:aComponent put:aKey
885bd39df8df access help key
ca
parents: 598
diff changeset
   184
    ]
595
15d80dd3d974 help text
ca
parents: 587
diff changeset
   185
15d80dd3d974 help text
ca
parents: 587
diff changeset
   186
!
15d80dd3d974 help text
ca
parents: 587
diff changeset
   187
477
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   188
keyboardProcessor
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   189
    keyboardProcessor isNil ifTrue:[
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   190
        keyboardProcessor := KeyboardProcessor new    
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   191
    ].
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   192
    ^ keyboardProcessor
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   193
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   194
    "Created: 3.3.1997 / 18:31:37 / cg"
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   195
    "Modified: 3.3.1997 / 18:32:27 / cg"
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   196
!
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   197
86
claus
parents: 80
diff changeset
   198
namedComponents
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   199
    ^ namedComponents
86
claus
parents: 80
diff changeset
   200
!
claus
parents: 80
diff changeset
   201
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   202
source
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   203
    "same as #application, for ST-80 compatibility"
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   204
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   205
    ^ application
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   206
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   207
    "Created: 17.1.1997 / 19:03:51 / cg"
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   208
!
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   209
125
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   210
source:anApplicationModel
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   211
    "same as #application:, for ST-80 compatibility"
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   212
125
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   213
    application := anApplicationModel
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   214
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   215
    "Modified: 17.1.1997 / 19:03:57 / cg"
125
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   216
!
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   217
502
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   218
subCanvasAt:majorKey at:minorKey
586
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   219
    "get the subCanvas specification from major and minor key
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   220
    "
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   221
    |spec cls dict dkey|
502
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   222
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   223
    subCanvasSpecs notNil ifTrue:[
586
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   224
        dkey := majorKey ? #NoMajorKey.
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   225
        dict := subCanvasSpecs at:dkey ifAbsent:nil.
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   226
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   227
        dict notNil ifTrue:[
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   228
            spec := dict at:minorKey ifAbsent:nil.
502
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   229
            spec notNil ifTrue:[^ spec].
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   230
        ].
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   231
    ].
586
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   232
502
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   233
    majorKey isNil ifTrue:[
586
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   234
        spec := self safelyPerform:#specificationFor: with:minorKey.
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   235
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   236
        spec isNil ifTrue:[
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   237
            spec := self safelyPerform:minorKey
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   238
        ]
502
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   239
    ] ifFalse:[
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   240
        cls := Smalltalk at:majorKey ifAbsent:nil.
586
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   241
        (cls notNil and:[cls respondsTo:minorKey]) ifTrue:[
502
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   242
            spec := cls perform:minorKey
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   243
        ]
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   244
    ].
586
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   245
  ^ spec
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   246
502
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   247
!
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   248
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   249
subCanvasAt:majorKey at:minorKey put:aSpec
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   250
    |dict key|
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   251
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   252
    key := majorKey ? #NoMajorKey.
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   253
    dict := subCanvasSpecs at:key ifAbsent:nil.
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   254
    dict isNil ifTrue:[
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   255
        dict := IdentityDictionary new.
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   256
        subCanvasSpecs at:key put:dict
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   257
    ].
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   258
    dict at:minorKey put:aSpec
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   259
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   260
!
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   261
475
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   262
visualAt:name
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   263
    visuals isNil ifTrue:[^ nil].
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   264
    ^ visuals at:name asSymbol ifAbsent:nil
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   265
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   266
    "Created: 3.3.1997 / 16:24:17 / cg"
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   267
!
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   268
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   269
visualAt:name put:aVisual
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   270
    visuals isNil ifTrue:[
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   271
        visuals := IdentityDictionary new.
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   272
    ].
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   273
    visuals at:name asSymbol put:aVisual
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   274
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   275
    "Created: 3.3.1997 / 16:24:41 / cg"
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   276
!
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   277
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   278
visuals
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   279
    ^ visuals
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   280
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   281
    "Created: 3.3.1997 / 16:24:00 / cg"
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   282
!
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   283
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   284
visuals:aDictionary
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   285
    visuals := aDictionary
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   286
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   287
    "Created: 3.3.1997 / 16:24:06 / cg"
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   288
!
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   289
125
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   290
window
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   291
    "return the top window (view), for which an interface
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   292
     is (being) built"
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   293
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   294
    ^ window
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   295
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   296
    "Modified: 17.1.1997 / 19:30:00 / cg"
125
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   297
!
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   298
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   299
window:aView
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   300
    "set the top window (view), for which an interface
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   301
     is (being) built"
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   302
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   303
    window := aView
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   304
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   305
    "Modified: 17.1.1997 / 19:30:22 / cg"
66
claus
parents:
diff changeset
   306
!
claus
parents:
diff changeset
   307
claus
parents:
diff changeset
   308
windowGroup
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   309
self halt.
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   310
    ^ window windowGroup
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   311
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   312
    "Modified: 17.1.1997 / 19:30:26 / cg"
66
claus
parents:
diff changeset
   313
! !
claus
parents:
diff changeset
   314
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   315
!WindowBuilder methodsFor:'building'!
66
claus
parents:
diff changeset
   316
125
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   317
buildFromSpec:aSpec
176
3890e2b312e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 132
diff changeset
   318
    ^ self subclassResponsibility
408
93582137e1c7 tabable
ca
parents: 374
diff changeset
   319
!
93582137e1c7 tabable
ca
parents: 374
diff changeset
   320
93582137e1c7 tabable
ca
parents: 374
diff changeset
   321
makeTabable:aComponent
93582137e1c7 tabable
ca
parents: 374
diff changeset
   322
    focusSequence isNil ifTrue:[
93582137e1c7 tabable
ca
parents: 374
diff changeset
   323
        focusSequence := OrderedCollection new.
93582137e1c7 tabable
ca
parents: 374
diff changeset
   324
    ].
93582137e1c7 tabable
ca
parents: 374
diff changeset
   325
    focusSequence add:aComponent
66
claus
parents:
diff changeset
   326
! !
100
claus
parents: 99
diff changeset
   327
586
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   328
!WindowBuilder methodsFor:'message sending'!
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   329
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   330
safelyPerform:aSelector
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   331
    "send the message aSelector to the receiver self or application;
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   332
     the result returned from the send or nil is returned
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   333
    "
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   334
    |res|
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   335
595
15d80dd3d974 help text
ca
parents: 587
diff changeset
   336
    aSelector isSymbol ifTrue:[
15d80dd3d974 help text
ca
parents: 587
diff changeset
   337
        Object messageNotUnderstoodSignal handle:[:ex |
15d80dd3d974 help text
ca
parents: 587
diff changeset
   338
        ] do:[
15d80dd3d974 help text
ca
parents: 587
diff changeset
   339
            (res := self perform:aSelector) notNil ifTrue:[^ res]
15d80dd3d974 help text
ca
parents: 587
diff changeset
   340
        ].
15d80dd3d974 help text
ca
parents: 587
diff changeset
   341
15d80dd3d974 help text
ca
parents: 587
diff changeset
   342
        application notNil ifTrue:[
15d80dd3d974 help text
ca
parents: 587
diff changeset
   343
            Object messageNotUnderstoodSignal handle:[:ex |
15d80dd3d974 help text
ca
parents: 587
diff changeset
   344
            ] do:[
15d80dd3d974 help text
ca
parents: 587
diff changeset
   345
                (res := application perform:aSelector) notNil ifTrue:[^ res]
15d80dd3d974 help text
ca
parents: 587
diff changeset
   346
            ]
586
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   347
        ]
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   348
    ].
595
15d80dd3d974 help text
ca
parents: 587
diff changeset
   349
  ^ nil
586
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   350
!
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   351
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   352
safelyPerform:aSelector with:anArgument
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   353
    "send the one-arg-message aSelector to the receiver self or application;
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   354
     the result returned from the send or nil is returned
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   355
    "
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   356
    |res|
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   357
595
15d80dd3d974 help text
ca
parents: 587
diff changeset
   358
    aSelector isSymbol ifTrue:[
15d80dd3d974 help text
ca
parents: 587
diff changeset
   359
        Object messageNotUnderstoodSignal handle:[:ex |
15d80dd3d974 help text
ca
parents: 587
diff changeset
   360
        ] do:[
15d80dd3d974 help text
ca
parents: 587
diff changeset
   361
            (res := self perform:aSelector with:anArgument) notNil ifTrue:[^ res]
15d80dd3d974 help text
ca
parents: 587
diff changeset
   362
        ].
15d80dd3d974 help text
ca
parents: 587
diff changeset
   363
15d80dd3d974 help text
ca
parents: 587
diff changeset
   364
        application notNil ifTrue:[
15d80dd3d974 help text
ca
parents: 587
diff changeset
   365
            Object messageNotUnderstoodSignal handle:[:ex |
15d80dd3d974 help text
ca
parents: 587
diff changeset
   366
            ] do:[
15d80dd3d974 help text
ca
parents: 587
diff changeset
   367
                (res := application perform:aSelector with:anArgument) notNil ifTrue:[^ res]
15d80dd3d974 help text
ca
parents: 587
diff changeset
   368
            ]
586
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   369
        ]
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   370
    ].
595
15d80dd3d974 help text
ca
parents: 587
diff changeset
   371
  ^ nil
586
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   372
! !
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   373
422
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   374
!WindowBuilder methodsFor:'spec creation aspect fetch'!
100
claus
parents: 99
diff changeset
   375
374
5be095a54715 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
   376
actionFor:aKey
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   377
    "return an action for aKey. This is invoked during window building
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   378
     (by the builder) to ask for an ActionButtons actionBlock.
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   379
     Here, first the local bindings are searched, then the application and
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   380
     finally the applications class is asked for a corresponding action.
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   381
     The returned object is typically a block."
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   382
434
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   383
    |b|
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   384
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   385
    bindings notNil ifTrue:[
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   386
        b := bindings at:aKey ifAbsent:nil.
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   387
        b notNil ifTrue:[^ b].
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   388
    ].
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   389
374
5be095a54715 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
   390
    application notNil ifTrue:[
577
818d08c9aef1 add trace messages:
ca
parents: 502
diff changeset
   391
        Object messageNotUnderstoodSignal handle:[:ex |
818d08c9aef1 add trace messages:
ca
parents: 502
diff changeset
   392
            Transcript showCR:'not understood: ' , aKey.
818d08c9aef1 add trace messages:
ca
parents: 502
diff changeset
   393
        ] do:[
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   394
            ^ application actionFor:aKey
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   395
        ]
374
5be095a54715 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
   396
    ].
422
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   397
    applicationClass notNil ifTrue:[
424
098447d8c614 checkin from browser
ca
parents: 423
diff changeset
   398
        (applicationClass respondsTo:#actionFor:) ifTrue:[
098447d8c614 checkin from browser
ca
parents: 423
diff changeset
   399
            ^ applicationClass actionFor:aKey
098447d8c614 checkin from browser
ca
parents: 423
diff changeset
   400
        ]
422
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   401
    ].
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   402
    ^ []
374
5be095a54715 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
   403
5be095a54715 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
   404
    "Created: 17.1.1997 / 21:08:22 / cg"
5be095a54715 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
   405
!
5be095a54715 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
   406
5be095a54715 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
   407
aspectFor:aKey
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   408
    "return a model for aKey. This is invoked during window building
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   409
     (by the builder) to ask for an Editfields, a Toggles etc. model.
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   410
     Here, first the local bindings are searched, then the application and
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   411
     finally the applications class is asked for a corresponding action.
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   412
     The returned object is typically a valueHolder."
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   413
434
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   414
    |b|
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   415
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   416
    bindings notNil ifTrue:[
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   417
        b := bindings at:aKey ifAbsent:nil.
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   418
        b notNil ifTrue:[^ b].
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   419
    ].
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   420
374
5be095a54715 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
   421
    application notNil ifTrue:[
577
818d08c9aef1 add trace messages:
ca
parents: 502
diff changeset
   422
        Object messageNotUnderstoodSignal handle:[:ex |
818d08c9aef1 add trace messages:
ca
parents: 502
diff changeset
   423
            Transcript showCR:'not understood: ' , aKey.
818d08c9aef1 add trace messages:
ca
parents: 502
diff changeset
   424
        ] do:[
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   425
            ^ application aspectFor:aKey
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   426
        ]
374
5be095a54715 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
   427
    ].
422
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   428
    applicationClass notNil ifTrue:[
424
098447d8c614 checkin from browser
ca
parents: 423
diff changeset
   429
        (applicationClass respondsTo:#aspectFor:) ifTrue:[
098447d8c614 checkin from browser
ca
parents: 423
diff changeset
   430
            ^ applicationClass aspectFor:aKey
098447d8c614 checkin from browser
ca
parents: 423
diff changeset
   431
        ]
422
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   432
    ].
374
5be095a54715 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
   433
    ^ self aspectAt:aKey
5be095a54715 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
   434
5be095a54715 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
   435
    "Created: 17.1.1997 / 21:06:16 / cg"
5be095a54715 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
   436
!
5be095a54715 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
   437
423
64c2d739caf1 *** empty log message ***
ca
parents: 422
diff changeset
   438
componentFor:aKey
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   439
    "return a component for aKey. This is invoked during window building
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   440
     (by the builder) to ask for an ArbitraryComponents view.
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   441
     Here, first the local bindings are searched, then the application and
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   442
     finally the applications class is asked for a corresponding action.
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   443
     The returned object is typically a view."
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   444
423
64c2d739caf1 *** empty log message ***
ca
parents: 422
diff changeset
   445
    |cls|
64c2d739caf1 *** empty log message ***
ca
parents: 422
diff changeset
   446
64c2d739caf1 *** empty log message ***
ca
parents: 422
diff changeset
   447
    application notNil ifTrue:[
577
818d08c9aef1 add trace messages:
ca
parents: 502
diff changeset
   448
        Object messageNotUnderstoodSignal handle:[:ex |
818d08c9aef1 add trace messages:
ca
parents: 502
diff changeset
   449
            Transcript showCR:'not understood: ' , aKey.
818d08c9aef1 add trace messages:
ca
parents: 502
diff changeset
   450
        ] do:[
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   451
            ^ application componentFor:aKey
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   452
        ]
423
64c2d739caf1 *** empty log message ***
ca
parents: 422
diff changeset
   453
    ].
64c2d739caf1 *** empty log message ***
ca
parents: 422
diff changeset
   454
    applicationClass notNil ifTrue:[
424
098447d8c614 checkin from browser
ca
parents: 423
diff changeset
   455
        (applicationClass respondsTo:#componentFor:) ifTrue:[
098447d8c614 checkin from browser
ca
parents: 423
diff changeset
   456
            ^ applicationClass componentFor:aKey
098447d8c614 checkin from browser
ca
parents: 423
diff changeset
   457
        ]
423
64c2d739caf1 *** empty log message ***
ca
parents: 422
diff changeset
   458
    ].
64c2d739caf1 *** empty log message ***
ca
parents: 422
diff changeset
   459
    ^ self aspectAt:aKey
64c2d739caf1 *** empty log message ***
ca
parents: 422
diff changeset
   460
64c2d739caf1 *** empty log message ***
ca
parents: 422
diff changeset
   461
!
64c2d739caf1 *** empty log message ***
ca
parents: 422
diff changeset
   462
422
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   463
labelFor:aKey
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   464
    "return a label for aKey. This is invoked during window building
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   465
     (by the builder) to ask for a ???'s label.
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   466
     Here, first the local bindings are searched, then the application and
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   467
     finally the applications class is asked for a corresponding action.
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   468
     The returned object is typically a string."
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   469
422
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   470
    |cls|
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   471
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   472
    application notNil ifTrue:[
577
818d08c9aef1 add trace messages:
ca
parents: 502
diff changeset
   473
        Object messageNotUnderstoodSignal handle:[:ex |
818d08c9aef1 add trace messages:
ca
parents: 502
diff changeset
   474
            Transcript showCR:'not understood: ' , aKey.
818d08c9aef1 add trace messages:
ca
parents: 502
diff changeset
   475
        ] do:[
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   476
            ^ application labelFor:aKey
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   477
        ]
422
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   478
    ].
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   479
    applicationClass notNil ifTrue:[
424
098447d8c614 checkin from browser
ca
parents: 423
diff changeset
   480
        (applicationClass respondsTo:#labelFor:) ifTrue:[
098447d8c614 checkin from browser
ca
parents: 423
diff changeset
   481
            ^ applicationClass labelFor:aKey
098447d8c614 checkin from browser
ca
parents: 423
diff changeset
   482
        ]
422
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   483
    ].
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   484
    ^ self aspectAt:aKey
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   485
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   486
!
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   487
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   488
listFor:aKey
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   489
    "return a list for aKey. This is invoked during window building
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   490
     (by the builder) to ask for a ???'s label.
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   491
     Here, first the local bindings are searched, then the application and
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   492
     finally the applications class is asked for a corresponding action.
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   493
     The returned object is typically a list."
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   494
422
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   495
    application notNil ifTrue:[
577
818d08c9aef1 add trace messages:
ca
parents: 502
diff changeset
   496
        Object messageNotUnderstoodSignal handle:[:ex |
818d08c9aef1 add trace messages:
ca
parents: 502
diff changeset
   497
            Transcript showCR:'not understood: ' , aKey.
818d08c9aef1 add trace messages:
ca
parents: 502
diff changeset
   498
        ] do:[
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   499
            ^ application listFor:aKey
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   500
        ]
422
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   501
    ].
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   502
    applicationClass notNil ifTrue:[
424
098447d8c614 checkin from browser
ca
parents: 423
diff changeset
   503
        (applicationClass respondsTo:#listFor:) ifTrue:[
098447d8c614 checkin from browser
ca
parents: 423
diff changeset
   504
            ^ applicationClass listFor:aKey
098447d8c614 checkin from browser
ca
parents: 423
diff changeset
   505
        ]
422
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   506
    ].
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   507
    ^ self aspectAt:aKey
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   508
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   509
    "Created: 17.1.1997 / 21:08:45 / cg"
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   510
! !
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   511
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   512
!WindowBuilder methodsFor:'spec creation callbacks'!
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   513
100
claus
parents: 99
diff changeset
   514
createdComponent:aView forSpec:spec
410
2d21748e0d9c checkin from browser
ca
parents: 408
diff changeset
   515
    componentCreationHook notNil ifTrue:[
2d21748e0d9c checkin from browser
ca
parents: 408
diff changeset
   516
        componentCreationHook value:aView value:spec value:self
2d21748e0d9c checkin from browser
ca
parents: 408
diff changeset
   517
    ]
100
claus
parents: 99
diff changeset
   518
claus
parents: 99
diff changeset
   519
    "Modified: 5.9.1995 / 21:42:54 / claus"
claus
parents: 99
diff changeset
   520
! !
claus
parents: 99
diff changeset
   521
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   522
!WindowBuilder methodsFor:'startup'!
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   523
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   524
closeRequest
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   525
    window destroy
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   526
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   527
    "Modified: 17.1.1997 / 19:30:32 / cg"
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   528
!
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   529
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   530
open
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   531
    "open my topView, as previously created"
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   532
477
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   533
    |type|
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   534
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   535
    application isNil ifTrue:[
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   536
        type := #normal
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   537
    ] ifFalse:[
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   538
        type := application defaultWindowType
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   539
    ].
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   540
    self 
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   541
        openWithExtent:nil
477
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   542
        andType:type
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   543
477
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   544
    "Modified: 3.3.1997 / 19:43:57 / cg"
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   545
!
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   546
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   547
openAt:aPoint
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   548
    "open my topView at some location"
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   549
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   550
    self 
467
8fb5fa11956c better dialog opening
Claus Gittinger <cg@exept.de>
parents: 463
diff changeset
   551
        openAt:aPoint 
8fb5fa11956c better dialog opening
Claus Gittinger <cg@exept.de>
parents: 463
diff changeset
   552
        withExtent:nil  
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   553
        andType:(application defaultWindowType)
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   554
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   555
    "Created: 14.2.1997 / 20:21:57 / cg"
467
8fb5fa11956c better dialog opening
Claus Gittinger <cg@exept.de>
parents: 463
diff changeset
   556
    "Modified: 28.2.1997 / 22:50:29 / cg"
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   557
!
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   558
436
b5e56e1f367f checkin from browser
ca
parents: 434
diff changeset
   559
openAt:origin withExtent:ext andType:type
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   560
    "open my window, as previously created, optionally defining the
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   561
     windows origin and/or extent. 
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   562
     The type argument may be #dialog or #normal, and specifies if the view 
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   563
     should be opened as a modal view, blocking interaction to the currently 
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   564
     active view, or as a normal view."
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   565
480
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   566
    |mainSubView|
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   567
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   568
    origin notNil ifTrue:[
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   569
        window origin:origin
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   570
    ].
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   571
    ext notNil ifTrue:[
480
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   572
        window extent:ext.
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   573
    ] ifFalse:[
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   574
        type == #dialog ifTrue:[
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   575
            window fixSize
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   576
        ]
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   577
    ].
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   578
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   579
    (windowView notNil and:[windowView ~~ window]) ifTrue:[
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   580
        windowView extent:(window extent).
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   581
    ].
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   582
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   583
    type == #dialog ifTrue:[
467
8fb5fa11956c better dialog opening
Claus Gittinger <cg@exept.de>
parents: 463
diff changeset
   584
        window fixPosition:(window device pointerPosition - window positionOffset).
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   585
        window openModal.
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   586
        ^ self
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   587
    ].
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   588
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   589
    type == #normal ifTrue:[
480
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   590
        window isNil ifTrue:[
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   591
            self setupWindowFor:(StandardSystemView new).
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   592
        ].
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   593
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   594
        window open.
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   595
        ^ self
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   596
    ].
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   597
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   598
    type == #popUp ifTrue:[
467
8fb5fa11956c better dialog opening
Claus Gittinger <cg@exept.de>
parents: 463
diff changeset
   599
        window fixPosition:(window device pointerPosition).
8fb5fa11956c better dialog opening
Claus Gittinger <cg@exept.de>
parents: 463
diff changeset
   600
        window openAsPopUp.
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   601
        ^ self
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   602
    ].
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   603
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   604
    "
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   605
     if ST-80 supports more types - these may be added later
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   606
    "
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   607
    self halt:'unimplemented'
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   608
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   609
    "Created: 14.2.1997 / 20:22:24 / cg"
480
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   610
    "Modified: 3.3.1997 / 22:27:52 / cg"
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   611
!
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   612
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   613
openDialog
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   614
    "open my topView, as previously created as a modal view,
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   615
     blocking interaction to the currently active view."
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   616
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   617
    self 
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   618
        openWithExtent:nil 
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   619
        andType:#dialog
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   620
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   621
    "Modified: 17.1.1997 / 19:59:29 / cg"
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   622
!
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   623
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   624
openDialogAt:aPoint withExtent:ext
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   625
    "open my topView, as previously created as a modal view,
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   626
     blocking interaction to the currently active view."
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   627
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   628
    self 
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   629
        openAt:aPoint withExtent:ext 
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   630
        andType:#dialog
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   631
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   632
    "Modified: 17.1.1997 / 19:59:36 / cg"
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   633
    "Created: 14.2.1997 / 20:24:19 / cg"
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   634
!
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   635
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   636
openDialogWithExtent:ext
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   637
    "open my topView, as previously created as a modal view,
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   638
     blocking interaction to the currently active view."
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   639
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   640
    self 
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   641
        openWithExtent:ext 
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   642
        andType:#dialog
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   643
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   644
    "Modified: 17.1.1997 / 19:59:36 / cg"
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   645
!
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   646
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   647
openPopUpAt:aPoint
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   648
    "open my topView, as previously created as a popUp view,
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   649
     blocking interaction to the currently active view."
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   650
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   651
    self 
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   652
        openAt:aPoint withExtent:nil 
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   653
        andType:#popUp
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   654
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   655
    "Modified: 17.1.1997 / 19:59:29 / cg"
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   656
    "Created: 14.2.1997 / 20:24:38 / cg"
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   657
!
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   658
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   659
openPopUpIn:aRectangle
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   660
    "open my topView, as previously created as a popUp view,
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   661
     blocking interaction to the currently active view."
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   662
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   663
    self 
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   664
        openWithExtent:nil 
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   665
        andType:#popUp
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   666
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   667
    "Modified: 17.1.1997 / 19:59:29 / cg"
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   668
    "Created: 17.1.1997 / 20:01:24 / cg"
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   669
!
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   670
587
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
   671
openWindowAt:aPoint
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
   672
    "open my topView at some location"
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
   673
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
   674
    self openAt:aPoint
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
   675
!
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
   676
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
   677
openWindowAt:origin withExtent:ext andType:type
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
   678
    "open my window, as previously created, optionally defining the
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
   679
     windows origin and/or extent. 
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
   680
     The type argument may be #dialog or #normal, and specifies if the view 
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
   681
     should be opened as a modal view, blocking interaction to the currently 
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
   682
     active view, or as a normal view."
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
   683
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
   684
    ^ self openAt:origin withExtent:ext andType:type
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
   685
!
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
   686
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   687
openWithExtent:aPoint
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   688
    "open my topView, as previously created, but override
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   689
     the extent."
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   690
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   691
    self 
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   692
        openWithExtent:aPoint 
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   693
        andType:(application defaultWindowType)
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   694
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   695
    "Modified: 17.1.1997 / 19:58:48 / cg"
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   696
!
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   697
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   698
openWithExtent:ext andType:type
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   699
    "open my window, as previously created. The type argument
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   700
     may be #dialog or #normal, and specifies if the view should
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   701
     be opened as a modal view, blocking interaction to the currently 
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   702
     active view, or as a normal view."
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   703
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   704
    ^ self openAt:nil withExtent:ext andType:type
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   705
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   706
    "Modified: 14.2.1997 / 20:22:47 / cg"
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   707
! !
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   708
132
0a8fe342ed91 version method at the end
Claus Gittinger <cg@exept.de>
parents: 125
diff changeset
   709
!WindowBuilder class methodsFor:'documentation'!
0a8fe342ed91 version method at the end
Claus Gittinger <cg@exept.de>
parents: 125
diff changeset
   710
0a8fe342ed91 version method at the end
Claus Gittinger <cg@exept.de>
parents: 125
diff changeset
   711
version
600
885bd39df8df access help key
ca
parents: 598
diff changeset
   712
    ^ '$Header: /cvs/stx/stx/libview2/WindowBuilder.st,v 1.39 1997-06-16 16:53:35 ca Exp $'
132
0a8fe342ed91 version method at the end
Claus Gittinger <cg@exept.de>
parents: 125
diff changeset
   713
! !