ToolApplicationModel.st
author Stefan Vogel <sv@exept.de>
Tue, 08 Oct 2002 17:30:42 +0200
changeset 1631 14d4694d9a5a
parent 1624 98b212d1e4e4
child 1632 16e8e13ad17f
permissions -rw-r--r--
Comments
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
756
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
     1
"
784
b08b05900f30 copyright changed
tz
parents: 783
diff changeset
     2
 COPYRIGHT (c) 1997 by eXept Software AG
756
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
     3
              All Rights Reserved
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
     4
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
     5
 This software is furnished under a license and may be used
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
     6
 only in accordance with the terms of that license and with the
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
     7
 inclusion of the above copyright notice. This software may not
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
     8
 be provided or otherwise made available to, or used by, any
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
     9
 other person. No title to or ownership of the software is
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
    10
 hereby transferred.
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
    11
"
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
    12
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
    13
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
    14
1391
383411d95966 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1343
diff changeset
    15
"{ Package: 'stx:libview2' }"
383411d95966 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1343
diff changeset
    16
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    17
ApplicationModel subclass:#ToolApplicationModel
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
    18
	instanceVariableNames:'timeBlock'
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    19
	classVariableNames:''
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    20
	poolDictionaries:''
834
ac1655bd31bb class category changed
tz
parents: 833
diff changeset
    21
	category:'Interface-Framework'
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    22
!
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    23
1089
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
    24
ToolApplicationModel class instanceVariableNames:'history clipboard settings showingHelp instances'
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    25
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    26
"
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    27
 The following class instance variables are inherited by this class:
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    28
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    29
	ApplicationModel - ClassResources
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    30
	Model - 
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    31
	Object - 
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    32
"
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    33
!
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    34
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    35
!ToolApplicationModel class methodsFor:'documentation'!
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    36
756
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
    37
copyright
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
    38
"
784
b08b05900f30 copyright changed
tz
parents: 783
diff changeset
    39
 COPYRIGHT (c) 1997 by eXept Software AG
756
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
    40
              All Rights Reserved
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
    41
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
    42
 This software is furnished under a license and may be used
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
    43
 only in accordance with the terms of that license and with the
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
    44
 inclusion of the above copyright notice. This software may not
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
    45
 be provided or otherwise made available to, or used by, any
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
    46
 other person. No title to or ownership of the software is
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
    47
 hereby transferred.
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
    48
"
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
    49
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
    50
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
    51
!
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
    52
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    53
documentation
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    54
"
1200
a86be4f3fd69 added clearModifiedFlag
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
    55
    Framework class for tool applications (UIPainter, MenuEditor etc.).
a86be4f3fd69 added clearModifiedFlag
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
    56
    Provides hooks for modifiedChannels, history management,
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
    57
    showing help texts, about menu, help menu etc.
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    58
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    59
    [author:]
876
585929b1fec2 some cleans
tz
parents: 872
diff changeset
    60
        Thomas Zwick, eXept Software AG
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    61
"
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    62
! !
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    63
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    64
!ToolApplicationModel class methodsFor:'accessing'!
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    65
1150
5211197a2671 NEVER - redefine allInstances
Claus Gittinger <cg@exept.de>
parents: 1148
diff changeset
    66
allToolInstances
1089
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
    67
    ^ instances ? #()
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
    68
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
    69
    "Created: / 4.2.1999 / 15:34:55 / cg"
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
    70
!
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
    71
800
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    72
authorLinesForAboutBox
907
f4087882555a method comments added
tz
parents: 893
diff changeset
    73
    "extracts the author(s) from the documentation method."
800
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    74
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    75
    |firstClassWithDocumentation src s line lines|
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
    76
1555
ba83d682d20a implements -> includesSelector
Claus Gittinger <cg@exept.de>
parents: 1545
diff changeset
    77
    firstClassWithDocumentation := self class withAllSuperclasses detect:[:metacls| metacls includesSelector:#documentation].
800
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    78
    firstClassWithDocumentation notNil ifTrue:[
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    79
        (firstClassWithDocumentation inheritsFrom:ToolApplicationModel class) ifTrue:[
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    80
            src := (firstClassWithDocumentation compiledMethodAt:#documentation) source.
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    81
            src notNil ifTrue:[
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    82
                s := src readStream.
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    83
                s upToAll:'[author:]'.
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    84
                s nextLine.   "/ skip to end
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    85
                line := s nextLine.   "/ line after [author:]
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    86
                lines := OrderedCollection new.
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    87
                [line notNil and:[line notEmpty]] whileTrue:[
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    88
                    line := line trimBlanks.
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    89
                    line size > 1 ifTrue:[
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    90
                        lines add:line trimBlanks.
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    91
                        line := s nextLine.
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    92
                    ] ifFalse:[
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    93
                        line := nil
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    94
                    ]
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    95
                ].
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    96
                ^ lines.
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    97
            ]
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    98
        ]
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    99
    ].
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
   100
    ^ #('unnown')
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
   101
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
   102
    "Created: / 1.2.1998 / 15:41:43 / cg"
b98050cf7a43 better author extraction.
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
   103
    "Modified: / 1.2.1998 / 15:59:10 / cg"
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   104
!
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   105
1089
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
   106
forgetInstance:anInstance
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
   107
    instances remove:anInstance.
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
   108
    instances isEmpty ifTrue:[instances := nil].
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
   109
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
   110
    "Modified: / 4.2.1999 / 15:38:49 / cg"
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
   111
!
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
   112
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   113
label
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   114
    "returns the label for the tool instances of this class;
907
f4087882555a method comments added
tz
parents: 893
diff changeset
   115
     extracted from the class name;
f4087882555a method comments added
tz
parents: 893
diff changeset
   116
     can be redefined in subclasses"
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   117
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   118
    |label|
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   119
    label := ''.
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   120
    self name do:
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   121
    [:c|
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   122
        c isUppercase ifTrue: [label := label, $ ].
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   123
        label := label, c
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   124
    ].
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   125
    ^label trimBlanks
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   126
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   127
    "Modified: / 31.7.1998 / 18:04:18 / cg"
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   128
!
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   129
1089
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
   130
rememberInstance:anInstance
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
   131
    instances isNil ifTrue:[
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
   132
        instances := WeakIdentitySet new
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
   133
    ].
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
   134
    instances add:anInstance
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
   135
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
   136
    "Created: / 4.2.1999 / 15:33:43 / cg"
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
   137
    "Modified: / 4.2.1999 / 15:34:14 / cg"
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
   138
!
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
   139
850
cdf5ecf904e2 some obselete icons removed
tz
parents: 846
diff changeset
   140
settings
907
f4087882555a method comments added
tz
parents: 893
diff changeset
   141
    "returns the settings dictionary"
850
cdf5ecf904e2 some obselete icons removed
tz
parents: 846
diff changeset
   142
872
a1606dcbd38b better font setting routines
tz
parents: 871
diff changeset
   143
    settings isNil ifTrue: [settings := IdentityDictionary new].
a1606dcbd38b better font setting routines
tz
parents: 871
diff changeset
   144
    ^settings
850
cdf5ecf904e2 some obselete icons removed
tz
parents: 846
diff changeset
   145
!
cdf5ecf904e2 some obselete icons removed
tz
parents: 846
diff changeset
   146
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   147
showingHelp
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   148
    "returns true if active help is turned on for instances of this class"
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   149
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   150
    showingHelp isNil ifTrue: [showingHelp := true].
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   151
    ^showingHelp
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   152
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   153
    "Created: / 31.7.1998 / 18:03:38 / cg"
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   154
    "Modified: / 31.7.1998 / 18:16:55 / cg"
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   155
!
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   156
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   157
showingHelp: aBoolean
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   158
    "enable/disable active help for instances of this class"
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   159
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   160
    ^ showingHelp := aBoolean
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   161
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   162
    "Modified: / 31.7.1998 / 18:17:14 / cg"
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   163
! !
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   164
756
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
   165
!ToolApplicationModel class methodsFor:'clipboard'!
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
   166
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
   167
clipboard
907
f4087882555a method comments added
tz
parents: 893
diff changeset
   168
    "returns the clipboard of this tool class"
756
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
   169
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
   170
    ^clipboard
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
   171
!
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
   172
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
   173
clipboard: anEditObject
907
f4087882555a method comments added
tz
parents: 893
diff changeset
   174
    "sets the clipboard for this tool class"
756
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
   175
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
   176
    clipboard := anEditObject
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
   177
! !
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
   178
1043
32cd5ccbd94f made openAboutSTX a class method for sharability.
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
   179
!ToolApplicationModel class methodsFor:'help'!
32cd5ccbd94f made openAboutSTX a class method for sharability.
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
   180
32cd5ccbd94f made openAboutSTX a class method for sharability.
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
   181
openAboutSTX
32cd5ccbd94f made openAboutSTX a class method for sharability.
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
   182
    "opens an about box (on ST/X)"
32cd5ccbd94f made openAboutSTX a class method for sharability.
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
   183
32cd5ccbd94f made openAboutSTX a class method for sharability.
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
   184
    |box|
32cd5ccbd94f made openAboutSTX a class method for sharability.
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
   185
32cd5ccbd94f made openAboutSTX a class method for sharability.
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
   186
    AboutBox isNil ifTrue:[
32cd5ccbd94f made openAboutSTX a class method for sharability.
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
   187
        "/ this handles bad installations of ST/X,
32cd5ccbd94f made openAboutSTX a class method for sharability.
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
   188
        "/ where the AboutBox is missing.
32cd5ccbd94f made openAboutSTX a class method for sharability.
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
   189
        "/ (May vanish in the future)
32cd5ccbd94f made openAboutSTX a class method for sharability.
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
   190
        ^ self information:('Smalltalk/X rev.' , Smalltalk versionString)
32cd5ccbd94f made openAboutSTX a class method for sharability.
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
   191
    ].
32cd5ccbd94f made openAboutSTX a class method for sharability.
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
   192
32cd5ccbd94f made openAboutSTX a class method for sharability.
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
   193
    box := AboutBox new.
32cd5ccbd94f made openAboutSTX a class method for sharability.
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
   194
    box autoHideAfter:10 with:[].
1091
6816bfce45a3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1089
diff changeset
   195
    box showAtCenter
6816bfce45a3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1089
diff changeset
   196
"/    box showAtPointer
1043
32cd5ccbd94f made openAboutSTX a class method for sharability.
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
   197
32cd5ccbd94f made openAboutSTX a class method for sharability.
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
   198
    "Modified: / 14.8.1998 / 13:03:58 / cg"
32cd5ccbd94f made openAboutSTX a class method for sharability.
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
   199
    "Created: / 14.8.1998 / 13:17:43 / cg"
32cd5ccbd94f made openAboutSTX a class method for sharability.
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
   200
! !
32cd5ccbd94f made openAboutSTX a class method for sharability.
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
   201
762
2c25cc1b363e detour help texts into bottomed info label
tz
parents: 761
diff changeset
   202
!ToolApplicationModel class methodsFor:'help specs'!
2c25cc1b363e detour help texts into bottomed info label
tz
parents: 761
diff changeset
   203
1538
e906245e5171 flyByHelp
Claus Gittinger <cg@exept.de>
parents: 1530
diff changeset
   204
flyByHelpSpec
e906245e5171 flyByHelp
Claus Gittinger <cg@exept.de>
parents: 1530
diff changeset
   205
    <resource: #help>
e906245e5171 flyByHelp
Claus Gittinger <cg@exept.de>
parents: 1530
diff changeset
   206
1544
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   207
    ^super flyByHelpSpec addPairsFrom:#(
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   208
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   209
"/#commitCancel
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   210
"/'Cancels'
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   211
"/
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   212
"/#commitOK
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   213
"/'Commit'
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   214
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   215
#editCopy
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   216
'Copy to clipboard'
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   217
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   218
#editCut
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   219
'Move to clipboard'
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   220
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   221
#editDelete
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   222
'Delete'
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   223
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   224
#editMoveDown
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   225
'Move down'
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   226
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   227
#editMoveIn
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   228
'Move into next'
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   229
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   230
#editMoveInAbove
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   231
'Move into previous'
1538
e906245e5171 flyByHelp
Claus Gittinger <cg@exept.de>
parents: 1530
diff changeset
   232
1544
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   233
#editMoveOut
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   234
'Move out'
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   235
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   236
#editMoveUp
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   237
'Move up'
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   238
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   239
#editPaste
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   240
'Paste'
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   241
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   242
#editUndo
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   243
'Undo'
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   244
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   245
#fileBrowseClass
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   246
'Browse class'
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   247
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   248
#fileDefineClass
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   249
'Define class'
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   250
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   251
#fileDefineClassAndSelector
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   252
'Define class & selector'
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   253
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   254
#fileExit
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   255
'Exit'
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   256
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   257
#helpShowHelp
df243cbc29dd flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
   258
'Toggle help'
1538
e906245e5171 flyByHelp
Claus Gittinger <cg@exept.de>
parents: 1530
diff changeset
   259
)
e906245e5171 flyByHelp
Claus Gittinger <cg@exept.de>
parents: 1530
diff changeset
   260
!
e906245e5171 flyByHelp
Claus Gittinger <cg@exept.de>
parents: 1530
diff changeset
   261
762
2c25cc1b363e detour help texts into bottomed info label
tz
parents: 761
diff changeset
   262
helpSpec
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   263
    "This resource specification was automatically generated
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   264
     by the UIHelpTool of ST/X."
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   265
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   266
    "Do not manually edit this!! If it is corrupted,
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   267
     the UIHelpTool may not be able to read the specification."
762
2c25cc1b363e detour help texts into bottomed info label
tz
parents: 761
diff changeset
   268
2c25cc1b363e detour help texts into bottomed info label
tz
parents: 761
diff changeset
   269
    "
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   270
     UIHelpTool openOnClass:ToolApplicationModel    
762
2c25cc1b363e detour help texts into bottomed info label
tz
parents: 761
diff changeset
   271
    "
2c25cc1b363e detour help texts into bottomed info label
tz
parents: 761
diff changeset
   272
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   273
    <resource: #help>
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   274
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   275
    ^super helpSpec addPairsFrom:#(
762
2c25cc1b363e detour help texts into bottomed info label
tz
parents: 761
diff changeset
   276
823
d812eae12888 help texts added
tz
parents: 822
diff changeset
   277
#about
1284
62d950568786 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1283
diff changeset
   278
'Info functions.'
823
d812eae12888 help texts added
tz
parents: 822
diff changeset
   279
762
2c25cc1b363e detour help texts into bottomed info label
tz
parents: 761
diff changeset
   280
#aboutSTX
1283
1671949a97be checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
   281
'Info about the running ST/X.'
762
2c25cc1b363e detour help texts into bottomed info label
tz
parents: 761
diff changeset
   282
2c25cc1b363e detour help texts into bottomed info label
tz
parents: 761
diff changeset
   283
#aboutThisAppliaction
1283
1671949a97be checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
   284
'Info about that applications release and author.'
762
2c25cc1b363e detour help texts into bottomed info label
tz
parents: 761
diff changeset
   285
823
d812eae12888 help texts added
tz
parents: 822
diff changeset
   286
#add
834
ac1655bd31bb class category changed
tz
parents: 833
diff changeset
   287
'Add functions.'
823
d812eae12888 help texts added
tz
parents: 822
diff changeset
   288
d812eae12888 help texts added
tz
parents: 822
diff changeset
   289
#commitCancel
910
670bffab7041 help texts
Claus Gittinger <cg@exept.de>
parents: 907
diff changeset
   290
'Cancels changes.'
823
d812eae12888 help texts added
tz
parents: 822
diff changeset
   291
d812eae12888 help texts added
tz
parents: 822
diff changeset
   292
#commitOK
910
670bffab7041 help texts
Claus Gittinger <cg@exept.de>
parents: 907
diff changeset
   293
'Commit changes.'
823
d812eae12888 help texts added
tz
parents: 822
diff changeset
   294
d812eae12888 help texts added
tz
parents: 822
diff changeset
   295
#edit
834
ac1655bd31bb class category changed
tz
parents: 833
diff changeset
   296
'Edit functions.'
823
d812eae12888 help texts added
tz
parents: 822
diff changeset
   297
d812eae12888 help texts added
tz
parents: 822
diff changeset
   298
#editCopy
910
670bffab7041 help texts
Claus Gittinger <cg@exept.de>
parents: 907
diff changeset
   299
'Copy the selected item(s) to the clipboard.'
762
2c25cc1b363e detour help texts into bottomed info label
tz
parents: 761
diff changeset
   300
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   301
#editCut
910
670bffab7041 help texts
Claus Gittinger <cg@exept.de>
parents: 907
diff changeset
   302
'Move the selected item(s) to the clipboard.'
853
19f2d0152fcb time clock only for the launcher
tz
parents: 851
diff changeset
   303
19f2d0152fcb time clock only for the launcher
tz
parents: 851
diff changeset
   304
#editDelete
910
670bffab7041 help texts
Claus Gittinger <cg@exept.de>
parents: 907
diff changeset
   305
'Delete the selected item(s).'
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   306
823
d812eae12888 help texts added
tz
parents: 822
diff changeset
   307
#editMoveDown
1471
50775b15e283 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
   308
'Move the selected item one step down (in the order list).'
823
d812eae12888 help texts added
tz
parents: 822
diff changeset
   309
d812eae12888 help texts added
tz
parents: 822
diff changeset
   310
#editMoveIn
1471
50775b15e283 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
   311
'Move the selected item into the next item (as child item).'
50775b15e283 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
   312
50775b15e283 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
   313
#editMoveInAbove
50775b15e283 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
   314
'Move the selected item into the previous item (as child item).'
823
d812eae12888 help texts added
tz
parents: 822
diff changeset
   315
d812eae12888 help texts added
tz
parents: 822
diff changeset
   316
#editMoveOut
1471
50775b15e283 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
   317
'Move the selected item out of its parent item.'
823
d812eae12888 help texts added
tz
parents: 822
diff changeset
   318
d812eae12888 help texts added
tz
parents: 822
diff changeset
   319
#editMoveUp
1471
50775b15e283 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1427
diff changeset
   320
'Move the selected item one step up (in the order list).'
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   321
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   322
#editPaste
910
670bffab7041 help texts
Claus Gittinger <cg@exept.de>
parents: 907
diff changeset
   323
'Paste from the clipboard.'
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   324
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   325
#editUndo
910
670bffab7041 help texts
Claus Gittinger <cg@exept.de>
parents: 907
diff changeset
   326
'Undo the last action.'
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   327
823
d812eae12888 help texts added
tz
parents: 822
diff changeset
   328
#file
834
ac1655bd31bb class category changed
tz
parents: 833
diff changeset
   329
'File functions.'
805
d4c4ee3bb474 now, help menu is very rudimentarily
tz
parents: 804
diff changeset
   330
823
d812eae12888 help texts added
tz
parents: 822
diff changeset
   331
#fileBrowseClass
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   332
'Open a System Browser on the current class.'
805
d4c4ee3bb474 now, help menu is very rudimentarily
tz
parents: 804
diff changeset
   333
823
d812eae12888 help texts added
tz
parents: 822
diff changeset
   334
#fileDefineClass
910
670bffab7041 help texts
Claus Gittinger <cg@exept.de>
parents: 907
diff changeset
   335
'Open a dialog to define the current class.'
805
d4c4ee3bb474 now, help menu is very rudimentarily
tz
parents: 804
diff changeset
   336
d4c4ee3bb474 now, help menu is very rudimentarily
tz
parents: 804
diff changeset
   337
#fileDefineClassAndSelector
910
670bffab7041 help texts
Claus Gittinger <cg@exept.de>
parents: 907
diff changeset
   338
'Open a dialog to define the current class and selector.'
805
d4c4ee3bb474 now, help menu is very rudimentarily
tz
parents: 804
diff changeset
   339
823
d812eae12888 help texts added
tz
parents: 822
diff changeset
   340
#fileExit
910
670bffab7041 help texts
Claus Gittinger <cg@exept.de>
parents: 907
diff changeset
   341
'Exit this application.'
823
d812eae12888 help texts added
tz
parents: 822
diff changeset
   342
922
94a40763e3bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 920
diff changeset
   343
#generate
94a40763e3bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 920
diff changeset
   344
'Code generation.'
94a40763e3bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 920
diff changeset
   345
823
d812eae12888 help texts added
tz
parents: 822
diff changeset
   346
#help
834
ac1655bd31bb class category changed
tz
parents: 833
diff changeset
   347
'Help functions.'
823
d812eae12888 help texts added
tz
parents: 822
diff changeset
   348
876
585929b1fec2 some cleans
tz
parents: 872
diff changeset
   349
#helpHelpTool
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   350
'Show the Help Tools documentation.'
876
585929b1fec2 some cleans
tz
parents: 872
diff changeset
   351
823
d812eae12888 help texts added
tz
parents: 822
diff changeset
   352
#helpShowHelp
910
670bffab7041 help texts
Claus Gittinger <cg@exept.de>
parents: 907
diff changeset
   353
'Toggle display of help texts.'
823
d812eae12888 help texts added
tz
parents: 822
diff changeset
   354
d812eae12888 help texts added
tz
parents: 822
diff changeset
   355
#helpTutorial
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   356
'Show this applications documentation.'
823
d812eae12888 help texts added
tz
parents: 822
diff changeset
   357
d812eae12888 help texts added
tz
parents: 822
diff changeset
   358
#history
834
ac1655bd31bb class category changed
tz
parents: 833
diff changeset
   359
'History functions.'
803
f6ca4eb5da39 help texts for the history added
tz
parents: 802
diff changeset
   360
f6ca4eb5da39 help texts for the history added
tz
parents: 802
diff changeset
   361
#historyEmptyMenu
1016
57892160f78e help spec.
Claus Gittinger <cg@exept.de>
parents: 1015
diff changeset
   362
'Clear the history.'
803
f6ca4eb5da39 help texts for the history added
tz
parents: 802
diff changeset
   363
823
d812eae12888 help texts added
tz
parents: 822
diff changeset
   364
#historyMenuItem
1016
57892160f78e help spec.
Claus Gittinger <cg@exept.de>
parents: 1015
diff changeset
   365
'Switch to that item.'
762
2c25cc1b363e detour help texts into bottomed info label
tz
parents: 761
diff changeset
   366
893
8a142b17a0c8 some cleans
tz
parents: 892
diff changeset
   367
#settings
8a142b17a0c8 some cleans
tz
parents: 892
diff changeset
   368
'Settings functions.'
8a142b17a0c8 some cleans
tz
parents: 892
diff changeset
   369
823
d812eae12888 help texts added
tz
parents: 822
diff changeset
   370
#test
834
ac1655bd31bb class category changed
tz
parents: 833
diff changeset
   371
'Test functions.'
762
2c25cc1b363e detour help texts into bottomed info label
tz
parents: 761
diff changeset
   372
2c25cc1b363e detour help texts into bottomed info label
tz
parents: 761
diff changeset
   373
)
2c25cc1b363e detour help texts into bottomed info label
tz
parents: 761
diff changeset
   374
! !
2c25cc1b363e detour help texts into bottomed info label
tz
parents: 761
diff changeset
   375
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   376
!ToolApplicationModel class methodsFor:'history'!
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   377
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   378
getHistory
907
f4087882555a method comments added
tz
parents: 893
diff changeset
   379
    "returns the history for this tool class"
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   380
761
cc0404f8aec6 #getHistory changed because here #? doesn't work correctly
tz
parents: 760
diff changeset
   381
    history isNil ifTrue: [history := OrderedCollection new].
cc0404f8aec6 #getHistory changed because here #? doesn't work correctly
tz
parents: 760
diff changeset
   382
    ^history
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   383
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   384
!
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   385
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   386
historyMaxSize
907
f4087882555a method comments added
tz
parents: 893
diff changeset
   387
    "returns the maximum size for the history of this tool class"
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   388
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   389
    ^10
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   390
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   391
! !
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   392
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   393
!ToolApplicationModel class methodsFor:'image specs'!
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   394
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   395
desktopIcon
907
f4087882555a method comments added
tz
parents: 893
diff changeset
   396
    "returns the icon used for the desktop"
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   397
1054
ab639131be1f find all icons in getAllImageSelectorsFrom:(walk class hierarchy);
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
   398
    <resource: #programImage>
ab639131be1f find all icons in getAllImageSelectorsFrom:(walk class hierarchy);
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
   399
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   400
    ^Icon
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   401
        constantNamed:#'ToolApplicationModel desktopIcon'
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   402
        ifAbsentPut:
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   403
        [
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   404
            |desktopIcon|
990
13f2fe627628 images moved to class Icon
tz
parents: 987
diff changeset
   405
            desktopIcon := Icon stxIcon.
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   406
            desktopIcon magnifiedBy: Display preferredIconSize/desktopIcon extent
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   407
        ]
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   408
1054
ab639131be1f find all icons in getAllImageSelectorsFrom:(walk class hierarchy);
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
   409
    "Modified: / 24.8.1998 / 21:34:38 / cg"
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   410
!
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   411
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   412
menuIcon
907
f4087882555a method comments added
tz
parents: 893
diff changeset
   413
    "returns the icon used for the menu bar"
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   414
1054
ab639131be1f find all icons in getAllImageSelectorsFrom:(walk class hierarchy);
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
   415
    <resource: #programImage>
ab639131be1f find all icons in getAllImageSelectorsFrom:(walk class hierarchy);
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
   416
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   417
    ^Icon
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   418
        constantNamed:#'ToolApplicationModel menuIcon'
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   419
        ifAbsentPut:
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   420
        [
1165
70fd3edc13b4 care for device-less menuFont
Claus Gittinger <cg@exept.de>
parents: 1157
diff changeset
   421
            |menuIcon myDevice|
990
13f2fe627628 images moved to class Icon
tz
parents: 987
diff changeset
   422
            menuIcon := Icon stxIcon.
1165
70fd3edc13b4 care for device-less menuFont
Claus Gittinger <cg@exept.de>
parents: 1157
diff changeset
   423
            myDevice := Screen current.
70fd3edc13b4 care for device-less menuFont
Claus Gittinger <cg@exept.de>
parents: 1157
diff changeset
   424
            menuIcon magnifiedBy: (MenuPanel defaultFont heightOn:myDevice)/menuIcon height
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   425
        ]
1054
ab639131be1f find all icons in getAllImageSelectorsFrom:(walk class hierarchy);
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
   426
ab639131be1f find all icons in getAllImageSelectorsFrom:(walk class hierarchy);
Claus Gittinger <cg@exept.de>
parents: 1051
diff changeset
   427
    "Modified: / 24.8.1998 / 21:34:33 / cg"
987
54c15a2642f6 images moved to class Icon
tz
parents: 984
diff changeset
   428
! !
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   429
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   430
!ToolApplicationModel class methodsFor:'interface specs'!
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   431
797
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   432
windowSpecForCommit
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   433
    "This resource specification was automatically generated
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   434
     by the UIPainter of ST/X."
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   435
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   436
    "Do not manually edit this!! If it is corrupted,
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   437
     the UIPainter may not be able to read the specification."
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   438
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   439
    "
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   440
     UIPainter new openOnClass:ToolApplicationModel andSelector:#windowSpecForCommit
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   441
     ToolApplicationModel new openInterface:#windowSpecForCommit
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   442
    "
797
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   443
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   444
    <resource: #canvas>
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   445
1259
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   446
    ^ 
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   447
     #(#FullSpec
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   448
        #name: #windowSpecForCommit
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   449
        #window: 
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   450
       #(#WindowSpec
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   451
          #label: 'Commit Buttons'
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   452
          #name: 'Commit Buttons'
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   453
          #min: #(#Point 100 22)
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   454
          #max: #(#Point 1152 900)
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   455
          #bounds: #(#Rectangle 18 51 318 111)
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   456
        )
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   457
        #component: 
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   458
       #(#SpecCollection
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   459
          #collection: #(
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   460
           #(#HorizontalPanelViewSpec
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   461
              #name: 'HorizontalPanel1'
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   462
              #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   463
              #horizontalLayout: #fitSpace
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   464
              #verticalLayout: #centerMax
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   465
              #horizontalSpace: 3
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   466
              #verticalSpace: 3
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   467
              #reverseOrderIfOKAtLeft: true
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   468
              #component: 
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   469
             #(#SpecCollection
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   470
                #collection: #(
797
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   471
                 #(#ActionButtonSpec
1259
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   472
                    #label: 'Cancel'
859
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   473
                    #name: 'cancelButton'
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   474
                    #activeHelpKey: #commitCancel
927
2e4efdc9bc69 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
   475
                    #translateLabel: true
1259
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   476
                    #resizeForLabel: true
859
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   477
                    #tabable: true
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   478
                    #model: #cancel
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   479
                    #enableChannel: #valueOfEnablingCommitButtons
1259
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   480
                    #useDefaultExtent: true
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   481
                  )
797
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   482
                 #(#ActionButtonSpec
1259
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   483
                    #label: 'OK'
859
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   484
                    #name: 'okButton'
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   485
                    #activeHelpKey: #commitOK
927
2e4efdc9bc69 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
   486
                    #translateLabel: true
1259
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   487
                    #resizeForLabel: true
859
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   488
                    #tabable: true
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   489
                    #model: #accept
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   490
                    #enableChannel: #valueOfEnablingCommitButtons
1259
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   491
                    #useDefaultExtent: true
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   492
                  )
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   493
                 )
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   494
               
797
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   495
              )
1259
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   496
            )
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   497
           )
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   498
         
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   499
        )
797
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   500
      )
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   501
!
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   502
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   503
windowSpecForCommitWithoutChannels
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   504
    "This resource specification was automatically generated
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   505
     by the UIPainter of ST/X."
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   506
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   507
    "Do not manually edit this!! If it is corrupted,
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   508
     the UIPainter may not be able to read the specification."
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   509
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   510
    "
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   511
     UIPainter new openOnClass:ToolApplicationModel andSelector:#windowSpecForCommitWithoutChannels
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   512
     ToolApplicationModel new openInterface:#windowSpecForCommitWithoutChannels
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   513
    "
797
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   514
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   515
    <resource: #canvas>
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   516
1259
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   517
    ^ 
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   518
     #(#FullSpec
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   519
        #name: #windowSpecForCommitWithoutChannels
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   520
        #window: 
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   521
       #(#WindowSpec
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   522
          #label: 'Commit Buttons Without Channels'
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   523
          #name: 'Commit Buttons Without Channels'
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   524
          #min: #(#Point 100 22)
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   525
          #max: #(#Point 1152 900)
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   526
          #bounds: #(#Rectangle 18 51 318 97)
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   527
        )
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   528
        #component: 
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   529
       #(#SpecCollection
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   530
          #collection: #(
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   531
           #(#HorizontalPanelViewSpec
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   532
              #name: 'HorizontalPanel1'
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   533
              #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   534
              #horizontalLayout: #fitSpace
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   535
              #verticalLayout: #centerMax
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   536
              #horizontalSpace: 3
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   537
              #verticalSpace: 3
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   538
              #reverseOrderIfOKAtLeft: true
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   539
              #component: 
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   540
             #(#SpecCollection
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   541
                #collection: #(
797
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   542
                 #(#ActionButtonSpec
1259
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   543
                    #label: 'Cancel'
859
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   544
                    #name: 'cancelButton'
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   545
                    #activeHelpKey: #commitCancel
927
2e4efdc9bc69 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
   546
                    #translateLabel: true
1259
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   547
                    #resizeForLabel: true
859
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   548
                    #tabable: true
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   549
                    #model: #cancel
1259
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   550
                    #useDefaultExtent: true
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   551
                  )
797
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   552
                 #(#ActionButtonSpec
1259
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   553
                    #label: 'OK'
859
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   554
                    #name: 'okButton'
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   555
                    #activeHelpKey: #commitOK
927
2e4efdc9bc69 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
   556
                    #translateLabel: true
1259
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   557
                    #resizeForLabel: true
859
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   558
                    #tabable: true
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   559
                    #model: #accept
1259
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   560
                    #useDefaultExtent: true
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   561
                  )
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   562
                 )
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   563
               
797
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   564
              )
1259
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   565
            )
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   566
           )
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   567
         
394ab30e07e0 OK/Cancel button spec (reverse if OK atLeft)
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
   568
        )
797
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   569
      )
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   570
!
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   571
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   572
windowSpecForInfoBar
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   573
    "This resource specification was automatically generated
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   574
     by the UIPainter of ST/X."
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   575
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   576
    "Do not manually edit this!! If it is corrupted,
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   577
     the UIPainter may not be able to read the specification."
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   578
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   579
    "
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   580
     UIPainter new openOnClass:ToolApplicationModel andSelector:#windowSpecForInfoBar
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   581
     ToolApplicationModel new openInterface:#windowSpecForInfoBar
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   582
    "
797
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   583
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   584
    <resource: #canvas>
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   585
1530
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   586
    ^ 
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   587
     #(#FullSpec
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   588
        #name: #windowSpecForInfoBar
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   589
        #window: 
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   590
       #(#WindowSpec
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   591
          #label: 'Info Bar'
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   592
          #name: 'Info Bar'
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   593
          #min: #(#Point 400 320)
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   594
          #max: #(#Point 1152 900)
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   595
          #bounds: #(#Rectangle 13 23 513 369)
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   596
          #menu: #menu
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   597
        )
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   598
        #component: 
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   599
       #(#SpecCollection
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   600
          #collection: #(
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   601
           #(#ViewSpec
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   602
              #name: 'view'
1545
baac1fe1489f infoBar layout
Claus Gittinger <cg@exept.de>
parents: 1544
diff changeset
   603
              #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
1530
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   604
              #component: 
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   605
             #(#SpecCollection
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   606
                #collection: #(
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   607
                 #(#LabelSpec
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   608
                    #name: 'infoLabel'
1545
baac1fe1489f infoBar layout
Claus Gittinger <cg@exept.de>
parents: 1544
diff changeset
   609
                    #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
1530
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   610
                    #level: -1
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   611
                    #labelChannel: #valueOfInfoLabel
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   612
                    #resizeForLabel: false
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   613
                    #adjust: #left
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   614
                  )
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   615
                 )
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   616
               
797
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   617
              )
1530
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   618
            )
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   619
           )
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   620
         
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   621
        )
797
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   622
      )
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   623
!
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   624
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   625
windowSpecForInfoBarWithClock
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   626
    "This resource specification was automatically generated
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   627
     by the UIPainter of ST/X."
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   628
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   629
    "Do not manually edit this!! If it is corrupted,
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   630
     the UIPainter may not be able to read the specification."
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   631
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   632
    "
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   633
     UIPainter new openOnClass:ToolApplicationModel andSelector:#windowSpecForInfoBarWithClock
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   634
     ToolApplicationModel new openInterface:#windowSpecForInfoBarWithClock
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   635
    "
797
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   636
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   637
    <resource: #canvas>
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   638
1331
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   639
    ^ 
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   640
     #(#FullSpec
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   641
        #name: #windowSpecForInfoBarWithClock
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   642
        #window: 
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   643
       #(#WindowSpec
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   644
          #label: 'Info Bar'
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   645
          #name: 'Info Bar'
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   646
          #min: #(#Point 400 320)
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   647
          #max: #(#Point 1152 900)
1530
8869f644158e info geometry
Claus Gittinger <cg@exept.de>
parents: 1526
diff changeset
   648
          #bounds: #(#Rectangle 13 23 513 343)
1331
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   649
          #menu: #menu
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   650
        )
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   651
        #component: 
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   652
       #(#SpecCollection
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   653
          #collection: #(
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   654
           #(#VariableHorizontalPanelSpec
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   655
              #name: 'VariableHorizontalPanel1'
1545
baac1fe1489f infoBar layout
Claus Gittinger <cg@exept.de>
parents: 1544
diff changeset
   656
              #layout: #(#LayoutFrame 0 0 0 0 0 1 0 1)
1331
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   657
              #barWidth: 2
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   658
              #showHandle: false
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   659
              #component: 
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   660
             #(#SpecCollection
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   661
                #collection: #(
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   662
                 #(#LabelSpec
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   663
                    #name: 'infoLabel'
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   664
                    #level: -1
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   665
                    #labelChannel: #valueOfInfoLabel
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   666
                    #resizeForLabel: false
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   667
                    #adjust: #left
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   668
                  )
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   669
                 #(#LabelSpec
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   670
                    #name: 'timeLabel'
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   671
                    #level: -1
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   672
                    #labelChannel: #valueOfTimeLabel
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   673
                    #resizeForLabel: false
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   674
                    #adjust: #rightLeft
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   675
                  )
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   676
                 )
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   677
               
797
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   678
              )
1331
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   679
              #handles: #(#Any 0.854 1.0)
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   680
            )
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   681
           )
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   682
         
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   683
        )
797
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   684
      )
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   685
! !
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   686
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   687
!ToolApplicationModel class methodsFor:'menu specs'!
bacf790c536d info bar subspec changed
tz
parents: 792
diff changeset
   688
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   689
menuAbout
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   690
    "This resource specification was automatically generated
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   691
     by the MenuEditor of ST/X."
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   692
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   693
    "Do not manually edit this!! If it is corrupted,
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   694
     the MenuEditor may not be able to read the specification."
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   695
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   696
    "
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   697
     MenuEditor new openOnClass:ToolApplicationModel andSelector:#menuAbout
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   698
     (Menu new fromLiteralArrayEncoding:(ToolApplicationModel menuAbout)) startUp
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   699
    "
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   700
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   701
    <resource: #menu>
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   702
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   703
    ^
859
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   704
     
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   705
       #(#Menu
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   706
          
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   707
           #(
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   708
             #(#MenuItem
859
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   709
                #label: 'About Smalltalk/X...'
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   710
                #translateLabel: true
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   711
                #value: #openAbout
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   712
                #activeHelpKey: #aboutSTX
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   713
            )
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   714
             #(#MenuItem
859
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   715
                #label: '-'
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   716
            )
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   717
             #(#MenuItem
922
94a40763e3bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 920
diff changeset
   718
                #label: 'About this Application...'
859
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   719
                #translateLabel: true
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   720
                #value: #openAboutThisApplication
5d6a438f84d0 docu call changed
tz
parents: 858
diff changeset
   721
                #activeHelpKey: #aboutThisAppliaction
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   722
            )
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   723
          ) nil
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   724
          nil
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   725
      )
922
94a40763e3bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 920
diff changeset
   726
94a40763e3bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 920
diff changeset
   727
    "Modified: / 19.5.1998 / 21:44:09 / cg"
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   728
!
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   729
1104
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   730
menuHelp
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   731
    "This resource specification was automatically generated
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   732
     by the MenuEditor of ST/X."
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   733
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   734
    "Do not manually edit this!! If it is corrupted,
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   735
     the MenuEditor may not be able to read the specification."
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   736
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   737
    "
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   738
     MenuEditor new openOnClass:ToolApplicationModel andSelector:#menuHelp
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   739
     (Menu new fromLiteralArrayEncoding:(ToolApplicationModel menuHelp)) startUp
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   740
    "
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   741
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   742
    <resource: #menu>
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   743
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   744
    ^
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   745
     
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   746
       #(#Menu
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   747
          
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   748
           #(
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   749
             #(#MenuItem
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   750
                #label: 'Documentation'
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   751
                #translateLabel: true
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   752
                #value: #openDocumentation
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   753
                #activeHelpKey: #helpTutorial
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   754
                #enabled: #valueOfHavingDocumentation
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   755
            )
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   756
             #(#MenuItem
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   757
                #label: '-'
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   758
            )
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   759
             #(#MenuItem
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   760
                #label: 'Show Help Texts'
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   761
                #translateLabel: true
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   762
                #activeHelpKey: #helpShowHelp
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   763
                #indication: #showingHelp:
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   764
            )
1516
51a2a79c6f98 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
   765
                       #(#MenuItem
51a2a79c6f98 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
   766
                          #label: '-'
51a2a79c6f98 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
   767
                      )
51a2a79c6f98 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
   768
                       #(#MenuItem
51a2a79c6f98 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
   769
                          #label: 'About this Application...'
51a2a79c6f98 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
   770
                          #translateLabel: true
51a2a79c6f98 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
   771
                          #value: #openAboutThisApplication
51a2a79c6f98 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
   772
                          #activeHelpKey: #aboutThisAppliaction
51a2a79c6f98 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
   773
                      )
1104
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   774
          ) nil
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   775
          nil
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   776
      )
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   777
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   778
    "Modified: / 31.7.1998 / 18:19:42 / cg"
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   779
!
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   780
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   781
xxxmenuFont
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   782
    "This resource specification was automatically generated
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   783
     by the MenuEditor of ST/X."
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   784
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   785
    "Do not manually edit this!! If it is corrupted,
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   786
     the MenuEditor may not be able to read the specification."
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   787
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   788
    "
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   789
     MenuEditor new openOnClass:ToolApplicationModel andSelector:#menuFont
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   790
     (Menu new fromLiteralArrayEncoding:(ToolApplicationModel menuFont)) startUp
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   791
    "
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   792
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   793
    <resource: #menu>
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   794
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   795
    ^
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   796
     
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   797
       #(#Menu
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   798
          
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   799
           #(
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   800
             #(#MenuItem
872
a1606dcbd38b better font setting routines
tz
parents: 871
diff changeset
   801
                #label: 'Label...'
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   802
                #translateLabel: true
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   803
                #value: #chooseFont:
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   804
                #argument: 'Label Font'
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   805
            )
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   806
             #(#MenuItem
872
a1606dcbd38b better font setting routines
tz
parents: 871
diff changeset
   807
                #label: 'Button...'
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   808
                #translateLabel: true
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   809
                #value: #chooseFont:
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   810
                #argument: 'Button Font'
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   811
            )
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   812
             #(#MenuItem
872
a1606dcbd38b better font setting routines
tz
parents: 871
diff changeset
   813
                #label: 'Edit...'
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   814
                #translateLabel: true
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   815
                #value: #chooseFont:
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   816
                #argument: 'Edit Font'
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   817
            )
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   818
             #(#MenuItem
872
a1606dcbd38b better font setting routines
tz
parents: 871
diff changeset
   819
                #label: 'List...'
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   820
                #translateLabel: true
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   821
                #value: #chooseFont:
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   822
                #argument: 'List Font'
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   823
            )
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   824
             #(#MenuItem
872
a1606dcbd38b better font setting routines
tz
parents: 871
diff changeset
   825
                #label: 'Tree List...'
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   826
                #translateLabel: true
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   827
                #value: #chooseFont:
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   828
                #argument: 'Tree List Font'
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   829
            )
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   830
             #(#MenuItem
872
a1606dcbd38b better font setting routines
tz
parents: 871
diff changeset
   831
                #label: 'Note Book...'
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   832
                #translateLabel: true
872
a1606dcbd38b better font setting routines
tz
parents: 871
diff changeset
   833
                #value: #chooseFont:
a1606dcbd38b better font setting routines
tz
parents: 871
diff changeset
   834
                #argument: 'Note Book Font'
a1606dcbd38b better font setting routines
tz
parents: 871
diff changeset
   835
            )
a1606dcbd38b better font setting routines
tz
parents: 871
diff changeset
   836
             #(#MenuItem
a1606dcbd38b better font setting routines
tz
parents: 871
diff changeset
   837
                #label: 'Framed Box...'
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   838
                #translateLabel: true
872
a1606dcbd38b better font setting routines
tz
parents: 871
diff changeset
   839
                #value: #chooseFont:
a1606dcbd38b better font setting routines
tz
parents: 871
diff changeset
   840
                #argument: 'Framed Box Font'
a1606dcbd38b better font setting routines
tz
parents: 871
diff changeset
   841
            )
a1606dcbd38b better font setting routines
tz
parents: 871
diff changeset
   842
             #(#MenuItem
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   843
                #label: '-'
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   844
            )
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   845
             #(#MenuItem
872
a1606dcbd38b better font setting routines
tz
parents: 871
diff changeset
   846
                #label: 'Reset'
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   847
                #translateLabel: true
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   848
                #value: #resetFonts
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   849
            )
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   850
          ) nil
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   851
          nil
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   852
      )
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   853
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   854
    "Modified: / 31.7.1998 / 18:55:34 / cg"
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   855
! !
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   856
907
f4087882555a method comments added
tz
parents: 893
diff changeset
   857
!ToolApplicationModel class methodsFor:'queries'!
f4087882555a method comments added
tz
parents: 893
diff changeset
   858
f4087882555a method comments added
tz
parents: 893
diff changeset
   859
isVisualStartable
1427
b3e355574ccf comment only
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
   860
    "return true, if this application can be started via #open.
b3e355574ccf comment only
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
   861
     (to allow start of a change browser via double-click in the browser)"
907
f4087882555a method comments added
tz
parents: 893
diff changeset
   862
f4087882555a method comments added
tz
parents: 893
diff changeset
   863
    self == ToolApplicationModel ifTrue:[^false].
f4087882555a method comments added
tz
parents: 893
diff changeset
   864
    ^super isVisualStartable
f4087882555a method comments added
tz
parents: 893
diff changeset
   865
! !
f4087882555a method comments added
tz
parents: 893
diff changeset
   866
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   867
!ToolApplicationModel class methodsFor:'startup / release'!
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   868
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   869
preSnapshot
907
f4087882555a method comments added
tz
parents: 893
diff changeset
   870
    "removes the clipboard before snap shoting"
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   871
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   872
    clipboard := nil
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   873
!
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   874
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   875
uninitialize
907
f4087882555a method comments added
tz
parents: 893
diff changeset
   876
    "resets the class instance variables"
760
26cf45040420 #preferredExtent cleaned
tz
parents: 758
diff changeset
   877
1089
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
   878
    settings := instances := showingHelp := history := clipboard := nil
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
   879
1089
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
   880
    "
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
   881
     self withAllSubclasses do:[:c | c uninitialize]
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
   882
    "
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
   883
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
   884
    "Modified: / 4.2.1999 / 15:37:43 / cg"
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   885
! !
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   886
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   887
!ToolApplicationModel methodsFor:'aspects'!
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   888
1147
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   889
acceptChannel
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   890
    "returns a valueHolder which can be set to true to force all inputFields
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   891
     to accept their value."
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   892
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   893
    |holder|
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   894
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   895
    (holder := builder bindingAt:#acceptChannel) isNil ifTrue:[
1157
feeae3138d3d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1150
diff changeset
   896
        builder aspectAt:#acceptChannel put:(holder :=  ValueHolder with:false).
1147
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   897
    ].
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   898
    ^ holder
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   899
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   900
    "Modified: / 21.5.1998 / 03:39:49 / cg"
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   901
!
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   902
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   903
modifiedChannel
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   904
    "returns a valueHolder which is set to true, whenever any of
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   905
     my editfields is modified - this is hooked to
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   906
     the valueOfEnablingCommitButtons channel"
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   907
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   908
    |holder|
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   909
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   910
    (holder := builder bindingAt:#modifiedChannel) isNil ifTrue:[
1157
feeae3138d3d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1150
diff changeset
   911
        builder aspectAt:#modifiedChannel put:(holder :=  ValueHolder with:false).
1147
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   912
        holder 
1331
7bb366803653 resizable info/clock bar
Claus Gittinger <cg@exept.de>
parents: 1323
diff changeset
   913
            onChangeEvaluate:[
1148
b0c0506d044b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1147
diff changeset
   914
                holder value ifTrue:[
b0c0506d044b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1147
diff changeset
   915
                    self valueOfEnablingCommitButtons value:true.
1147
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   916
                ]
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   917
               ]
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   918
    ].
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   919
    ^ holder
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   920
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   921
    "Modified: / 21.5.1998 / 03:39:49 / cg"
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   922
!
bbaa243ddd1c accept & modifiedChannels
Claus Gittinger <cg@exept.de>
parents: 1138
diff changeset
   923
822
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
   924
valueOfCanCopy
907
f4087882555a method comments added
tz
parents: 893
diff changeset
   925
    "returns whether can copy as value holder"
822
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
   926
936
d3d50ac7cdd0 code compression
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
   927
    ^ builder booleanValueAspectFor:#valueOfCanCopy
822
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
   928
936
d3d50ac7cdd0 code compression
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
   929
    "Modified: / 21.5.1998 / 03:39:05 / cg"
822
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
   930
!
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
   931
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
   932
valueOfCanCut
907
f4087882555a method comments added
tz
parents: 893
diff changeset
   933
    "returns whether can paste as value holder"
822
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
   934
936
d3d50ac7cdd0 code compression
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
   935
    ^ builder booleanValueAspectFor:#valueOfCanCut
822
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
   936
936
d3d50ac7cdd0 code compression
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
   937
    "Modified: / 21.5.1998 / 03:39:13 / cg"
822
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
   938
!
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
   939
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
   940
valueOfCanPaste
907
f4087882555a method comments added
tz
parents: 893
diff changeset
   941
    "returns whether can paste as value holder"
822
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
   942
936
d3d50ac7cdd0 code compression
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
   943
    ^ builder booleanValueAspectFor:#valueOfCanPaste
822
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
   944
936
d3d50ac7cdd0 code compression
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
   945
    "Modified: / 21.5.1998 / 03:39:22 / cg"
822
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
   946
!
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
   947
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
   948
valueOfCanUndo
907
f4087882555a method comments added
tz
parents: 893
diff changeset
   949
    "returns whether can undo as value holder"
822
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
   950
936
d3d50ac7cdd0 code compression
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
   951
    ^ builder booleanValueAspectFor:#valueOfCanUndo
822
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
   952
936
d3d50ac7cdd0 code compression
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
   953
    "Modified: / 21.5.1998 / 03:39:31 / cg"
822
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
   954
!
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
   955
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   956
valueOfEnablingCommitButtons
907
f4087882555a method comments added
tz
parents: 893
diff changeset
   957
    "returns the enabling of the commit of this tool as value holder"
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   958
936
d3d50ac7cdd0 code compression
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
   959
    ^ builder booleanValueAspectFor:#valueOfEnablingCommitButtons
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   960
936
d3d50ac7cdd0 code compression
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
   961
    "Modified: / 21.5.1998 / 03:39:49 / cg"
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   962
!
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   963
858
a36ca9158a69 show help bug fixed
tz
parents: 853
diff changeset
   964
valueOfHavingDocumentation
1004
6dc621535e26 valueOfHavingDocumentation must be set
tz
parents: 990
diff changeset
   965
    "returns the enabling of having documentation for this tool as value holder"
803
f6ca4eb5da39 help texts for the history added
tz
parents: 802
diff changeset
   966
1555
ba83d682d20a implements -> includesSelector
Claus Gittinger <cg@exept.de>
parents: 1545
diff changeset
   967
    ^ (builder booleanValueAspectFor:#valueOfHavingDocumentation) value: (self class includesSelector: #openDocumentation)
803
f6ca4eb5da39 help texts for the history added
tz
parents: 802
diff changeset
   968
!
f6ca4eb5da39 help texts for the history added
tz
parents: 802
diff changeset
   969
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   970
valueOfInfoLabel
907
f4087882555a method comments added
tz
parents: 893
diff changeset
   971
    "returns the info label as value holder"
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   972
936
d3d50ac7cdd0 code compression
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
   973
    ^ builder nilValueAspectFor:#valueOfInfoLabel
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   974
936
d3d50ac7cdd0 code compression
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
   975
    "Modified: / 21.5.1998 / 03:40:34 / cg"
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   976
!
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   977
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   978
valueOfTimeLabel
907
f4087882555a method comments added
tz
parents: 893
diff changeset
   979
    "returns the time label as value holder"
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   980
936
d3d50ac7cdd0 code compression
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
   981
    ^ builder nilValueAspectFor:#valueOfTimeLabel
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   982
936
d3d50ac7cdd0 code compression
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
   983
    "Modified: / 21.5.1998 / 03:40:42 / cg"
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   984
! !
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   985
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   986
!ToolApplicationModel methodsFor:'clipboard'!
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   987
838
d2588cca5a15 some obselete texts removed
tz
parents: 834
diff changeset
   988
clipboard
907
f4087882555a method comments added
tz
parents: 893
diff changeset
   989
    "returns the clipboard"
838
d2588cca5a15 some obselete texts removed
tz
parents: 834
diff changeset
   990
d2588cca5a15 some obselete texts removed
tz
parents: 834
diff changeset
   991
    ^self class clipboard
d2588cca5a15 some obselete texts removed
tz
parents: 834
diff changeset
   992
!
d2588cca5a15 some obselete texts removed
tz
parents: 834
diff changeset
   993
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   994
clipboard: anEditObject
907
f4087882555a method comments added
tz
parents: 893
diff changeset
   995
    "sets the clipboard and the value holder for can pasting"
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   996
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
   997
    self class clipboard: anEditObject.
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
   998
869
b1815e3116c6 font can be chosen for the views
tz
parents: 859
diff changeset
   999
    self valueOfCanPaste value: anEditObject notNil
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1000
! !
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1001
1195
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1002
!ToolApplicationModel methodsFor:'clock handling'!
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1003
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1004
startClock
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1005
    "/ start the time-block
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1006
    self startClockOnTimedBlock:[self updateTime]. 
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1007
!
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1008
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1009
startClockOnTimedBlock: aBlock
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1010
    "sets and starts the (optional) time block"
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1011
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1012
    timeBlock := aBlock.
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1013
    aBlock value.
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1014
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1015
    "Modified: / 31.7.1998 / 18:46:28 / cg"
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1016
!
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1017
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1018
stopClock
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1019
    "/ stop the time-block
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1020
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1021
    timeBlock notNil ifTrue:[
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1022
        Processor removeTimedBlock:timeBlock.
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1023
        timeBlock := nil.
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1024
    ].
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1025
    self valueOfTimeLabel value:''
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1026
!
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1027
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1028
updateTime
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1029
    "update my time-field"
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1030
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1031
    |now hours minutes suffix|
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1032
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1033
    now := Time now.
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1034
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1035
    hours := now hours.
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1036
    minutes := now minutes printString.
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1037
    suffix := ' '.
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1038
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1039
    (resources at:'TIME_FORMAT' ifAbsent:12) == 12 ifTrue:[
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1040
        suffix := ' am '.  
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1041
        hours > 12 ifTrue: [hours := hours - 12. suffix := ' pm '].
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1042
    ].
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1043
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1044
    minutes size = 1 ifTrue: [minutes := '0', minutes].
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1045
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1046
    self valueOfTimeLabel value:(hours printString, ':', minutes, suffix).
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1047
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1048
    timeBlock notNil ifTrue:[
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1049
        Processor removeTimedBlock:timeBlock.
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1050
        Processor addTimedBlock:timeBlock afterSeconds:5
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1051
    ]
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1052
! !
3e136baa74f9 moved all clock-handling code to one place
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1053
1006
786de97d72f9 allow redefinition of the about-boxes image.
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  1054
!ToolApplicationModel methodsFor:'defaults'!
786de97d72f9 allow redefinition of the about-boxes image.
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  1055
786de97d72f9 allow redefinition of the about-boxes image.
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  1056
aboutImage
786de97d72f9 allow redefinition of the about-boxes image.
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  1057
    "the image to be displayed in my about-box;
786de97d72f9 allow redefinition of the about-boxes image.
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  1058
     If nil is returned, thhe ST/X default image is used."
786de97d72f9 allow redefinition of the about-boxes image.
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  1059
786de97d72f9 allow redefinition of the about-boxes image.
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  1060
    ^ nil
786de97d72f9 allow redefinition of the about-boxes image.
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  1061
786de97d72f9 allow redefinition of the about-boxes image.
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  1062
    "Created: / 25.7.1998 / 20:33:50 / cg"
786de97d72f9 allow redefinition of the about-boxes image.
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  1063
! !
786de97d72f9 allow redefinition of the about-boxes image.
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  1064
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1065
!ToolApplicationModel methodsFor:'help'!
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1066
1526
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1067
aboutThisApplicationText
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1068
    "text for an about box for this application.
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1069
     Extracts some common info (i.e. class revision, author etc.) from
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1070
     the classes documentation."
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1071
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1072
    |rev myClass clsRev msg|
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1073
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1074
    rev := ''.
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1075
    myClass := self class.
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1076
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1077
    (clsRev := myClass revision) notNil ifTrue: [rev := '  (rev: ', clsRev printString, ')'].
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1078
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1079
    msg := '\The application\\' withCRs
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1080
        , myClass name asBoldText, rev
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1081
        , '\\has been designed and implemented by: \' withCRs
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1082
        , ((self class authorLinesForAboutBox collect:[:l | '- ' , l]) asStringWith:$\) withCRs
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1083
        , '\\' withCRs.
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1084
    msg := msg withTabsExpanded.
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1085
    ^msg
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1086
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1087
    "Modified: / 12.3.1999 / 00:12:13 / cg"
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1088
    "Created: / 13.11.2001 / 12:34:19 / cg"
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1089
!
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1090
762
2c25cc1b363e detour help texts into bottomed info label
tz
parents: 761
diff changeset
  1091
defaultInfoLabel
907
f4087882555a method comments added
tz
parents: 893
diff changeset
  1092
    "returns the default info label; here an empty string"
762
2c25cc1b363e detour help texts into bottomed info label
tz
parents: 761
diff changeset
  1093
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1094
    ^ ''
984
a0a868c45691 show help synchronously
Claus Gittinger <cg@exept.de>
parents: 982
diff changeset
  1095
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1096
    "Modified: / 31.7.1998 / 18:44:55 / cg"
984
a0a868c45691 show help synchronously
Claus Gittinger <cg@exept.de>
parents: 982
diff changeset
  1097
!
a0a868c45691 show help synchronously
Claus Gittinger <cg@exept.de>
parents: 982
diff changeset
  1098
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1099
openAbout
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1100
    "opens an about box (on ST/X)"
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1101
1043
32cd5ccbd94f made openAboutSTX a class method for sharability.
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
  1102
    self class openAboutSTX
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1103
1043
32cd5ccbd94f made openAboutSTX a class method for sharability.
Claus Gittinger <cg@exept.de>
parents: 1040
diff changeset
  1104
    "Modified: / 14.8.1998 / 13:17:57 / cg"
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1105
!
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1106
858
a36ca9158a69 show help bug fixed
tz
parents: 853
diff changeset
  1107
openHTMLDocument: aHTMLFilename
907
f4087882555a method comments added
tz
parents: 893
diff changeset
  1108
    "opens a HTML browser on aHTMLFilename"
858
a36ca9158a69 show help bug fixed
tz
parents: 853
diff changeset
  1109
a36ca9158a69 show help bug fixed
tz
parents: 853
diff changeset
  1110
    HTMLDocumentView openFullOnDocumentationFile: aHTMLFilename
a36ca9158a69 show help bug fixed
tz
parents: 853
diff changeset
  1111
!
a36ca9158a69 show help bug fixed
tz
parents: 853
diff changeset
  1112
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1113
showHelp:aHelpText for:view
1631
14d4694d9a5a Comments
Stefan Vogel <sv@exept.de>
parents: 1624
diff changeset
  1114
    "displays aHelpText in the info label.
14d4694d9a5a Comments
Stefan Vogel <sv@exept.de>
parents: 1624
diff changeset
  1115
     Only text up to '.' is shown"
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1116
1343
3ee2bcb3527d undo last change
ca
parents: 1341
diff changeset
  1117
"/    masterApplication notNil ifTrue:[
3ee2bcb3527d undo last change
ca
parents: 1341
diff changeset
  1118
"/        ^ masterApplication showHelp:aHelpText for:view
3ee2bcb3527d undo last change
ca
parents: 1341
diff changeset
  1119
"/    ].
3ee2bcb3527d undo last change
ca
parents: 1341
diff changeset
  1120
"/
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1121
    aHelpText isNil 
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1122
        ifTrue:  [self updateInfoLabel] 
1631
14d4694d9a5a Comments
Stefan Vogel <sv@exept.de>
parents: 1624
diff changeset
  1123
        ifFalse: [self valueOfInfoLabel value: (aHelpText asString string readStream through: $.)].
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1124
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1125
    "Created: / 20.6.1998 / 16:37:23 / cg"
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1126
    "Modified: / 31.7.1998 / 18:40:19 / cg"
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1127
!
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1128
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1129
showingHelp
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1130
    "returns true, if automatic display of help is enabled for this
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1131
     application; false otherwise"
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1132
783
4e1545900244 show help corrections
tz
parents: 782
diff changeset
  1133
    |currentActiveHelp|
858
a36ca9158a69 show help bug fixed
tz
parents: 853
diff changeset
  1134
783
4e1545900244 show help corrections
tz
parents: 782
diff changeset
  1135
    currentActiveHelp := ActiveHelp currentHelpListener.
4e1545900244 show help corrections
tz
parents: 782
diff changeset
  1136
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1137
    ^ self class showingHelp 
1051
65dfbf6481b5 showingHelp fixed (tree-item editor)
Claus Gittinger <cg@exept.de>
parents: 1043
diff changeset
  1138
      and: [currentActiveHelp notNil and: [
65dfbf6481b5 showingHelp fixed (tree-item editor)
Claus Gittinger <cg@exept.de>
parents: 1043
diff changeset
  1139
                currentActiveHelp interestedIn: self window]]
65dfbf6481b5 showingHelp fixed (tree-item editor)
Claus Gittinger <cg@exept.de>
parents: 1043
diff changeset
  1140
65dfbf6481b5 showingHelp fixed (tree-item editor)
Claus Gittinger <cg@exept.de>
parents: 1043
diff changeset
  1141
"/    ^ self class showingHelp 
65dfbf6481b5 showingHelp fixed (tree-item editor)
Claus Gittinger <cg@exept.de>
parents: 1043
diff changeset
  1142
"/      and: [currentActiveHelp notNil and: [masterApplication notNil 
65dfbf6481b5 showingHelp fixed (tree-item editor)
Claus Gittinger <cg@exept.de>
parents: 1043
diff changeset
  1143
"/                ifFalse: [currentActiveHelp interestedIn: self window]
65dfbf6481b5 showingHelp fixed (tree-item editor)
Claus Gittinger <cg@exept.de>
parents: 1043
diff changeset
  1144
"/                ifTrue:  [currentActiveHelp interestedIn: masterApplication window]]]
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1145
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1146
    "Created: / 31.7.1998 / 17:57:03 / cg"
1051
65dfbf6481b5 showingHelp fixed (tree-item editor)
Claus Gittinger <cg@exept.de>
parents: 1043
diff changeset
  1147
    "Modified: / 22.8.1998 / 00:06:38 / cg"
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1148
!
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1149
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1150
showingHelp: aValue
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1151
    "toggles showing help for this application"
984
a0a868c45691 show help synchronously
Claus Gittinger <cg@exept.de>
parents: 982
diff changeset
  1152
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1153
    (self class showingHelp: aValue)
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1154
        ifTrue:  [ActiveHelp startFor:self]
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1155
        ifFalse: [ActiveHelp stopFor:self. self updateInfoLabel]
984
a0a868c45691 show help synchronously
Claus Gittinger <cg@exept.de>
parents: 982
diff changeset
  1156
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1157
    "Created: / 31.7.1998 / 18:20:44 / cg"
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1158
    "Modified: / 31.7.1998 / 18:44:39 / cg"
822
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
  1159
!
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
  1160
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
  1161
updateInfoLabel
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1162
    "updates the info label at the bottom of this application"
822
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
  1163
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
  1164
    self valueOfInfoLabel value: self defaultInfoLabel
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1165
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1166
    "Modified: / 31.7.1998 / 18:44:46 / cg"
1526
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1167
!
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1168
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1169
xxopenAboutThisApplication
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1170
    "opens an about box for this application.
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1171
     Extracts some common info (i.e. class revision, author etc. from
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1172
     the classes documentation."
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1173
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1174
    |rev box myClass clsRev image msg|
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1175
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1176
    rev := ''.
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1177
    myClass := self class.
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1178
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1179
    (clsRev := myClass revision) notNil ifTrue: [rev := '  (rev: ', clsRev printString, ')'].
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1180
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1181
    msg := '\The application\\' withCRs
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1182
        , myClass name asBoldText, rev
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1183
        , '\\has been designed and implemented by: \' withCRs
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1184
        , ((self class authorLinesForAboutBox collect:[:l | '- ' , l]) asStringWith:$\) withCRs
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1185
        , '\\' withCRs.
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1186
    msg := msg withTabsExpanded.
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1187
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1188
    AboutBox isNil ifTrue:[
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1189
        "/ this handles bad installations of ST/X,
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1190
        "/ where the AboutBox is missing.
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1191
        "/ (May vanish in the future)
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1192
        ^ self information:msg
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1193
    ].
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1194
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1195
    box := AboutBox title:msg.
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1196
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1197
    image := self aboutImage.
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1198
    image notNil ifTrue:[
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1199
        box image:image
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1200
    ].
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1201
    box   label:(resources string:self aboutThisApplicationLabel).
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1202
    box   autoHideAfter:10 with:[].
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1203
    box   showAtPointer.
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1204
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1205
    "Modified: / 13.11.2001 / 12:31:28 / cg"
02941e80a146 refactored aboutBox setup for easier subclassing
Claus Gittinger <cg@exept.de>
parents: 1516
diff changeset
  1206
    "Created: / 13.11.2001 / 12:34:27 / cg"
762
2c25cc1b363e detour help texts into bottomed info label
tz
parents: 761
diff changeset
  1207
! !
2c25cc1b363e detour help texts into bottomed info label
tz
parents: 761
diff changeset
  1208
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1209
!ToolApplicationModel methodsFor:'history'!
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1210
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1211
addToHistory: aHistoryEntry
907
f4087882555a method comments added
tz
parents: 893
diff changeset
  1212
    "adds aHistoryEntry (format: loadMessage -> evalString) at the top of the history,
f4087882555a method comments added
tz
parents: 893
diff changeset
  1213
     and checks for maximum size of the history"
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1214
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1215
    aHistoryEntry key size = 0 ifTrue: [^nil].
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1216
    self history remove: (self history detect: [:histEntry| histEntry key = aHistoryEntry key] ifNone: nil) ifAbsent: nil.
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1217
    self history addFirst: aHistoryEntry.
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1218
    [self history size > self class historyMaxSize] whileTrue: [self history removeLast]
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1219
!
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1220
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1221
emptyHistory
907
f4087882555a method comments added
tz
parents: 893
diff changeset
  1222
    "removes all history entries"
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1223
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1224
    ^self history removeAll
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1225
!
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1226
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1227
history
907
f4087882555a method comments added
tz
parents: 893
diff changeset
  1228
    "returns the history from tool class"
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1229
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1230
    ^self class getHistory
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1231
!
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1232
844
5d9915ac0be6 checkin from browser
tz
parents: 838
diff changeset
  1233
historyEntries
907
f4087882555a method comments added
tz
parents: 893
diff changeset
  1234
    "returns the history entries, i.e. the evaluatable values containing the information"
844
5d9915ac0be6 checkin from browser
tz
parents: 838
diff changeset
  1235
5d9915ac0be6 checkin from browser
tz
parents: 838
diff changeset
  1236
    ^self history collect: [:asso| asso key]
5d9915ac0be6 checkin from browser
tz
parents: 838
diff changeset
  1237
!
5d9915ac0be6 checkin from browser
tz
parents: 838
diff changeset
  1238
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1239
menuHistory
907
f4087882555a method comments added
tz
parents: 893
diff changeset
  1240
    "returns a history submenu"
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1241
893
8a142b17a0c8 some cleans
tz
parents: 892
diff changeset
  1242
    |menu|
920
6b72e4ce4406 must find gui resources (xlations in in history menu)
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1243
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1244
    menu := Menu new receiver: self.
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1245
    (self history collect: [:histEntry| histEntry value]) asSet asOrderedCollection do:
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1246
    [:historyEntryType|    
1013
64f464903584 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1247
        menu addItemGroup:
64f464903584 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1248
                ((self history 
64f464903584 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1249
                    select: [:histEntry| 
64f464903584 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1250
                        histEntry value = historyEntryType]) 
64f464903584 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1251
                    collect: [:histEntry|  
64f464903584 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1252
                        MenuItem new 
64f464903584 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1253
                            label: histEntry key printString; 
64f464903584 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1254
                            value: histEntry value; 
64f464903584 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1255
                            argument: histEntry key; 
64f464903584 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1256
                            activeHelpKey: #historyMenuItem]).
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1257
    ]. 
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1258
920
6b72e4ce4406 must find gui resources (xlations in in history menu)
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1259
    menu addItem: (MenuItem new 
1624
98b212d1e4e4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1555
diff changeset
  1260
                        label: 'Clear History'; 
920
6b72e4ce4406 must find gui resources (xlations in in history menu)
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1261
                        value: #emptyHistory; 
6b72e4ce4406 must find gui resources (xlations in in history menu)
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1262
                        activeHelpKey: #historyEmptyMenu;
6b72e4ce4406 must find gui resources (xlations in in history menu)
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1263
                        translateLabel:true).
6b72e4ce4406 must find gui resources (xlations in in history menu)
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1264
6b72e4ce4406 must find gui resources (xlations in in history menu)
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1265
    menu findGuiResourcesIn:self.
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1266
    ^menu
920
6b72e4ce4406 must find gui resources (xlations in in history menu)
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
  1267
1013
64f464903584 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1006
diff changeset
  1268
    "Modified: / 29.7.1998 / 11:40:11 / cg"
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1269
!
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1270
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1271
removeFromHistory: aHistoryEntry
907
f4087882555a method comments added
tz
parents: 893
diff changeset
  1272
    "removes aHistoryEntry from the history"
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1273
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1274
    self history remove: (self history detect: [:histEntry| histEntry key = aHistoryEntry key] ifNone: nil) ifAbsent: nil.
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1275
    [self history size > self class historyMaxSize] whileTrue: [self history removeLast]
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1276
! !
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1277
982
807f440e0df7 bw. compatibility - needs builder early.
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  1278
!ToolApplicationModel methodsFor:'initialization'!
807f440e0df7 bw. compatibility - needs builder early.
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  1279
807f440e0df7 bw. compatibility - needs builder early.
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  1280
initialize
807f440e0df7 bw. compatibility - needs builder early.
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  1281
    super initialize.
807f440e0df7 bw. compatibility - needs builder early.
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  1282
    self createBuilder
807f440e0df7 bw. compatibility - needs builder early.
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  1283
807f440e0df7 bw. compatibility - needs builder early.
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  1284
    "Created: / 20.6.1998 / 14:51:29 / cg"
807f440e0df7 bw. compatibility - needs builder early.
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  1285
! !
807f440e0df7 bw. compatibility - needs builder early.
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
  1286
1200
a86be4f3fd69 added clearModifiedFlag
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  1287
!ToolApplicationModel methodsFor:'misc'!
a86be4f3fd69 added clearModifiedFlag
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  1288
a86be4f3fd69 added clearModifiedFlag
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  1289
clearModifiedFlag
a86be4f3fd69 added clearModifiedFlag
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  1290
    "clear the modifiedChannel.
a86be4f3fd69 added clearModifiedFlag
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  1291
     That one is hooked to components in the right noteBook,
a86be4f3fd69 added clearModifiedFlag
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  1292
     and will be set, when any value is modified.
a86be4f3fd69 added clearModifiedFlag
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  1293
     (to enable OK and cancel buttons)"
a86be4f3fd69 added clearModifiedFlag
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  1294
a86be4f3fd69 added clearModifiedFlag
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  1295
    self modifiedChannel value:false
a86be4f3fd69 added clearModifiedFlag
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  1296
! !
a86be4f3fd69 added clearModifiedFlag
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  1297
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1298
!ToolApplicationModel methodsFor:'queries'!
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1299
876
585929b1fec2 some cleans
tz
parents: 872
diff changeset
  1300
allToolInstances
907
f4087882555a method comments added
tz
parents: 893
diff changeset
  1301
    "returns all instances of this tool class"
876
585929b1fec2 some cleans
tz
parents: 872
diff changeset
  1302
1150
5211197a2671 NEVER - redefine allInstances
Claus Gittinger <cg@exept.de>
parents: 1148
diff changeset
  1303
    ^ self class allToolInstances
1089
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
  1304
49b05d386ccc removed Thomas's memory leak
Claus Gittinger <cg@exept.de>
parents: 1084
diff changeset
  1305
    "Modified: / 4.2.1999 / 15:34:58 / cg"
876
585929b1fec2 some cleans
tz
parents: 872
diff changeset
  1306
!
585929b1fec2 some cleans
tz
parents: 872
diff changeset
  1307
782
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1308
preferredExtent
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1309
    "preferred extent of my window; top/main menu and top toolbar (named by 'menuToolbarView')
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1310
     will be considered"
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1311
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1312
    |window menu menuToolbarView preferredExtentOfWindow|
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1313
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1314
    window          := self builder window. 
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1315
    menu            := window subViews first.
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1316
    menuToolbarView := builder componentAt: #menuToolbarView.
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1317
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1318
    preferredExtentOfWindow := window extent.
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1319
    menu class = MenuPanel ifTrue: [preferredExtentOfWindow := preferredExtentOfWindow max: menu preferredExtent].
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1320
    menuToolbarView notNil ifTrue: [preferredExtentOfWindow := preferredExtentOfWindow max: menuToolbarView preferredExtent].
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1321
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1322
    ^window minExtent max: (preferredExtentOfWindow min: window maxExtent)
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1323
! !
5b8c4cf62cb5 activeHelp changed as instClassVar + some other cleans
tz
parents: 779
diff changeset
  1324
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1325
!ToolApplicationModel methodsFor:'startup / release'!
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1326
1107
f900f5d8993c more code cleanup
Claus Gittinger <cg@exept.de>
parents: 1104
diff changeset
  1327
closeDownViews
907
f4087882555a method comments added
tz
parents: 893
diff changeset
  1328
    "uninitializes and closes this tool"
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1329
756
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
  1330
    self uninitialize.
1107
f900f5d8993c more code cleanup
Claus Gittinger <cg@exept.de>
parents: 1104
diff changeset
  1331
    super closeDownViews
1108
2d57365bc340 fixed a copy-paste bug
Claus Gittinger <cg@exept.de>
parents: 1107
diff changeset
  1332
!
936
d3d50ac7cdd0 code compression
Claus Gittinger <cg@exept.de>
parents: 927
diff changeset
  1333
790
648fac120039 time clock runs now correctly
tz
parents: 784
diff changeset
  1334
postOpenWith:aBuilder
907
f4087882555a method comments added
tz
parents: 893
diff changeset
  1335
    "starts the active help for this tool (if turned on in the settings)
f4087882555a method comments added
tz
parents: 893
diff changeset
  1336
     and updates the info label and the fonts (from the settings)"
790
648fac120039 time clock runs now correctly
tz
parents: 784
diff changeset
  1337
648fac120039 time clock runs now correctly
tz
parents: 784
diff changeset
  1338
    super postOpenWith:aBuilder.
648fac120039 time clock runs now correctly
tz
parents: 784
diff changeset
  1339
822
374400d57e0b some useful aspects added
tz
parents: 821
diff changeset
  1340
    self updateInfoLabel.
1104
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1341
"/    self updateFonts.
a2f59712ce7b removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  1342
    self showingHelp:true
876
585929b1fec2 some cleans
tz
parents: 872
diff changeset
  1343
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1344
    "Modified: / 31.7.1998 / 18:17:34 / cg"
790
648fac120039 time clock runs now correctly
tz
parents: 784
diff changeset
  1345
!
648fac120039 time clock runs now correctly
tz
parents: 784
diff changeset
  1346
1323
045c3a6e4a88 after restart from image, restart also the timed block if defined
ca
parents: 1284
diff changeset
  1347
restarted
045c3a6e4a88 after restart from image, restart also the timed block if defined
ca
parents: 1284
diff changeset
  1348
    "sent by my windowGroup, when restarted from an image.
045c3a6e4a88 after restart from image, restart also the timed block if defined
ca
parents: 1284
diff changeset
  1349
     restart timed block if defined.
045c3a6e4a88 after restart from image, restart also the timed block if defined
ca
parents: 1284
diff changeset
  1350
    "
045c3a6e4a88 after restart from image, restart also the timed block if defined
ca
parents: 1284
diff changeset
  1351
    timeBlock notNil ifTrue:[
045c3a6e4a88 after restart from image, restart also the timed block if defined
ca
parents: 1284
diff changeset
  1352
        Processor removeTimedBlock:timeBlock.
045c3a6e4a88 after restart from image, restart also the timed block if defined
ca
parents: 1284
diff changeset
  1353
        self startClockOnTimedBlock:timeBlock.
045c3a6e4a88 after restart from image, restart also the timed block if defined
ca
parents: 1284
diff changeset
  1354
    ].
045c3a6e4a88 after restart from image, restart also the timed block if defined
ca
parents: 1284
diff changeset
  1355
    super restarted.
045c3a6e4a88 after restart from image, restart also the timed block if defined
ca
parents: 1284
diff changeset
  1356
!
045c3a6e4a88 after restart from image, restart also the timed block if defined
ca
parents: 1284
diff changeset
  1357
756
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
  1358
uninitialize
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1359
    "stops active help for this tool and (if defined) removes the time block"
756
4dba5a8797ec *** empty log message ***
tz
parents: 753
diff changeset
  1360
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1361
    self showingHelp ifTrue: [ActiveHelp stopFor: self].
876
585929b1fec2 some cleans
tz
parents: 872
diff changeset
  1362
    timeBlock notNil ifTrue: [Processor removeTimedBlock:timeBlock. timeBlock := nil].
585929b1fec2 some cleans
tz
parents: 872
diff changeset
  1363
1018
7222534cb3dc part of the activeHelp framework moved to ApplicationModel.
Claus Gittinger <cg@exept.de>
parents: 1016
diff changeset
  1364
    "Modified: / 31.7.1998 / 18:46:21 / cg"
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1365
! !
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1366
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1367
!ToolApplicationModel class methodsFor:'documentation'!
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1368
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1369
version
1631
14d4694d9a5a Comments
Stefan Vogel <sv@exept.de>
parents: 1624
diff changeset
  1370
    ^ '$Header: /cvs/stx/stx/libview2/ToolApplicationModel.st,v 1.110 2002-10-08 15:30:42 stefan Exp $'
753
9c837d99f109 intitial checkin
tz
parents:
diff changeset
  1371
! !