WinBuilder.st
author tz
Mon, 29 Jun 1998 16:45:52 +0200
changeset 988 daebc00918d4
parent 981 6a9c975543ad
child 1010 2bd1011586d9
permissions -rw-r--r--
images placed here
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
855
baf65c4e2bed added #labelAt: / labelAt:put: for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 848
diff changeset
    14
	instanceVariableNames:'window application bindings visuals labels focusSequence
baf65c4e2bed added #labelAt: / labelAt:put: for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 848
diff changeset
    15
		namedComponents helpKeys componentCreationHook applicationClass
baf65c4e2bed added #labelAt: / labelAt:put: for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 848
diff changeset
    16
		keyboardProcessor subCanvasSpecs'
717
b89142a61d05 #aspectAt: must also ask class.
Claus Gittinger <cg@exept.de>
parents: 716
diff changeset
    17
	classVariableNames:'StopOnError'
436
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
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
    42
    some interface spec.
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
    43
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
    44
    The order of the lookup sequence to access an aspect is defined:
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
    45
        application
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
    46
        application class
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
    47
        additional  class (applicationClass).
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
    48
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
    49
    Methods to access any aspect are located in the category
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
    50
    'spec creation aspect fetch'.
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
    51
735
4b66677877e8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
    52
    Currently, an experimantal version of UIBuilder exists,
66
claus
parents:
diff changeset
    53
    and more may be added in the future (for example, to parse different UI
735
4b66677877e8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
    54
    specs - thinking of motifs UIL specs, Windows DialogSpecs etc.).
223
b65dc250db8d documentation
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
    55
774
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    56
    [instance variables:]
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    57
        window          <View>
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    58
                                the topView into which the components
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    59
                                are (have been) created from the specification
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    60
                                
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    61
        application     <ApplicationModel>
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    62
                                the application object (typically an instance
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    63
                                of a subclass of ApplicationModel).
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    64
                                That one is usually supposed to provide
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    65
                                valueHolders for aspects, action methods
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    66
                                menuSpecs and possibly more windowSpecs.
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    67
                                Usually means, that most of those can also be
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    68
                                provided to the builder via a set of bindings,
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    69
                                which overrides those.
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    70
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    71
        bindings        <Dictionary>
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    72
                                can be set (or filled) with bindings for
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    73
                                aspects to be used when setting up the models
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    74
                                for components. Useful either to overwrite
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    75
                                corresponding appModel aspects or if the appModel
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    76
                                does not want to procide those.
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    77
                                (for example, to open a dialog and provide the
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    78
                                 bindings in a dictionary - as opposed to
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    79
                                 providing them via aspect methods)
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    80
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    81
        visuals                 not yet used - for compatibility
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    82
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    83
        focusSequence   <Collection>
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    84
                                maintained during the build process;
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    85
                                contains tabable components.
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    86
                                This will be replaced by a more intelligent
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    87
                                mechanism in the near future.
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    88
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    89
        namedComponents <Dictionary>
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    90
                                contains name->component associations for
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    91
                                all components which have a non-nil component
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    92
                                name. Created during the build process.
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    93
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    94
        helpKeys                not yet used - for compatibility
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    95
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    96
        componentCreationHook <BlockOrNil>
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    97
                                can be set before the components are built
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    98
                                from the spec, to provide an arbitrary
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
    99
                                callBacks-hook which will be invoked after
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   100
                                a component has been created from a spec. 
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   101
                                The UIPainter uses this to maintain its
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   102
                                component<->spec assiciations.
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   103
                                Can be set by the app, to catch creation of
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   104
                                components and fiddle around during the
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   105
                                creation process (change extents, colors or whatever)
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   106
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   107
        applicationClass <ClassOrNil>
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   108
                                can be set to provide an additional class which
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   109
                                is asked for aspects during the build process.
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   110
                                If not set, the app is asked, which itself asks
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   111
                                its class.
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   112
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   113
        keyboardProcessor       not yet used - for compatibility
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   114
                                Will eventually takeover the functionality
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   115
                                of the focusSequence, shortcuts & provide a hook
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   116
                                for the app.
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   117
        
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   118
        subCanvasSpecs <Dictionary>
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   119
                                can be set by the app to provide subcanvas
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   120
                                specs (much like the bindings dictionary)
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   121
223
b65dc250db8d documentation
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
   122
    [author:]
b65dc250db8d documentation
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
   123
        Claus Gittinger
66
claus
parents:
diff changeset
   124
"
claus
parents:
diff changeset
   125
! !
claus
parents:
diff changeset
   126
974
4b045b9affb3 category change
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
   127
!WindowBuilder methodsFor:'ST-80 compatibility'!
4b045b9affb3 category change
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
   128
4b045b9affb3 category change
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
   129
source
4b045b9affb3 category change
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
   130
    "same as #application, for ST-80 compatibility"
4b045b9affb3 category change
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
   131
4b045b9affb3 category change
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
   132
    ^ application
4b045b9affb3 category change
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
   133
4b045b9affb3 category change
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
   134
    "Created: 17.1.1997 / 19:03:51 / cg"
4b045b9affb3 category change
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
   135
!
4b045b9affb3 category change
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
   136
4b045b9affb3 category change
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
   137
source:anApplicationModel
4b045b9affb3 category change
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
   138
    "same as #application:, for ST-80 compatibility"
4b045b9affb3 category change
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
   139
4b045b9affb3 category change
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
   140
    application := anApplicationModel
4b045b9affb3 category change
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
   141
4b045b9affb3 category change
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
   142
    "Modified: 17.1.1997 / 19:03:57 / cg"
4b045b9affb3 category change
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
   143
! !
4b045b9affb3 category change
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
   144
66
claus
parents:
diff changeset
   145
!WindowBuilder methodsFor:'accessing'!
claus
parents:
diff changeset
   146
463
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   147
addBindings:moreBindings
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   148
    "used with subDialogs, which provide local bindings.
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   149
     All bindings from moreBindings overwrite any local bindings."
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   150
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   151
    moreBindings notNil ifTrue:[
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   152
        moreBindings keysAndValuesDo:[:aKey :aValue |
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   153
            bindings at:aKey put:aValue
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   154
        ]
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   155
    ]
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   156
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   157
    "Created: 28.2.1997 / 14:14:33 / cg"
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   158
!
75a8e06ef324 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   159
100
claus
parents: 99
diff changeset
   160
application
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   161
    "return the application (an ApplicationModel),
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   162
     for which the view is built.
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   163
     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
   164
100
claus
parents: 99
diff changeset
   165
    ^ application
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   166
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   167
    "Modified: 17.1.1997 / 19:04:40 / cg"
66
claus
parents:
diff changeset
   168
!
claus
parents:
diff changeset
   169
125
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   170
application:anApplicationModel
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   171
    "set the application (an ApplicationModel),
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   172
     for which the view is built.
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   173
     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
   174
125
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   175
    application := anApplicationModel
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   176
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   177
    "Modified: 17.1.1997 / 19:04:47 / cg"
66
claus
parents:
diff changeset
   178
!
claus
parents:
diff changeset
   179
422
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   180
applicationClass:something
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   181
    "set the value of the instance variable 'applicationClass' (automatically generated)"
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   182
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   183
    applicationClass := something.!
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   184
66
claus
parents:
diff changeset
   185
aspectAt:aSymbol
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   186
    "return the aspect for a symbol or nil.
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   187
    "
433
31b52cc4451a *** empty log message ***
ca
parents: 428
diff changeset
   188
    |b|
31b52cc4451a *** empty log message ***
ca
parents: 428
diff changeset
   189
473
9ef922391c70 nil aspect
ca
parents: 467
diff changeset
   190
    aSymbol notNil ifTrue:[
9ef922391c70 nil aspect
ca
parents: 467
diff changeset
   191
        bindings notNil ifTrue:[
9ef922391c70 nil aspect
ca
parents: 467
diff changeset
   192
            b := bindings at:aSymbol ifAbsent:nil.
9ef922391c70 nil aspect
ca
parents: 467
diff changeset
   193
            b notNil ifTrue:[^ b].
9ef922391c70 nil aspect
ca
parents: 467
diff changeset
   194
        ].
434
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   195
473
9ef922391c70 nil aspect
ca
parents: 467
diff changeset
   196
        application notNil ifTrue:[
577
818d08c9aef1 add trace messages:
ca
parents: 502
diff changeset
   197
            Object messageNotUnderstoodSignal handle:[:ex |
727
74603345637d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   198
                ex parameter selector == aSymbol ifFalse:[
74603345637d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   199
                    ex reject
74603345637d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   200
                ]
577
818d08c9aef1 add trace messages:
ca
parents: 502
diff changeset
   201
            ] do:[
473
9ef922391c70 nil aspect
ca
parents: 467
diff changeset
   202
                ^ application aspectFor:aSymbol
717
b89142a61d05 #aspectAt: must also ask class.
Claus Gittinger <cg@exept.de>
parents: 716
diff changeset
   203
            ].
b89142a61d05 #aspectAt: must also ask class.
Claus Gittinger <cg@exept.de>
parents: 716
diff changeset
   204
            Object messageNotUnderstoodSignal handle:[:ex |
727
74603345637d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   205
                ex parameter selector == aSymbol ifFalse:[
74603345637d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   206
                    ex reject
74603345637d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   207
                ]
717
b89142a61d05 #aspectAt: must also ask class.
Claus Gittinger <cg@exept.de>
parents: 716
diff changeset
   208
            ] do:[
b89142a61d05 #aspectAt: must also ask class.
Claus Gittinger <cg@exept.de>
parents: 716
diff changeset
   209
                ^ application class aspectFor:aSymbol
b89142a61d05 #aspectAt: must also ask class.
Claus Gittinger <cg@exept.de>
parents: 716
diff changeset
   210
            ].
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   211
            self aspectNotFound:aSymbol error:'no aspect for:'
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   212
        ]
433
31b52cc4451a *** empty log message ***
ca
parents: 428
diff changeset
   213
    ].
31b52cc4451a *** empty log message ***
ca
parents: 428
diff changeset
   214
    ^ nil
970
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   215
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   216
    "Modified: / 18.6.1998 / 20:23:24 / cg"
66
claus
parents:
diff changeset
   217
!
claus
parents:
diff changeset
   218
125
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   219
aspectAt:aSymbol put:aModel
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   220
    "store an aspect identified by its symbol and its value
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   221
    "
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   222
    bindings isNil ifTrue:[
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   223
        bindings := IdentityDictionary new
125
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   224
    ].
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   225
    ^ bindings at:aSymbol put:aModel
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   226
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   227
    "Modified: 17.1.1997 / 19:28:37 / cg"
100
claus
parents: 99
diff changeset
   228
!
claus
parents: 99
diff changeset
   229
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   230
bindingAt:aSymbol
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   231
    "return the binding for a symbol or nil
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   232
    "
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   233
    bindings notNil ifTrue:[
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   234
        ^ bindings at:aSymbol ifAbsent:nil.
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   235
    ].
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   236
    ^ nil
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   237
!
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   238
100
claus
parents: 99
diff changeset
   239
bindings
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   240
    "return my bindings
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   241
    "
100
claus
parents: 99
diff changeset
   242
    ^ bindings
claus
parents: 99
diff changeset
   243
!
claus
parents: 99
diff changeset
   244
claus
parents: 99
diff changeset
   245
bindings:aDictionary
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   246
    "set bindings to a dictionary
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   247
    "
100
claus
parents: 99
diff changeset
   248
    bindings := aDictionary
claus
parents: 99
diff changeset
   249
!
claus
parents: 99
diff changeset
   250
125
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   251
componentAt:name
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   252
    "return a component identified by its name.
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   253
    "
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   254
    namedComponents isNil ifTrue:[^ nil].
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   255
    ^ namedComponents at:name asSymbol ifAbsent:nil
125
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   256
!
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   257
100
claus
parents: 99
diff changeset
   258
componentAt:name put:aComponent
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   259
    "store a component identified by its name.
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   260
    "
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   261
    namedComponents isNil ifTrue:[
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   262
        namedComponents := IdentityDictionary new.
100
claus
parents: 99
diff changeset
   263
    ].
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   264
    namedComponents at:name asSymbol put:aComponent
100
claus
parents: 99
diff changeset
   265
!
claus
parents: 99
diff changeset
   266
410
2d21748e0d9c checkin from browser
ca
parents: 408
diff changeset
   267
componentCreationHook:something
2d21748e0d9c checkin from browser
ca
parents: 408
diff changeset
   268
    "set the value of the instance variable 'componentCreationHook' (automatically generated)"
2d21748e0d9c checkin from browser
ca
parents: 408
diff changeset
   269
2d21748e0d9c checkin from browser
ca
parents: 408
diff changeset
   270
    componentCreationHook := something.!
2d21748e0d9c checkin from browser
ca
parents: 408
diff changeset
   271
125
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   272
focusSequence 
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   273
    "return my focus sequence
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   274
    "
125
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   275
    ^ focusSequence
66
claus
parents:
diff changeset
   276
!
claus
parents:
diff changeset
   277
600
885bd39df8df access help key
ca
parents: 598
diff changeset
   278
helpKeyFor:aComponent
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   279
    "return the helpkey for a component or nil
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   280
    "
600
885bd39df8df access help key
ca
parents: 598
diff changeset
   281
    |v key|
885bd39df8df access help key
ca
parents: 598
diff changeset
   282
885bd39df8df access help key
ca
parents: 598
diff changeset
   283
    helpKeys isNil ifTrue:[^ nil].
885bd39df8df access help key
ca
parents: 598
diff changeset
   284
    v := aComponent.
885bd39df8df access help key
ca
parents: 598
diff changeset
   285
    [v notNil] whileTrue:[
885bd39df8df access help key
ca
parents: 598
diff changeset
   286
        (key := helpKeys at:v ifAbsent:nil) notNil ifTrue:[
885bd39df8df access help key
ca
parents: 598
diff changeset
   287
            ^ key
885bd39df8df access help key
ca
parents: 598
diff changeset
   288
        ].
885bd39df8df access help key
ca
parents: 598
diff changeset
   289
        v := v superView
885bd39df8df access help key
ca
parents: 598
diff changeset
   290
    ].
595
15d80dd3d974 help text
ca
parents: 587
diff changeset
   291
    ^ nil
600
885bd39df8df access help key
ca
parents: 598
diff changeset
   292
!
595
15d80dd3d974 help text
ca
parents: 587
diff changeset
   293
600
885bd39df8df access help key
ca
parents: 598
diff changeset
   294
helpKeyFor:aComponent put:aKey
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   295
    "assign a key for a component which is used to access the help text
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   296
     from the application.
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   297
    "
600
885bd39df8df access help key
ca
parents: 598
diff changeset
   298
    aKey isNil ifTrue:[
885bd39df8df access help key
ca
parents: 598
diff changeset
   299
        helpKeys isNil ifFalse:[
885bd39df8df access help key
ca
parents: 598
diff changeset
   300
            helpKeys removeKey:aComponent ifAbsent:nil
885bd39df8df access help key
ca
parents: 598
diff changeset
   301
        ]
885bd39df8df access help key
ca
parents: 598
diff changeset
   302
    ] ifFalse:[
885bd39df8df access help key
ca
parents: 598
diff changeset
   303
        helpKeys isNil ifTrue:[
885bd39df8df access help key
ca
parents: 598
diff changeset
   304
            helpKeys := IdentityDictionary new
885bd39df8df access help key
ca
parents: 598
diff changeset
   305
        ].
885bd39df8df access help key
ca
parents: 598
diff changeset
   306
        helpKeys at:aComponent put:aKey
885bd39df8df access help key
ca
parents: 598
diff changeset
   307
    ]
595
15d80dd3d974 help text
ca
parents: 587
diff changeset
   308
15d80dd3d974 help text
ca
parents: 587
diff changeset
   309
!
15d80dd3d974 help text
ca
parents: 587
diff changeset
   310
477
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   311
keyboardProcessor
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   312
    "return my keyboard processor
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   313
    "
477
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   314
    keyboardProcessor isNil ifTrue:[
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   315
        keyboardProcessor := KeyboardProcessor new    
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   316
    ].
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   317
    ^ keyboardProcessor
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   318
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   319
    "Created: 3.3.1997 / 18:31:37 / cg"
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   320
    "Modified: 3.3.1997 / 18:32:27 / cg"
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   321
!
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   322
970
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   323
keyboardProcessor:aKeyboardProcessor
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   324
    "set my keyboard processor
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   325
    "
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   326
    keyboardProcessor := aKeyboardProcessor
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   327
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   328
    "Created: / 18.6.1998 / 19:59:38 / cg"
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   329
!
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   330
855
baf65c4e2bed added #labelAt: / labelAt:put: for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 848
diff changeset
   331
labelAt:name
baf65c4e2bed added #labelAt: / labelAt:put: for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 848
diff changeset
   332
    labels isNil ifTrue:[^ nil].
baf65c4e2bed added #labelAt: / labelAt:put: for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 848
diff changeset
   333
    ^ labels at:name asSymbol ifAbsent:nil
baf65c4e2bed added #labelAt: / labelAt:put: for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 848
diff changeset
   334
baf65c4e2bed added #labelAt: / labelAt:put: for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 848
diff changeset
   335
    "Created: / 27.2.1998 / 13:52:28 / cg"
baf65c4e2bed added #labelAt: / labelAt:put: for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 848
diff changeset
   336
!
baf65c4e2bed added #labelAt: / labelAt:put: for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 848
diff changeset
   337
baf65c4e2bed added #labelAt: / labelAt:put: for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 848
diff changeset
   338
labelAt:name put:aLabelString
baf65c4e2bed added #labelAt: / labelAt:put: for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 848
diff changeset
   339
    labels isNil ifTrue:[
baf65c4e2bed added #labelAt: / labelAt:put: for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 848
diff changeset
   340
        labels := IdentityDictionary new.
baf65c4e2bed added #labelAt: / labelAt:put: for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 848
diff changeset
   341
    ].
baf65c4e2bed added #labelAt: / labelAt:put: for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 848
diff changeset
   342
    labels at:name asSymbol put:aLabelString
baf65c4e2bed added #labelAt: / labelAt:put: for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 848
diff changeset
   343
baf65c4e2bed added #labelAt: / labelAt:put: for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 848
diff changeset
   344
    "Created: / 27.2.1998 / 02:30:54 / cg"
baf65c4e2bed added #labelAt: / labelAt:put: for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 848
diff changeset
   345
!
baf65c4e2bed added #labelAt: / labelAt:put: for ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 848
diff changeset
   346
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   347
menuAt:aKey
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   348
    "Find a binding for the menu named aKey, either in the bindings 
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   349
     or from the source"
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   350
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   351
    ^ self menuFor:aKey
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   352
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   353
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   354
!
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   355
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   356
menuAt:aSymbol put:someMenuOrHolder
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   357
    "add someMenuOrHolder as the binding for the menu named aSymbol to the bindings"
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   358
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   359
    ^ self aspectAt:aSymbol put:someMenuOrHolder
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   360
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   361
!
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   362
86
claus
parents: 80
diff changeset
   363
namedComponents
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   364
    "return list of named components
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   365
    "
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   366
    ^ namedComponents
86
claus
parents: 80
diff changeset
   367
!
claus
parents: 80
diff changeset
   368
502
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   369
subCanvasAt:majorKey at:minorKey
829
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   370
    "get the subCanvas or subSpec specification from major and minor key.
774
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   371
     Here, we first look for a spec in the private subCanvasSpecs dictionary,
829
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   372
     which can be filled via #specificationAt:at:put: messages.
774
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   373
     If not present, or none is found there, we bounce back trying
824
06de83e3fdee Fix comment.
Stefan Vogel <sv@exept.de>
parents: 774
diff changeset
   374
     #specificationFor: (if majorKey is nil) or by sending the minorKey
774
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   375
     message to the class named as majorKey.
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   376
     Notice, that the class named majorKey is first searched in the
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   377
     application classes namespace - allowing private classes as majorKey.
586
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   378
    "
774
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   379
829
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   380
    |spec cls dict dkey|
502
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   381
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   382
    subCanvasSpecs notNil ifTrue:[
586
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   383
        dkey := majorKey ? #NoMajorKey.
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   384
        dict := subCanvasSpecs at:dkey ifAbsent:nil.
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   385
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   386
        dict notNil ifTrue:[
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   387
            spec := dict at:minorKey ifAbsent:nil.
502
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   388
            spec notNil ifTrue:[^ spec].
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   389
        ].
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   390
    ].
586
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   391
502
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   392
    majorKey isNil ifTrue:[
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   393
        ^ self specificationFor:minorKey
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   394
    ].
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   395
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   396
    application notNil ifTrue:[
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   397
        "/ look for class in applications namespace ...
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   398
        cls := application resolveName:majorKey.
502
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   399
    ] ifFalse:[
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   400
        "/ fallBack - use that global, if it exists
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   401
        cls := Smalltalk at:majorKey.
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   402
        cls isNil ifTrue:[
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   403
            Transcript showCR:('WindowBuilder[warning]: missing application when fetching majorKey:' , majorKey).
735
4b66677877e8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
   404
        ].
502
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   405
    ].
586
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   406
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   407
    cls notNil ifTrue:[
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   408
        Object messageNotUnderstoodSignal handle:[:ex|] do:[
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   409
            ^ cls specificationFor:minorKey
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   410
        ].
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   411
        Object messageNotUnderstoodSignal handle:[:ex|] do:[
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   412
            ^ cls perform:minorKey.
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   413
        ]
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   414
    ].
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   415
    ^ nil
502
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   416
!
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   417
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   418
subCanvasAt:majorKey at:minorKey put:aSpec
829
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   419
    "deposit an interfaceSpecification for major and minor key
774
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   420
     in my private subCanvasSpecs dictionary.
829
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   421
     This will be used later, when building, 
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   422
     to provide an interfaceSpec for a subcanvas or subSpecification
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   423
     (or possibly override an application provided interfaceSpec).
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   424
     See #subCanvasAt:at:."
774
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   425
502
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   426
    |dict key|
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   427
774
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   428
    subCanvasSpecs isNil ifTrue:[
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   429
        "/ lazyly initialize
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   430
        subCanvasSpecs := IdentityDictionary new
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   431
    ].
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   432
502
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   433
    key := majorKey ? #NoMajorKey.
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   434
    dict := subCanvasSpecs at:key ifAbsent:nil.
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   435
    dict isNil ifTrue:[
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   436
        dict := IdentityDictionary new.
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   437
        subCanvasSpecs at:key put:dict
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   438
    ].
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   439
    dict at:minorKey put:aSpec
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   440
774
fb8810086f95 removed unused instVar windowView;
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   441
    "Modified: / 27.1.1998 / 12:21:27 / cg"
829
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   442
    "Modified: / 5.2.1998 / 12:05:32 / stefan"
502
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   443
!
43ca81bcde49 supporting SubCanvas-Spec
ca
parents: 480
diff changeset
   444
475
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   445
visualAt:name
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   446
    visuals isNil ifTrue:[^ nil].
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   447
    ^ visuals at:name asSymbol ifAbsent:nil
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   448
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   449
    "Created: 3.3.1997 / 16:24:17 / cg"
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   450
!
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   451
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   452
visualAt:name put:aVisual
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   453
    visuals isNil ifTrue:[
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   454
        visuals := IdentityDictionary new.
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   455
    ].
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   456
    visuals at:name asSymbol put:aVisual
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   457
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   458
    "Created: 3.3.1997 / 16:24:41 / cg"
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   459
!
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   460
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   461
visuals
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   462
    ^ visuals
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   463
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   464
    "Created: 3.3.1997 / 16:24:00 / cg"
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   465
!
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   466
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   467
visuals:aDictionary
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   468
    visuals := aDictionary
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   469
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   470
    "Created: 3.3.1997 / 16:24:06 / cg"
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   471
!
fd94f2bc8b9e added #visuals, #visualAt: and #visualAt:put:
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
   472
125
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   473
window
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   474
    "return the top window (view), for which an interface
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   475
     is (being) built"
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   476
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   477
    ^ window
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   478
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   479
    "Modified: 17.1.1997 / 19:30:00 / cg"
125
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   480
!
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   481
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   482
window:aView
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   483
    "set the top window (view), for which an interface
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   484
     is (being) built"
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   485
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   486
    window := aView
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   487
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   488
    "Modified: 17.1.1997 / 19:30:22 / cg"
66
claus
parents:
diff changeset
   489
!
claus
parents:
diff changeset
   490
claus
parents:
diff changeset
   491
windowGroup
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   492
    ^ window windowGroup
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   493
608
1cd72d2d7e3b removed debugHalt
Claus Gittinger <cg@exept.de>
parents: 600
diff changeset
   494
    "Modified: 17.6.1997 / 18:04:01 / cg"
66
claus
parents:
diff changeset
   495
! !
claus
parents:
diff changeset
   496
673
5e342b1ebe45 added #booleanAspectFor: as a code-saver
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
   497
!WindowBuilder methodsFor:'aspect access support'!
5e342b1ebe45 added #booleanAspectFor: as a code-saver
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
   498
675
655134e5e064 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 674
diff changeset
   499
booleanValueAspectFor:aKey
674
a48904783fba checkin from browser
Claus Gittinger <cg@exept.de>
parents: 673
diff changeset
   500
    "helper (common code) to generate a boolean aspect if required.
a48904783fba checkin from browser
Claus Gittinger <cg@exept.de>
parents: 673
diff changeset
   501
     If no binding exists for aKey, a valueHolder holding false is
a48904783fba checkin from browser
Claus Gittinger <cg@exept.de>
parents: 673
diff changeset
   502
     created and added to the bindings.
a48904783fba checkin from browser
Claus Gittinger <cg@exept.de>
parents: 673
diff changeset
   503
     Otherwise, the existing binding is returned."
673
5e342b1ebe45 added #booleanAspectFor: as a code-saver
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
   504
676
40945340dc59 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 675
diff changeset
   505
    ^ self valueAspectFor:aKey initialValue:false
673
5e342b1ebe45 added #booleanAspectFor: as a code-saver
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
   506
676
40945340dc59 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 675
diff changeset
   507
    "Modified: 28.7.1997 / 12:53:57 / cg"
675
655134e5e064 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 674
diff changeset
   508
!
655134e5e064 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 674
diff changeset
   509
655134e5e064 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 674
diff changeset
   510
nilValueAspectFor:aKey
655134e5e064 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 674
diff changeset
   511
    "helper (common code) to generate a valueHolder aspect if required.
655134e5e064 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 674
diff changeset
   512
     If no binding exists for aKey, a valueHolder holding nil is
655134e5e064 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 674
diff changeset
   513
     created and added to the bindings.
655134e5e064 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 674
diff changeset
   514
     Otherwise, the existing binding is returned."
655134e5e064 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 674
diff changeset
   515
676
40945340dc59 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 675
diff changeset
   516
    ^ self valueAspectFor:aKey initialValue:nil
40945340dc59 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 675
diff changeset
   517
40945340dc59 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 675
diff changeset
   518
    "Modified: 28.7.1997 / 12:54:06 / cg"
40945340dc59 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 675
diff changeset
   519
!
40945340dc59 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 675
diff changeset
   520
40945340dc59 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 675
diff changeset
   521
valueAspectFor:aKey initialValue:initialValue
40945340dc59 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 675
diff changeset
   522
    "helper (common code) to generate a valueHolder aspect if required.
40945340dc59 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 675
diff changeset
   523
     If no binding exists for aKey, a valueHolder holding initialValue is
40945340dc59 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 675
diff changeset
   524
     created and added to the bindings.
40945340dc59 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 675
diff changeset
   525
     Otherwise, the existing binding is returned."
40945340dc59 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 675
diff changeset
   526
675
655134e5e064 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 674
diff changeset
   527
    |holder|
655134e5e064 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 674
diff changeset
   528
655134e5e064 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 674
diff changeset
   529
    (holder := self bindingAt:aKey) isNil ifTrue:[
676
40945340dc59 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 675
diff changeset
   530
        self aspectAt:aKey put:(holder :=  initialValue asValue).
675
655134e5e064 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 674
diff changeset
   531
    ].
655134e5e064 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 674
diff changeset
   532
    ^ holder
655134e5e064 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 674
diff changeset
   533
676
40945340dc59 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 675
diff changeset
   534
    "Created: 28.7.1997 / 12:53:45 / cg"
40945340dc59 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 675
diff changeset
   535
    "Modified: 28.7.1997 / 12:54:13 / cg"
673
5e342b1ebe45 added #booleanAspectFor: as a code-saver
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
   536
! !
5e342b1ebe45 added #booleanAspectFor: as a code-saver
Claus Gittinger <cg@exept.de>
parents: 664
diff changeset
   537
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   538
!WindowBuilder methodsFor:'building'!
66
claus
parents:
diff changeset
   539
125
fa5b5e4336bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 114
diff changeset
   540
buildFromSpec:aSpec
176
3890e2b312e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 132
diff changeset
   541
    ^ self subclassResponsibility
408
93582137e1c7 tabable
ca
parents: 374
diff changeset
   542
!
93582137e1c7 tabable
ca
parents: 374
diff changeset
   543
93582137e1c7 tabable
ca
parents: 374
diff changeset
   544
makeTabable:aComponent
735
4b66677877e8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
   545
    "add a component to the list of tabable components"
4b66677877e8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
   546
408
93582137e1c7 tabable
ca
parents: 374
diff changeset
   547
    focusSequence isNil ifTrue:[
93582137e1c7 tabable
ca
parents: 374
diff changeset
   548
        focusSequence := OrderedCollection new.
93582137e1c7 tabable
ca
parents: 374
diff changeset
   549
    ].
93582137e1c7 tabable
ca
parents: 374
diff changeset
   550
    focusSequence add:aComponent
735
4b66677877e8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
   551
4b66677877e8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
   552
    "Modified: / 31.10.1997 / 18:39:30 / cg"
66
claus
parents:
diff changeset
   553
! !
100
claus
parents: 99
diff changeset
   554
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   555
!WindowBuilder methodsFor:'error handling'!
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   556
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   557
aspectNotFound:anAspect error:aString
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   558
    "show error message on transcript
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   559
    "
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   560
    Transcript showCR:'WindowBuilder: '
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   561
                     , aString
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   562
                     , ' aspect: <'
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   563
                     , anAspect storeString
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   564
                     , '>'.
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   565
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   566
    StopOnError == true ifTrue:[
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   567
        self halt                       "/ avoids debugger in end-user apps
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   568
    ].
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   569
! !
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   570
586
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   571
!WindowBuilder methodsFor:'message sending'!
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   572
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   573
safelyPerform:aSelector ifNone:aBlock
829
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   574
    "send the message aSelector to the application;
586
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   575
     the result returned from the send or nil is returned
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   576
    "
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   577
    |cls|
586
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   578
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   579
    aSelector notNil ifTrue:[
595
15d80dd3d974 help text
ca
parents: 587
diff changeset
   580
        application notNil ifTrue:[
981
6a9c975543ad also reject non-selector errors in #safelyPerform: without arg.
Claus Gittinger <cg@exept.de>
parents: 974
diff changeset
   581
            application messageNotUnderstoodSignal handle:[:ex|
6a9c975543ad also reject non-selector errors in #safelyPerform: without arg.
Claus Gittinger <cg@exept.de>
parents: 974
diff changeset
   582
                (ex parameter selector ~~ aSelector) ifTrue:[
6a9c975543ad also reject non-selector errors in #safelyPerform: without arg.
Claus Gittinger <cg@exept.de>
parents: 974
diff changeset
   583
                    ex reject
6a9c975543ad also reject non-selector errors in #safelyPerform: without arg.
Claus Gittinger <cg@exept.de>
parents: 974
diff changeset
   584
                ]
6a9c975543ad also reject non-selector errors in #safelyPerform: without arg.
Claus Gittinger <cg@exept.de>
parents: 974
diff changeset
   585
            ] do:[
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   586
                ^ application perform:aSelector
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   587
            ].
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   588
            cls := application class.
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   589
981
6a9c975543ad also reject non-selector errors in #safelyPerform: without arg.
Claus Gittinger <cg@exept.de>
parents: 974
diff changeset
   590
            cls messageNotUnderstoodSignal handle:[:ex|
6a9c975543ad also reject non-selector errors in #safelyPerform: without arg.
Claus Gittinger <cg@exept.de>
parents: 974
diff changeset
   591
                (ex parameter selector ~~ aSelector) ifTrue:[
6a9c975543ad also reject non-selector errors in #safelyPerform: without arg.
Claus Gittinger <cg@exept.de>
parents: 974
diff changeset
   592
                    ex reject
6a9c975543ad also reject non-selector errors in #safelyPerform: without arg.
Claus Gittinger <cg@exept.de>
parents: 974
diff changeset
   593
                ]
6a9c975543ad also reject non-selector errors in #safelyPerform: without arg.
Claus Gittinger <cg@exept.de>
parents: 974
diff changeset
   594
            ] do:[
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   595
                ^ cls perform:aSelector
595
15d80dd3d974 help text
ca
parents: 587
diff changeset
   596
            ]
829
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   597
        ].
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   598
        applicationClass notNil ifTrue:[
981
6a9c975543ad also reject non-selector errors in #safelyPerform: without arg.
Claus Gittinger <cg@exept.de>
parents: 974
diff changeset
   599
            applicationClass messageNotUnderstoodSignal handle:[:ex|
6a9c975543ad also reject non-selector errors in #safelyPerform: without arg.
Claus Gittinger <cg@exept.de>
parents: 974
diff changeset
   600
                (ex parameter selector ~~ aSelector) ifTrue:[
6a9c975543ad also reject non-selector errors in #safelyPerform: without arg.
Claus Gittinger <cg@exept.de>
parents: 974
diff changeset
   601
                    ex reject
6a9c975543ad also reject non-selector errors in #safelyPerform: without arg.
Claus Gittinger <cg@exept.de>
parents: 974
diff changeset
   602
                ]
6a9c975543ad also reject non-selector errors in #safelyPerform: without arg.
Claus Gittinger <cg@exept.de>
parents: 974
diff changeset
   603
            ] do:[
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   604
                ^ applicationClass perform:aSelector
829
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   605
            ]
586
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   606
        ]
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   607
    ].
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   608
  ^ aBlock value
981
6a9c975543ad also reject non-selector errors in #safelyPerform: without arg.
Claus Gittinger <cg@exept.de>
parents: 974
diff changeset
   609
6a9c975543ad also reject non-selector errors in #safelyPerform: without arg.
Claus Gittinger <cg@exept.de>
parents: 974
diff changeset
   610
    "Modified: / 20.6.1998 / 11:52:19 / cg"
586
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   611
!
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   612
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   613
safelyPerform:aSelector with:anArgument ifNone:aBlock
829
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   614
    "send the one-arg-message aSelector to the application;
586
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   615
     the result returned from the send or nil is returned
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   616
    "
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   617
    |cls|
586
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   618
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   619
    aSelector notNil ifTrue:[
595
15d80dd3d974 help text
ca
parents: 587
diff changeset
   620
        application notNil ifTrue:[
961
babdad518c1d in #savelyPerform:
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   621
            application messageNotUnderstoodSignal handle:[:ex|
970
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   622
                (ex parameter selector ~~ aSelector 
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   623
                and:[ex parameter selector ~~ anArgument]) ifTrue:[
961
babdad518c1d in #savelyPerform:
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   624
                    ex reject
babdad518c1d in #savelyPerform:
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   625
                ]
babdad518c1d in #savelyPerform:
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   626
            ] do:[
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   627
                ^ application perform:aSelector with:anArgument
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   628
            ].
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   629
            cls := application class.
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   630
961
babdad518c1d in #savelyPerform:
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   631
            cls messageNotUnderstoodSignal handle:[:ex|
970
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   632
                (ex parameter selector ~~ aSelector 
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   633
                and:[ex parameter selector ~~ anArgument]) ifTrue:[
961
babdad518c1d in #savelyPerform:
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   634
                    ex reject
babdad518c1d in #savelyPerform:
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   635
                ]
babdad518c1d in #savelyPerform:
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   636
            ] do:[
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   637
                ^ cls perform:aSelector with:anArgument
595
15d80dd3d974 help text
ca
parents: 587
diff changeset
   638
            ]
829
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   639
        ].
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   640
        applicationClass notNil ifTrue:[
961
babdad518c1d in #savelyPerform:
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   641
            applicationClass messageNotUnderstoodSignal handle:[:ex|
babdad518c1d in #savelyPerform:
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   642
                ex parameter selector ~~ aSelector ifTrue:[
babdad518c1d in #savelyPerform:
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   643
                    ex reject
babdad518c1d in #savelyPerform:
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   644
                ]
babdad518c1d in #savelyPerform:
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   645
            ] do:[
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   646
                ^ applicationClass perform:aSelector with:anArgument
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   647
            ].
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   648
        ]
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   649
    ].
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   650
  ^ aBlock value
961
babdad518c1d in #savelyPerform:
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   651
970
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   652
    "Modified: / 18.6.1998 / 20:35:32 / cg"
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   653
!
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   654
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   655
safelyPerform:aSelector with:arg1 with:arg2 ifNone:aBlock
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   656
    "send the two-arg-message aSelector to the application;
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   657
     the result returned from the send or nil is returned
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   658
    "
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   659
    |cls|
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   660
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   661
    aSelector notNil ifTrue:[
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   662
        application notNil ifTrue:[
970
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   663
            application messageNotUnderstoodSignal handle:[:ex|
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   664
                (ex parameter selector ~~ aSelector 
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   665
                and:[ex parameter selector ~~ arg1]) ifTrue:[
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   666
                    ex reject
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   667
                ]
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   668
            ] do:[
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   669
                ^ application perform:aSelector with:arg1 with:arg2
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   670
            ].
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   671
            cls := application class.
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   672
970
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   673
            cls messageNotUnderstoodSignal handle:[:ex|
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   674
                (ex parameter selector ~~ aSelector 
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   675
                and:[ex parameter selector ~~ arg1]) ifTrue:[
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   676
                    ex reject
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   677
                ]
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   678
            ] do:[
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   679
                ^ cls perform:aSelector with:arg1 with:arg2
829
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   680
            ]
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   681
        ].
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   682
        applicationClass notNil ifTrue:[
970
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   683
            applicationClass messageNotUnderstoodSignal handle:[:ex|
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   684
                (ex parameter selector ~~ aSelector 
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   685
                and:[ex parameter selector ~~ arg1]) ifTrue:[
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   686
                    ex reject
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   687
                ]
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   688
            ] do:[
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   689
                ^ applicationClass perform:aSelector with:arg1 with:arg2
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   690
            ].
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   691
        ]
586
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   692
    ].
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   693
  ^ aBlock value
970
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   694
d8920428eb28 undid some exception handling stuff;
Claus Gittinger <cg@exept.de>
parents: 965
diff changeset
   695
    "Modified: / 18.6.1998 / 21:40:13 / cg"
586
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   696
! !
8889c3e9a226 creation of
ca
parents: 577
diff changeset
   697
422
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   698
!WindowBuilder methodsFor:'spec creation aspect fetch'!
100
claus
parents: 99
diff changeset
   699
374
5be095a54715 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
   700
actionFor:aKey
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   701
    "return an action for aKey. This is invoked during window building
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   702
     (by the builder) to ask for an ActionButtons actionBlock.
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   703
     Here, first the local bindings are searched, then the application and
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   704
     finally the applications class is asked for a corresponding action.
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   705
     The returned object is typically a block."
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   706
434
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   707
    |b|
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   708
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   709
    bindings notNil ifTrue:[
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   710
        b := bindings at:aKey ifAbsent:nil.
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   711
        b notNil ifTrue:[^ b].
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   712
    ].
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   713
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   714
    ^ self safelyPerform:#actionFor:
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   715
                    with:aKey
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   716
                  ifNone:[ self aspectNotFound:aKey error:'no action for:'. [] ]
374
5be095a54715 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
   717
!
5be095a54715 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
   718
716
a23d48401446 actionFor:aKey withValue:aValue
ca
parents: 707
diff changeset
   719
actionFor:aKey withValue:aValue
a23d48401446 actionFor:aKey withValue:aValue
ca
parents: 707
diff changeset
   720
    "return an action for aKey/value combonation. 
a23d48401446 actionFor:aKey withValue:aValue
ca
parents: 707
diff changeset
   721
     This is invoked during window building
a23d48401446 actionFor:aKey withValue:aValue
ca
parents: 707
diff changeset
   722
     (by the builder) to ask for an ActionButtons actionBlock if that button
a23d48401446 actionFor:aKey withValue:aValue
ca
parents: 707
diff changeset
   723
     specified an action with an argument value.
a23d48401446 actionFor:aKey withValue:aValue
ca
parents: 707
diff changeset
   724
     Here, first the local bindings are searched, then the application and
a23d48401446 actionFor:aKey withValue:aValue
ca
parents: 707
diff changeset
   725
     finally the applications class is asked for a corresponding action.
a23d48401446 actionFor:aKey withValue:aValue
ca
parents: 707
diff changeset
   726
     The returned object is typically a block."
a23d48401446 actionFor:aKey withValue:aValue
ca
parents: 707
diff changeset
   727
a23d48401446 actionFor:aKey withValue:aValue
ca
parents: 707
diff changeset
   728
    |b|
a23d48401446 actionFor:aKey withValue:aValue
ca
parents: 707
diff changeset
   729
a23d48401446 actionFor:aKey withValue:aValue
ca
parents: 707
diff changeset
   730
    bindings notNil ifTrue:[
a23d48401446 actionFor:aKey withValue:aValue
ca
parents: 707
diff changeset
   731
        b := bindings at:aKey ifAbsent:nil.
a23d48401446 actionFor:aKey withValue:aValue
ca
parents: 707
diff changeset
   732
        b notNil ifTrue:[^ b].
a23d48401446 actionFor:aKey withValue:aValue
ca
parents: 707
diff changeset
   733
    ].
a23d48401446 actionFor:aKey withValue:aValue
ca
parents: 707
diff changeset
   734
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   735
    ^ self safelyPerform:#actionFor:withValue:
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   736
                    with:aKey
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   737
                    with:aValue
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   738
                  ifNone:[ self aspectNotFound:aKey error:'no action for:'. [:dummy |] ]
716
a23d48401446 actionFor:aKey withValue:aValue
ca
parents: 707
diff changeset
   739
!
a23d48401446 actionFor:aKey withValue:aValue
ca
parents: 707
diff changeset
   740
374
5be095a54715 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
   741
aspectFor:aKey
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   742
    "return a model for aKey. This is invoked during window building
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   743
     (by the builder) to ask for an Editfields, a Toggles etc. model.
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   744
     Here, first the local bindings are searched, then the application and
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   745
     finally the applications class is asked for a corresponding action.
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   746
     The returned object is typically a valueHolder."
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   747
434
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   748
    |b|
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   749
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   750
    bindings notNil ifTrue:[
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   751
        b := bindings at:aKey ifAbsent:nil.
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   752
        b notNil ifTrue:[^ b].
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   753
    ].
eeb7ba6aede3 *** empty log message ***
ca
parents: 433
diff changeset
   754
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   755
    ^ self safelyPerform:#aspectFor:
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   756
                    with:aKey
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   757
                  ifNone:[ self aspectAt:aKey ]
374
5be095a54715 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
   758
!
5be095a54715 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
   759
423
64c2d739caf1 *** empty log message ***
ca
parents: 422
diff changeset
   760
componentFor:aKey
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   761
    "return a component for aKey. This is invoked during window building
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   762
     (by the builder) to ask for an ArbitraryComponents view.
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   763
     Here, first the local bindings are searched, then the application and
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   764
     finally the applications class is asked for a corresponding action.
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   765
     The returned object is typically a view."
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   766
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   767
    ^ self safelyPerform:#componentFor:
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   768
                    with:aKey
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   769
                  ifNone:[ self aspectAt:aKey ]
423
64c2d739caf1 *** empty log message ***
ca
parents: 422
diff changeset
   770
!
64c2d739caf1 *** empty log message ***
ca
parents: 422
diff changeset
   771
422
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   772
labelFor:aKey
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   773
    "return a label for aKey. This is invoked during window building
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   774
     (by the builder) to ask for a ???'s label.
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   775
     Here, first the local bindings are searched, then the application and
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   776
     finally the applications class is asked for a corresponding action.
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   777
     The returned object is typically a string."
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   778
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   779
    ^ self safelyPerform:#labelFor:
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   780
                    with:aKey
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   781
                  ifNone:[ self aspectAt:aKey ]
422
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   782
!
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   783
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   784
listFor:aKey
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   785
    "return a list for aKey. This is invoked during window building
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   786
     (by the builder) to ask for a ???'s label.
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   787
     Here, first the local bindings are searched, then the application and
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   788
     finally the applications class is asked for a corresponding action.
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   789
     The returned object is typically a list."
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   790
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   791
    ^ self safelyPerform:#listFor:
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   792
                    with:aKey
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   793
                  ifNone:[ self aspectAt:aKey ]
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   794
!
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   795
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   796
menuFor:aKey
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   797
    "Find a binding for the menu named aKey, either in the bindings 
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   798
     or from the source"
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   799
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   800
    |menu|
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   801
961
babdad518c1d in #savelyPerform:
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   802
    aKey isNil ifTrue:[^ nil].
babdad518c1d in #savelyPerform:
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   803
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   804
    (menu := self bindingAt:aKey) notNil ifTrue:[
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   805
        ^ menu
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   806
    ].
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   807
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   808
    menu := self safelyPerform:#menuFor: with:aKey ifNone:[
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   809
                    self safelyPerform:aKey ifNone:[
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   810
                        self aspectNotFound:aKey error:'no menu for:'.
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   811
                        nil
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   812
                    ]
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   813
                 ].
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   814
862
812e53d6c482 bug fix:
ca
parents: 855
diff changeset
   815
    menu isBlock ifFalse:[
812e53d6c482 bug fix:
ca
parents: 855
diff changeset
   816
        ((menu := menu value) notNil and:[application notNil]) ifTrue:[
812e53d6c482 bug fix:
ca
parents: 855
diff changeset
   817
            menu isArray ifTrue:[
812e53d6c482 bug fix:
ca
parents: 855
diff changeset
   818
                menu := Menu new fromLiteralArrayEncoding:menu.
812e53d6c482 bug fix:
ca
parents: 855
diff changeset
   819
                menu receiver:application.
924
4680e2fe4728 must care for resource-label translation of a menu
Claus Gittinger <cg@exept.de>
parents: 862
diff changeset
   820
            ].
4680e2fe4728 must care for resource-label translation of a menu
Claus Gittinger <cg@exept.de>
parents: 862
diff changeset
   821
            menu findGuiResourcesIn:application
450
2a6e2eb653f0 so far ...
ca
parents: 436
diff changeset
   822
        ]
422
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   823
    ].
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   824
    ^ menu
717
b89142a61d05 #aspectAt: must also ask class.
Claus Gittinger <cg@exept.de>
parents: 716
diff changeset
   825
961
babdad518c1d in #savelyPerform:
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   826
    "Modified: / 18.6.1998 / 16:30:31 / cg"
829
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   827
!
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   828
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   829
specificationFor:aKey
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   830
    "return a specification for aKey. This is invoked during window building
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   831
     (by the builder) to ask for the interfaceSpec for a subCanvas or subSpecification.
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   832
     Here, first the local bindings are searched, then the application and
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   833
     finally the applications class is asked for a corresponding interfaceSPec.
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   834
     The returned object is typically an interfaceSpec array."
d4cd3635d64e Fix #subcanvasAt:at to be consistent with other binding access methods.
Stefan Vogel <sv@exept.de>
parents: 824
diff changeset
   835
848
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   836
    ^ self safelyPerform:#specificationFor:
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   837
                    with:aKey
c0fab03dd225 access mechanism for aspects
ca
parents: 835
diff changeset
   838
                  ifNone:[ self aspectFor:aKey ]
422
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   839
! !
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   840
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   841
!WindowBuilder methodsFor:'spec creation callbacks'!
ccffe7647895 changed binding access
ca
parents: 420
diff changeset
   842
735
4b66677877e8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
   843
createdComponent:aView forSpec:spec named:name
4b66677877e8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
   844
    "callback from the UISpec after a view has been
4b66677877e8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
   845
     created for a spec.
4b66677877e8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
   846
     If it has a name, add it to the namedComponents dictionary;
4b66677877e8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
   847
     if I have a creationHook (application callBack), evaluate it."
4b66677877e8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
   848
4b66677877e8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
   849
    name notNil ifTrue:[
4b66677877e8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
   850
        "/ self componentAt:name put:aView.
4b66677877e8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
   851
        namedComponents isNil ifTrue:[
4b66677877e8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
   852
            namedComponents := IdentityDictionary new.
4b66677877e8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
   853
        ].
4b66677877e8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
   854
        namedComponents at:name asSymbol put:aView
4b66677877e8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
   855
    ].
410
2d21748e0d9c checkin from browser
ca
parents: 408
diff changeset
   856
    componentCreationHook notNil ifTrue:[
2d21748e0d9c checkin from browser
ca
parents: 408
diff changeset
   857
        componentCreationHook value:aView value:spec value:self
2d21748e0d9c checkin from browser
ca
parents: 408
diff changeset
   858
    ]
100
claus
parents: 99
diff changeset
   859
735
4b66677877e8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
   860
    "Modified: / 5.9.1995 / 21:42:54 / claus"
4b66677877e8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
   861
    "Created: / 31.10.1997 / 18:47:01 / cg"
4b66677877e8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
   862
    "Modified: / 31.10.1997 / 18:51:22 / cg"
100
claus
parents: 99
diff changeset
   863
! !
claus
parents: 99
diff changeset
   864
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   865
!WindowBuilder methodsFor:'startup'!
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   866
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   867
closeRequest
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   868
    window destroy
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   869
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   870
    "Modified: 17.1.1997 / 19:30:32 / cg"
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   871
!
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   872
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   873
open
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   874
    "open my topView, as previously created"
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   875
477
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   876
    |type|
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   877
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   878
    application isNil ifTrue:[
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   879
        type := #normal
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   880
    ] ifFalse:[
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   881
        type := application defaultWindowType
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   882
    ].
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   883
    self 
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   884
        openWithExtent:nil
477
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   885
        andType:type
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   886
477
4473bdcb24cb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   887
    "Modified: 3.3.1997 / 19:43:57 / cg"
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   888
!
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   889
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   890
openAt:aPoint
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   891
    "open my topView at some location"
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   892
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   893
    self 
467
8fb5fa11956c better dialog opening
Claus Gittinger <cg@exept.de>
parents: 463
diff changeset
   894
        openAt:aPoint 
8fb5fa11956c better dialog opening
Claus Gittinger <cg@exept.de>
parents: 463
diff changeset
   895
        withExtent:nil  
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   896
        andType:(application defaultWindowType)
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   897
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   898
    "Created: 14.2.1997 / 20:21:57 / cg"
467
8fb5fa11956c better dialog opening
Claus Gittinger <cg@exept.de>
parents: 463
diff changeset
   899
    "Modified: 28.2.1997 / 22:50:29 / cg"
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   900
!
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   901
436
b5e56e1f367f checkin from browser
ca
parents: 434
diff changeset
   902
openAt:origin withExtent:ext andType:type
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   903
    "open my window, as previously created, optionally defining the
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   904
     windows origin and/or extent. 
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   905
     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
   906
     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
   907
     active view, or as a normal view."
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   908
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   909
    origin notNil ifTrue:[
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   910
        window origin:origin
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   911
    ].
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   912
    ext notNil ifTrue:[
480
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   913
        window extent:ext.
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   914
    ] ifFalse:[
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   915
        type == #dialog ifTrue:[
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   916
            window fixSize
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   917
        ]
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   918
    ].
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   919
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   920
    type == #dialog ifTrue:[
467
8fb5fa11956c better dialog opening
Claus Gittinger <cg@exept.de>
parents: 463
diff changeset
   921
        window fixPosition:(window device pointerPosition - window positionOffset).
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   922
        window openModal.
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   923
        ^ self
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   924
    ].
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   925
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   926
    type == #normal ifTrue:[
480
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   927
        window isNil ifTrue:[
965
04cadbd21aac use new ApplicationWindow (instead of StandardSystemView)
Claus Gittinger <cg@exept.de>
parents: 961
diff changeset
   928
            self setupWindowFor:(ApplicationWindow new).
480
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   929
        ].
40218790e4ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   930
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   931
        window open.
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   932
        ^ self
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   933
    ].
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   934
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   935
    type == #popUp ifTrue:[
467
8fb5fa11956c better dialog opening
Claus Gittinger <cg@exept.de>
parents: 463
diff changeset
   936
        window fixPosition:(window device pointerPosition).
8fb5fa11956c better dialog opening
Claus Gittinger <cg@exept.de>
parents: 463
diff changeset
   937
        window openAsPopUp.
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   938
        ^ self
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   939
    ].
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   940
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   941
    "
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   942
     if ST-80 supports more types - these may be added later
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   943
    "
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   944
    self halt:'unimplemented'
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   945
735
4b66677877e8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 727
diff changeset
   946
    "Created: / 14.2.1997 / 20:22:24 / cg"
965
04cadbd21aac use new ApplicationWindow (instead of StandardSystemView)
Claus Gittinger <cg@exept.de>
parents: 961
diff changeset
   947
    "Modified: / 18.6.1998 / 19:10:07 / cg"
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   948
!
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   949
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   950
openDialog
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   951
    "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
   952
     blocking interaction to the currently active view."
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   953
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   954
    self 
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   955
        openWithExtent:nil 
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   956
        andType:#dialog
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   957
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   958
    "Modified: 17.1.1997 / 19:59:29 / cg"
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   959
!
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   960
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   961
openDialogAt:aPoint withExtent:ext
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   962
    "open my topView, as previously created as a modal view,
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   963
     blocking interaction to the currently active view."
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   964
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   965
    self 
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   966
        openAt:aPoint withExtent:ext 
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   967
        andType:#dialog
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   968
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   969
    "Modified: 17.1.1997 / 19:59:36 / cg"
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   970
    "Created: 14.2.1997 / 20:24:19 / cg"
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   971
!
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   972
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   973
openDialogWithExtent:ext
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   974
    "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
   975
     blocking interaction to the currently active view."
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   976
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   977
    self 
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   978
        openWithExtent:ext 
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   979
        andType:#dialog
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   980
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   981
    "Modified: 17.1.1997 / 19:59:36 / cg"
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   982
!
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   983
664
3115cc4e4678 openModal
ca
parents: 613
diff changeset
   984
openModal
3115cc4e4678 openModal
ca
parents: 613
diff changeset
   985
    "open my topView, as previously created"
3115cc4e4678 openModal
ca
parents: 613
diff changeset
   986
3115cc4e4678 openModal
ca
parents: 613
diff changeset
   987
    self 
3115cc4e4678 openModal
ca
parents: 613
diff changeset
   988
        openWithExtent:nil
3115cc4e4678 openModal
ca
parents: 613
diff changeset
   989
        andType:#dialog
3115cc4e4678 openModal
ca
parents: 613
diff changeset
   990
3115cc4e4678 openModal
ca
parents: 613
diff changeset
   991
    "Modified: 3.3.1997 / 19:43:57 / cg"
3115cc4e4678 openModal
ca
parents: 613
diff changeset
   992
!
3115cc4e4678 openModal
ca
parents: 613
diff changeset
   993
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   994
openPopUpAt:aPoint
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   995
    "open my topView, as previously created as a popUp view,
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   996
     blocking interaction to the currently active view."
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   997
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   998
    self 
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
   999
        openAt:aPoint withExtent:nil 
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  1000
        andType:#popUp
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  1001
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  1002
    "Modified: 17.1.1997 / 19:59:29 / cg"
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  1003
    "Created: 14.2.1997 / 20:24:38 / cg"
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  1004
!
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  1005
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1006
openPopUpIn:aRectangle
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1007
    "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
  1008
     blocking interaction to the currently active view."
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1009
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1010
    self 
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1011
        openWithExtent:nil 
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1012
        andType:#popUp
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1013
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1014
    "Modified: 17.1.1997 / 19:59:29 / cg"
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1015
    "Created: 17.1.1997 / 20:01:24 / cg"
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1016
!
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1017
587
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
  1018
openWindowAt:aPoint
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
  1019
    "open my topView at some location"
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
  1020
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
  1021
    self openAt:aPoint
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
  1022
!
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
  1023
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
  1024
openWindowAt:origin withExtent:ext andType:type
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
  1025
    "open my window, as previously created, optionally defining the
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
  1026
     windows origin and/or extent. 
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
  1027
     The type argument may be #dialog or #normal, and specifies if the view 
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
  1028
     should be opened as a modal view, blocking interaction to the currently 
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
  1029
     active view, or as a normal view."
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
  1030
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
  1031
    ^ self openAt:origin withExtent:ext andType:type
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
  1032
!
5687da09a935 openWindowAt: created
ca
parents: 586
diff changeset
  1033
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1034
openWithExtent:aPoint
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1035
    "open my topView, as previously created, but override
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1036
     the extent."
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1037
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1038
    self 
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1039
        openWithExtent:aPoint 
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1040
        andType:(application defaultWindowType)
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1041
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1042
    "Modified: 17.1.1997 / 19:58:48 / cg"
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1043
!
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1044
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1045
openWithExtent:ext andType:type
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1046
    "open my window, as previously created. The type argument
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1047
     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
  1048
     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
  1049
     active view, or as a normal view."
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1050
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  1051
    ^ self openAt:nil withExtent:ext andType:type
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1052
428
25f3b4964f14 more startup variations
Claus Gittinger <cg@exept.de>
parents: 424
diff changeset
  1053
    "Modified: 14.2.1997 / 20:22:47 / cg"
372
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1054
! !
6d7718f3d298 more ST-80 compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1055
132
0a8fe342ed91 version method at the end
Claus Gittinger <cg@exept.de>
parents: 125
diff changeset
  1056
!WindowBuilder class methodsFor:'documentation'!
0a8fe342ed91 version method at the end
Claus Gittinger <cg@exept.de>
parents: 125
diff changeset
  1057
0a8fe342ed91 version method at the end
Claus Gittinger <cg@exept.de>
parents: 125
diff changeset
  1058
version
981
6a9c975543ad also reject non-selector errors in #safelyPerform: without arg.
Claus Gittinger <cg@exept.de>
parents: 974
diff changeset
  1059
    ^ '$Header: /cvs/stx/stx/libview2/Attic/WinBuilder.st,v 1.68 1998-06-20 12:31:31 cg Exp $'
132
0a8fe342ed91 version method at the end
Claus Gittinger <cg@exept.de>
parents: 125
diff changeset
  1060
! !