UIHelpTool.st
author Claus Gittinger <cg@exept.de>
Wed, 09 Sep 1998 17:32:59 +0200
changeset 989 180731831d8b
parent 963 62cdb7923a3b
child 1184 c67bdfe67afd
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
156
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
     1
"
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
     2
 COPYRIGHT (c) 1995 by eXept Software AG
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
     3
              All Rights Reserved
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
     4
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
     5
 This software is furnished under a license and may be used
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
     6
 only in accordance with the terms of that license and with the
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
     8
 be provided or otherwise made available to, or used by, any
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
     9
 other person.  No title to or ownership of the software is
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
    10
 hereby transferred.
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
    11
"
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
    12
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
    13
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
    14
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
    15
ToolApplicationModel subclass:#UIHelpTool
9b705e31d38e some cleans
tz
parents: 740
diff changeset
    16
	instanceVariableNames:'specClass specSelector dictionary dictionaries listSelection
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
    17
		maxCharsPerLine modifiedHolder modified'
148
785417b6955d intitial checkin
ca
parents:
diff changeset
    18
	classVariableNames:''
785417b6955d intitial checkin
ca
parents:
diff changeset
    19
	poolDictionaries:''
785417b6955d intitial checkin
ca
parents:
diff changeset
    20
	category:'Interface-UIPainter'
785417b6955d intitial checkin
ca
parents:
diff changeset
    21
!
785417b6955d intitial checkin
ca
parents:
diff changeset
    22
785417b6955d intitial checkin
ca
parents:
diff changeset
    23
!UIHelpTool class methodsFor:'documentation'!
785417b6955d intitial checkin
ca
parents:
diff changeset
    24
156
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
    25
copyright
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
    26
"
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
    27
 COPYRIGHT (c) 1995 by eXept Software AG
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
    28
              All Rights Reserved
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
    29
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
    30
 This software is furnished under a license and may be used
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
    31
 only in accordance with the terms of that license and with the
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
    33
 be provided or otherwise made available to, or used by, any
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
    34
 other person.  No title to or ownership of the software is
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
    35
 hereby transferred.
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
    36
"
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
    37
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
    38
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
    39
!
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
    40
148
785417b6955d intitial checkin
ca
parents:
diff changeset
    41
documentation
785417b6955d intitial checkin
ca
parents:
diff changeset
    42
"
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
    43
    The Help Tool allows you to define help dictionaries for the widgets in
761
91e524583390 do not save, if help texts have not changed (unformatting)
tz
parents: 750
diff changeset
    44
    window applications. The tool are able to run stand alone or in other master 
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
    45
    applications like the GUI Painter and the Menu Editor.
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
    46
    If the application responds to the selector #showHelp:aHelpText for:aView,
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
    47
    this selector is called by the widget's view when the mouse cursor moves over. 
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
    48
    If the application does not responds to that selector, and the activeHelp mode
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
    49
    is enabled, an active help bubble is shown at the widget's view.
156
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
    50
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
    51
    [instance variables:]
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
    52
        specClass       <Symbol>        class implementing the help spec
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
    53
        specSelector    <Symbol>        selector returning the help spec
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
    54
        dictionary      <Dictionary>    dictionary containing pairs of help keys/texts
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
    55
        dictionaries    <Dictionary>    dictionary containing pairs of help spec classes/help dictionaries
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
    56
        listSelection   <String>        current selected help key
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
    57
        maxCharsPerLine <Integer>       maximum number of allowed characters per text line
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
    58
        modifiedHolder  <ValueHolder>   value holder for setting as modified
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
    59
        modified        <Boolean>       flag whether the help spec was modified
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
    60
156
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
    61
    [author:]
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
    62
        Claus Atzkern, eXept Software AG
9b705e31d38e some cleans
tz
parents: 740
diff changeset
    63
        Thomas Zwick, eXept Software AG
148
785417b6955d intitial checkin
ca
parents:
diff changeset
    64
"
785417b6955d intitial checkin
ca
parents:
diff changeset
    65
! !
785417b6955d intitial checkin
ca
parents:
diff changeset
    66
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
    67
!UIHelpTool class methodsFor:'instance creation'!
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
    68
832
2c5b61b168e8 allow #open (its in the docu !)
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
    69
open
833
ff2f237a309a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
    70
    ^ self openOnClass:nil.
832
2c5b61b168e8 allow #open (its in the docu !)
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
    71
833
ff2f237a309a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
    72
"/    |className cls|
ff2f237a309a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
    73
"/
ff2f237a309a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
    74
"/    className := Dialog request:(ClassResources string:'Open on which class ?').
ff2f237a309a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
    75
"/    className size > 0 ifTrue:[
ff2f237a309a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
    76
"/        cls := Smalltalk at:className asSymbol.
ff2f237a309a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
    77
"/        cls notNil ifTrue:[
ff2f237a309a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
    78
"/            ^ self openOnClass:cls.
ff2f237a309a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
    79
"/        ].
ff2f237a309a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
    80
"/        self warn:(ClassResources string:'No such class').
ff2f237a309a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
    81
"/    ].
ff2f237a309a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
    82
"/
ff2f237a309a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
    83
"/    "Created: / 20.5.1998 / 00:55:05 / cg"
ff2f237a309a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
    84
"/
832
2c5b61b168e8 allow #open (its in the docu !)
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
    85
833
ff2f237a309a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
    86
    "Modified: / 20.5.1998 / 01:06:07 / cg"
832
2c5b61b168e8 allow #open (its in the docu !)
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
    87
!
2c5b61b168e8 allow #open (its in the docu !)
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
    88
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
    89
openOnClass:aClass
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
    90
    "opens a Help Tool on aClass"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
    91
833
ff2f237a309a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
    92
    self new openOnClass:aClass
ff2f237a309a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
    93
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
    94
    "
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
    95
     UIHelpTool openOnClass:self
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
    96
    "
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
    97
833
ff2f237a309a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 832
diff changeset
    98
    "Modified: / 20.5.1998 / 01:06:14 / cg"
940
fa34addf6b1d added #openOnClass:aClass andSelector: aSelector
tz
parents: 904
diff changeset
    99
!
fa34addf6b1d added #openOnClass:aClass andSelector: aSelector
tz
parents: 904
diff changeset
   100
fa34addf6b1d added #openOnClass:aClass andSelector: aSelector
tz
parents: 904
diff changeset
   101
openOnClass:aClass andSelector: aSelector
fa34addf6b1d added #openOnClass:aClass andSelector: aSelector
tz
parents: 904
diff changeset
   102
    "opens a Help Tool on aClass and aSelector"
fa34addf6b1d added #openOnClass:aClass andSelector: aSelector
tz
parents: 904
diff changeset
   103
946
536722005e32 fixed #openOnClass:andSelector:
tz
parents: 940
diff changeset
   104
    ^self new openOnClass:aClass andSelector: aSelector
940
fa34addf6b1d added #openOnClass:aClass andSelector: aSelector
tz
parents: 904
diff changeset
   105
  
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   106
! !
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   107
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   108
!UIHelpTool class methodsFor:'constants'!
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   109
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   110
label
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   111
    "returns the label; used if embedded as sub canvas in the GUI Painter or Menu Editor"
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   112
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   113
    ^'Help'
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   114
! !
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   115
151
ca
parents: 148
diff changeset
   116
!UIHelpTool class methodsFor:'help specs'!
ca
parents: 148
diff changeset
   117
ca
parents: 148
diff changeset
   118
helpSpec
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   119
    "This resource specification was automatically generated
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   120
     by the UIHelpTool of ST/X."
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   121
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   122
    "Do not manually edit this!! If it is corrupted,
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   123
     the UIHelpTool may not be able to read the specification."
292
af69e3e025a9 an empty selection is specified by 0
ca
parents: 286
diff changeset
   124
172
10e8e0510baa helpSpec no longer under UIPainter
ca
parents: 156
diff changeset
   125
    "
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   126
     UIHelpTool openOnClass:UIHelpTool    
292
af69e3e025a9 an empty selection is specified by 0
ca
parents: 286
diff changeset
   127
    "
af69e3e025a9 an empty selection is specified by 0
ca
parents: 286
diff changeset
   128
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   129
    <resource: #help>
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   130
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   131
    ^super helpSpec addPairsFrom:#(
151
ca
parents: 148
diff changeset
   132
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   133
#addHelpTextKey
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   134
'Adds the help text key to the help spec.'
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   135
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   136
#currentHelpTexts
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   137
'Selected help text key.'
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   138
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   139
#deleteHelpTextKey
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   140
'Deletes the help text key from the help spec.'
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   141
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   142
#fileLoad
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   143
'Opens a dialog for selecting and loading a help spec from a class.'
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   144
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   145
#fileSave
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   146
'Saves current help spec.'
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   147
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   148
#helpTextView
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   149
'Shows the help text.'
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   150
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   151
#listOfHelpSpecClasses
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   152
'List of the classes where help specs can be/are implemented.'
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   153
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   154
#listOfHelpTexts
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   155
'List of the help text keys.'
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   156
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   157
#removeHelpTextKey
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   158
'Removes the help text key from the widget.'
172
10e8e0510baa helpSpec no longer under UIPainter
ca
parents: 156
diff changeset
   159
10e8e0510baa helpSpec no longer under UIPainter
ca
parents: 156
diff changeset
   160
)
151
ca
parents: 148
diff changeset
   161
! !
ca
parents: 148
diff changeset
   162
148
785417b6955d intitial checkin
ca
parents:
diff changeset
   163
!UIHelpTool class methodsFor:'interface specs'!
785417b6955d intitial checkin
ca
parents:
diff changeset
   164
785417b6955d intitial checkin
ca
parents:
diff changeset
   165
windowSpec
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   166
    "This resource specification was automatically generated
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   167
     by the UIPainter of ST/X."
148
785417b6955d intitial checkin
ca
parents:
diff changeset
   168
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   169
    "Do not manually edit this!! If it is corrupted,
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   170
     the UIPainter may not be able to read the specification."
148
785417b6955d intitial checkin
ca
parents:
diff changeset
   171
785417b6955d intitial checkin
ca
parents:
diff changeset
   172
    "
151
ca
parents: 148
diff changeset
   173
     UIPainter new openOnClass:UIHelpTool andSelector:#windowSpec
ca
parents: 148
diff changeset
   174
     UIHelpTool new openInterface:#windowSpec
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   175
     UIHelpTool open
148
785417b6955d intitial checkin
ca
parents:
diff changeset
   176
    "
785417b6955d intitial checkin
ca
parents:
diff changeset
   177
785417b6955d intitial checkin
ca
parents:
diff changeset
   178
    <resource: #canvas>
785417b6955d intitial checkin
ca
parents:
diff changeset
   179
785417b6955d intitial checkin
ca
parents:
diff changeset
   180
    ^
785417b6955d intitial checkin
ca
parents:
diff changeset
   181
     
785417b6955d intitial checkin
ca
parents:
diff changeset
   182
       #(#FullSpec
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   183
          #window: 
148
785417b6955d intitial checkin
ca
parents:
diff changeset
   184
           #(#WindowSpec
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   185
              #name: 'Help Tool'
835
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   186
              #layout: #(#LayoutFrame 29 0 447 0 314 0 717 0)
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   187
              #label: 'Help Tool'
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   188
              #min: #(#Point 10 10)
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   189
              #max: #(#Point 1160 870)
835
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   190
              #bounds: #(#Rectangle 29 447 315 718)
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   191
              #usePreferredExtent: false
148
785417b6955d intitial checkin
ca
parents:
diff changeset
   192
          )
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   193
          #component: 
148
785417b6955d intitial checkin
ca
parents:
diff changeset
   194
           #(#SpecCollection
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   195
              #collection: 
148
785417b6955d intitial checkin
ca
parents:
diff changeset
   196
               #(
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   197
                 #(#VariableVerticalPanelSpec
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   198
                    #name: 'VariableVerticalPanel'
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   199
                    #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   200
                    #component: 
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   201
                     #(#SpecCollection
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   202
                        #collection: 
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   203
                         #(
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   204
                           #(#VariableHorizontalPanelSpec
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   205
                              #name: 'VariableHorizontalPanel'
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   206
                              #component: 
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   207
                               #(#SpecCollection
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   208
                                  #collection: 
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   209
                                   #(
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   210
                                     #(#SequenceViewSpec
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   211
                                        #name: 'listOfHelpKeysView'
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   212
                                        #activeHelpKey: #listOfHelpTexts
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   213
                                        #tabable: true
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   214
                                        #model: #listModel
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   215
                                        #hasHorizontalScrollBar: true
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   216
                                        #hasVerticalScrollBar: true
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   217
                                        #miniScrollerHorizontal: true
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   218
                                        #useIndex: false
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   219
                                        #sequenceList: #listChannel
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   220
                                    )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   221
                                     #(#ViewSpec
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   222
                                        #name: 'Box'
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   223
                                        #component: 
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   224
                                         #(#SpecCollection
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   225
                                            #collection: 
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   226
                                             #(
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   227
                                               #(#InputFieldSpec
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   228
                                                  #name: 'helpKeyInputField'
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   229
                                                  #layout: #(#LayoutFrame 0 0.0 29 0 0 1.0 51 0)
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   230
                                                  #activeHelpKey: #currentHelpTexts
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   231
                                                  #tabable: true
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   232
                                                  #model: #listModel
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   233
                                                  #immediateAccept: false
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   234
                                              )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   235
                                               #(#SequenceViewSpec
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   236
                                                  #name: 'listOfHelpSpecClassesView'
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   237
                                                  #layout: #(#LayoutFrame 0 0.0 54 0 0 1.0 0 1.0)
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   238
                                                  #activeHelpKey: #listOfHelpSpecClasses
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   239
                                                  #tabable: true
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   240
                                                  #model: #selectionOfHelpSpecClass
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   241
                                                  #hasHorizontalScrollBar: true
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   242
                                                  #hasVerticalScrollBar: true
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   243
                                                  #miniScrollerHorizontal: true
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   244
                                                  #miniScrollerVertical: true
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   245
                                                  #valueChangeSelector: #helpSpecClassSelected
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   246
                                                  #useIndex: false
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   247
                                                  #sequenceList: #listOfHelpSpecClasses
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   248
                                              )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   249
                                               #(#HorizontalPanelViewSpec
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   250
                                                  #name: 'HorizontalPanel1'
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   251
                                                  #layout: #(#LayoutFrame 0 0.0 2 0 0 1.0 26 0)
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   252
                                                  #component: 
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   253
                                                   #(#SpecCollection
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   254
                                                      #collection: 
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   255
                                                       #(
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   256
                                                         #(#ActionButtonSpec
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   257
                                                            #name: 'AddButton'
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   258
                                                            #activeHelpKey: #addHelpTextKey
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   259
                                                            #label: 'Add'
835
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   260
                                                            #translateLabel: true
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   261
                                                            #tabable: true
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   262
                                                            #model: #doAdd
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   263
                                                            #extent: #(#Point 44 24)
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   264
                                                        )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   265
                                                         #(#ActionButtonSpec
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   266
                                                            #name: 'RemoveButton'
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   267
                                                            #activeHelpKey: #removeHelpTextKey
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   268
                                                            #label: 'Remove'
835
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   269
                                                            #translateLabel: true
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   270
                                                            #tabable: true
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   271
                                                            #model: #doRemove
835
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   272
                                                            #extent: #(#Point 44 24)
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   273
                                                        )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   274
                                                         #(#ActionButtonSpec
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   275
                                                            #name: 'DeleteButton'
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   276
                                                            #activeHelpKey: #deleteHelpTextKey
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   277
                                                            #label: 'Delete'
835
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   278
                                                            #translateLabel: true
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   279
                                                            #tabable: true
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   280
                                                            #model: #doDelete
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   281
                                                            #extent: #(#Point 45 24)
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   282
                                                        )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   283
                                                      )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   284
                                                  )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   285
                                                  #horizontalLayout: #fit
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   286
                                                  #verticalLayout: #fit
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   287
                                                  #horizontalSpace: 3
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   288
                                                  #verticalSpace: 3
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   289
                                              )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   290
                                            )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   291
                                        )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   292
                                    )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   293
                                  )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   294
                              )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   295
                              #handles: #(#Any 0.5 1.0)
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   296
                          )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   297
                           #(#TextEditorSpec
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   298
                              #name: 'helpTextView'
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   299
                              #activeHelpKey: #helpTextView
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   300
                              #tabable: true
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   301
                              #hasHorizontalScrollBar: true
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   302
                              #hasVerticalScrollBar: true
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   303
                              #miniScrollerHorizontal: true
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   304
                              #miniScrollerVertical: true
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   305
                          )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   306
                        )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   307
                    )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   308
                    #handles: #(#Any 0.5 1.0)
148
785417b6955d intitial checkin
ca
parents:
diff changeset
   309
                )
785417b6955d intitial checkin
ca
parents:
diff changeset
   310
              )
785417b6955d intitial checkin
ca
parents:
diff changeset
   311
          )
785417b6955d intitial checkin
ca
parents:
diff changeset
   312
      )
835
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   313
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   314
    "Modified: / 20.5.1998 / 01:08:59 / cg"
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   315
!
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   316
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   317
windowSpecForStandAlone
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   318
    "This resource specification was automatically generated
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   319
     by the UIPainter of ST/X."
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   320
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   321
    "Do not manually edit this!! If it is corrupted,
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   322
     the UIPainter may not be able to read the specification."
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   323
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   324
    "
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   325
     UIPainter new openOnClass:UIHelpTool andSelector:#windowSpecForStandAlone
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   326
     UIHelpTool new openInterface:#windowSpecForStandAlone
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   327
    "
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   328
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   329
    <resource: #canvas>
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   330
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   331
    ^
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   332
     
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   333
       #(#FullSpec
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   334
          #window: 
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   335
           #(#WindowSpec
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   336
              #name: 'Help Tool'
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   337
              #layout: #(#LayoutFrame 191 0 334 0 660 0 663 0)
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   338
              #label: 'Help Tool'
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   339
              #min: #(#Point 300 300)
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   340
              #max: #(#Point 1152 900)
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   341
              #bounds: #(#Rectangle 191 334 661 664)
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   342
              #menu: #menu
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   343
              #usePreferredExtent: false
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   344
          )
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   345
          #component: 
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   346
           #(#SpecCollection
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   347
              #collection: 
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   348
               #(
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   349
                 #(#UISubSpecification
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   350
                    #name: 'windowSpec'
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   351
                    #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 -26 1.0)
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   352
                    #minorKey: #windowSpec
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   353
                )
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   354
                 #(#UISubSpecification
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   355
                    #name: 'windowSpecForInfoBar'
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   356
                    #layout: #(#LayoutFrame 0 0 -24 1 0 1 0 1)
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   357
                    #majorKey: #ToolApplicationModel
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   358
                    #minorKey: #windowSpecForInfoBar
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   359
                )
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   360
              )
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   361
          )
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   362
      )
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   363
! !
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   364
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   365
!UIHelpTool class methodsFor:'menu specs'!
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   366
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   367
menu
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   368
    "This resource specification was automatically generated
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   369
     by the MenuEditor of ST/X."
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   370
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   371
    "Do not manually edit this!! If it is corrupted,
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   372
     the MenuEditor may not be able to read the specification."
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   373
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   374
    "
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   375
     MenuEditor new openOnClass:UIHelpTool andSelector:#menu
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   376
     (Menu new fromLiteralArrayEncoding:(UIHelpTool menu)) startUp
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   377
    "
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   378
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   379
    <resource: #menu>
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   380
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   381
    ^
904
b40cce7f3748 use standard help calls
tz
parents: 896
diff changeset
   382
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   383
       #(#Menu
904
b40cce7f3748 use standard help calls
tz
parents: 896
diff changeset
   384
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   385
           #(
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   386
             #(#MenuItem
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   387
                #label: 'File'
835
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   388
                #translateLabel: true
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   389
                #submenu: 
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   390
                 #(#Menu
904
b40cce7f3748 use standard help calls
tz
parents: 896
diff changeset
   391
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   392
                     #(
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   393
                       #(#MenuItem
835
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   394
                          #label: 'Load...'
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   395
                          #translateLabel: true
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   396
                          #value: #doLoad
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   397
                          #activeHelpKey: #fileLoad
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   398
                      )
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   399
                       #(#MenuItem
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   400
                          #label: '-'
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   401
                      )
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   402
                       #(#MenuItem
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   403
                          #label: 'Save'
835
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   404
                          #translateLabel: true
722
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
   405
                          #value: #doSave
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   406
                          #activeHelpKey: #fileSave
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   407
                      )
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   408
                       #(#MenuItem
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   409
                          #label: '-'
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   410
                      )
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   411
                       #(#MenuItem
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   412
                          #label: 'Exit'
835
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   413
                          #translateLabel: true
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   414
                          #value: #closeRequest
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   415
                          #activeHelpKey: #fileExit
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   416
                      )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   417
                    ) nil
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   418
                    nil
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   419
                )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   420
            )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   421
             #(#MenuItem
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   422
                #label: 'Edit'
835
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   423
                #translateLabel: true
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   424
                #submenu: 
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   425
                 #(#Menu
904
b40cce7f3748 use standard help calls
tz
parents: 896
diff changeset
   426
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   427
                     #(
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   428
                       #(#MenuItem
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   429
                          #label: 'Add'
835
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   430
                          #translateLabel: true
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   431
                          #value: #doAdd
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   432
                          #activeHelpKey: #addHelpTextKey
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   433
                      )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   434
                       #(#MenuItem
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   435
                          #label: '-'
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   436
                      )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   437
                       #(#MenuItem
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   438
                          #label: 'Delete'
835
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   439
                          #translateLabel: true
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   440
                          #value: #doDelete
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   441
                          #activeHelpKey: #deleteHelpTextKey
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   442
                      )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   443
                    ) nil
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   444
                    nil
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   445
                )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   446
            )
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   447
             #(#MenuItem
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   448
                #label: 'Help'
904
b40cce7f3748 use standard help calls
tz
parents: 896
diff changeset
   449
                #translateLabel: true
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   450
                #startGroup: #right
904
b40cce7f3748 use standard help calls
tz
parents: 896
diff changeset
   451
                #activeHelpKey: #help
b40cce7f3748 use standard help calls
tz
parents: 896
diff changeset
   452
                #submenuChannel: #menuHelp
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   453
            )
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   454
          ) nil
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   455
          nil
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   456
      )
835
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
   457
148
785417b6955d intitial checkin
ca
parents:
diff changeset
   458
! !
785417b6955d intitial checkin
ca
parents:
diff changeset
   459
785417b6955d intitial checkin
ca
parents:
diff changeset
   460
!UIHelpTool methodsFor:'accessing'!
785417b6955d intitial checkin
ca
parents:
diff changeset
   461
710
8c968790c885 use same help dict if started from the gui painter
tz
parents: 704
diff changeset
   462
dictionaries
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   463
    "returns the dictionary of the help dictionaries of the classes having help specs"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   464
710
8c968790c885 use same help dict if started from the gui painter
tz
parents: 704
diff changeset
   465
    ^dictionaries
8c968790c885 use same help dict if started from the gui painter
tz
parents: 704
diff changeset
   466
!
8c968790c885 use same help dict if started from the gui painter
tz
parents: 704
diff changeset
   467
8c968790c885 use same help dict if started from the gui painter
tz
parents: 704
diff changeset
   468
dictionaries:aDictionaryOfDictionaries
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   469
    "sets a dictionary of the help dictionaries of the classes having help specs"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   470
710
8c968790c885 use same help dict if started from the gui painter
tz
parents: 704
diff changeset
   471
    (dictionaries := aDictionaryOfDictionaries) isNil ifTrue:[
8c968790c885 use same help dict if started from the gui painter
tz
parents: 704
diff changeset
   472
        dictionaries := Dictionary new.
8c968790c885 use same help dict if started from the gui painter
tz
parents: 704
diff changeset
   473
    ].
715
7eebac822985 modified bug fixed
tz
parents: 710
diff changeset
   474
    self updateList.
710
8c968790c885 use same help dict if started from the gui painter
tz
parents: 704
diff changeset
   475
!
8c968790c885 use same help dict if started from the gui painter
tz
parents: 704
diff changeset
   476
151
ca
parents: 148
diff changeset
   477
dictionary
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   478
    "returns the dictionary of the selected class"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   479
722
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
   480
    ^dictionary
710
8c968790c885 use same help dict if started from the gui painter
tz
parents: 704
diff changeset
   481
!
151
ca
parents: 148
diff changeset
   482
ca
parents: 148
diff changeset
   483
dictionary:aDictionary
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   484
    "sets dictionary of the selected class"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   485
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   486
    (dictionary := aDictionary) isNil ifTrue:[
700
2aae4f3b6526 supports merging into existing help specs
tz
parents: 696
diff changeset
   487
        dictionary := Dictionary new.
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   488
    ].
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   489
    self updateList
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   490
!
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   491
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   492
helpKey
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   493
    "returns the help key of selected help text"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   494
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   495
    listSelection size ~~ 0 ifTrue:[
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   496
        ^ listSelection asSymbol
151
ca
parents: 148
diff changeset
   497
    ].
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   498
    ^ nil
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   499
!
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   500
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   501
helpKey:aKey
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   502
    "sets the help key into the selection channel in order to show the help text"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   503
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   504
    |key|
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   505
    aKey size ~~ 0 ifTrue:[
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   506
        key := aKey asString
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   507
    ].
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   508
    self listModel value:key
459
fb5b5ecf7e86 set modified if help text has changed
tz
parents: 456
diff changeset
   509
151
ca
parents: 148
diff changeset
   510
!
ca
parents: 148
diff changeset
   511
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   512
modified
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   513
    "returns whether the help tool was modified"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   514
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   515
    ^modified
700
2aae4f3b6526 supports merging into existing help specs
tz
parents: 696
diff changeset
   516
!
2aae4f3b6526 supports merging into existing help specs
tz
parents: 696
diff changeset
   517
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   518
modified: aBoolean
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   519
    "sets the help tool as modified"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   520
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   521
    modified := aBoolean
700
2aae4f3b6526 supports merging into existing help specs
tz
parents: 696
diff changeset
   522
!
2aae4f3b6526 supports merging into existing help specs
tz
parents: 696
diff changeset
   523
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   524
modifiedHolder:aValueHolder
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   525
    "sets the value holder to true in case of modifying attributes"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   526
891
bafed0c2436d avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 876
diff changeset
   527
    |eTxtView modChannel|
bafed0c2436d avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 876
diff changeset
   528
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   529
    modifiedHolder notNil ifTrue:[
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   530
        modifiedHolder removeDependent:self. 
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   531
    ].
148
785417b6955d intitial checkin
ca
parents:
diff changeset
   532
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   533
    (modifiedHolder := aValueHolder) notNil ifTrue:[
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   534
        modifiedHolder addDependent:self.
459
fb5b5ecf7e86 set modified if help text has changed
tz
parents: 456
diff changeset
   535
891
bafed0c2436d avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 876
diff changeset
   536
        (eTxtView := self editTextView) notNil ifTrue: [
bafed0c2436d avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 876
diff changeset
   537
            modChannel := eTxtView modifiedChannel.
bafed0c2436d avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 876
diff changeset
   538
            modChannel onChangeSend:#value to:[
459
fb5b5ecf7e86 set modified if help text has changed
tz
parents: 456
diff changeset
   539
                modifiedHolder notNil ifTrue:[
891
bafed0c2436d avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 876
diff changeset
   540
                    modChannel value ifTrue:[
459
fb5b5ecf7e86 set modified if help text has changed
tz
parents: 456
diff changeset
   541
                        modifiedHolder value:true
fb5b5ecf7e86 set modified if help text has changed
tz
parents: 456
diff changeset
   542
                    ]
fb5b5ecf7e86 set modified if help text has changed
tz
parents: 456
diff changeset
   543
                ]
fb5b5ecf7e86 set modified if help text has changed
tz
parents: 456
diff changeset
   544
            ]
fb5b5ecf7e86 set modified if help text has changed
tz
parents: 456
diff changeset
   545
        ]
fb5b5ecf7e86 set modified if help text has changed
tz
parents: 456
diff changeset
   546
    ]
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   547
891
bafed0c2436d avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 876
diff changeset
   548
    "Modified: / 16.7.1998 / 18:12:09 / cg"
715
7eebac822985 modified bug fixed
tz
parents: 710
diff changeset
   549
!
7eebac822985 modified bug fixed
tz
parents: 710
diff changeset
   550
7eebac822985 modified bug fixed
tz
parents: 710
diff changeset
   551
specClass
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   552
    "returns the class on which the help tool works"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   553
715
7eebac822985 modified bug fixed
tz
parents: 710
diff changeset
   554
    ^specClass
354
a6de8821d3bf add & remove popUpMenu
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
   555
! !
a6de8821d3bf add & remove popUpMenu
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
   556
148
785417b6955d intitial checkin
ca
parents:
diff changeset
   557
!UIHelpTool methodsFor:'aspects'!
785417b6955d intitial checkin
ca
parents:
diff changeset
   558
785417b6955d intitial checkin
ca
parents:
diff changeset
   559
listChannel
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   560
    "returns the value holder of the help texts"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   561
148
785417b6955d intitial checkin
ca
parents:
diff changeset
   562
    |holder|
785417b6955d intitial checkin
ca
parents:
diff changeset
   563
    (holder := builder bindingAt:#listChannel) isNil ifTrue:[
354
a6de8821d3bf add & remove popUpMenu
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
   564
        builder aspectAt:#listChannel put:(holder :=  OrderedCollection new asValue).
148
785417b6955d intitial checkin
ca
parents:
diff changeset
   565
    ].
785417b6955d intitial checkin
ca
parents:
diff changeset
   566
    ^ holder
785417b6955d intitial checkin
ca
parents:
diff changeset
   567
!
785417b6955d intitial checkin
ca
parents:
diff changeset
   568
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   569
listModel
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   570
    "returns the value holder of the help key"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   571
148
785417b6955d intitial checkin
ca
parents:
diff changeset
   572
    |holder|
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   573
    (holder := builder bindingAt:#listModel) isNil ifTrue:[
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   574
        holder := AspectAdaptor new subject:self; forAspect:#listSelection.
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   575
        builder aspectAt:#listModel put:holder.
148
785417b6955d intitial checkin
ca
parents:
diff changeset
   576
    ].
785417b6955d intitial checkin
ca
parents:
diff changeset
   577
    ^ holder
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   578
!
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   579
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   580
listOfHelpSpecClasses
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   581
    "returns the value holder of the specClass and its superclasses 
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   582
     which are subclasses of ApplicationModel"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   583
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   584
    |holder|       
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   585
    (holder := builder bindingAt:#listOfHelpSpecClasses) isNil ifTrue:[
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   586
        builder aspectAt:#listOfHelpSpecClasses put: (holder := List new)
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   587
    ].
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   588
    ^ holder
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   589
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   590
!
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   591
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   592
selectionOfHelpSpecClass
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   593
    "returns the value holder of the selected help spec class"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   594
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   595
    |holder|
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   596
    (holder := builder bindingAt:#selectionOfHelpSpecClass) isNil ifTrue:[
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   597
        builder aspectAt:#selectionOfHelpSpecClass put: (holder := ValueHolder new)
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   598
    ].
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   599
    ^ holder
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   600
148
785417b6955d intitial checkin
ca
parents:
diff changeset
   601
! !
785417b6955d intitial checkin
ca
parents:
diff changeset
   602
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   603
!UIHelpTool methodsFor:'building'!
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   604
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   605
buildFromClass:aClass
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   606
    "reads the help dictionary from aClass and find remaining classes 
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   607
     'between' aClass and ApplicationModel" 
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   608
963
62cdb7923a3b care for setup, before view components are built
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
   609
    |list listOfHelpSpecClassesView|
62cdb7923a3b care for setup, before view components are built
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
   610
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   611
    modified := false.
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   612
    specClass notNil
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   613
    ifTrue:
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   614
    [   
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   615
        dictionary   := Dictionary new.
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   616
        dictionaries := Dictionary new.
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   617
    ].
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   618
    specClass  := self getHelpSpecClassFromClass:aClass.
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   619
    (specClass isClass and: [specClass isLoaded])
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   620
    ifTrue: 
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   621
    [                                               
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   622
        (specClass class implements:specSelector) ifFalse:[
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   623
            dictionaries at: specClass name put: dictionary 
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   624
        ].
963
62cdb7923a3b care for setup, before view components are built
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
   625
        list := self listOfHelpSpecClasses.
62cdb7923a3b care for setup, before view components are built
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
   626
62cdb7923a3b care for setup, before view components are built
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
   627
        list contents:  (specClass withAllSuperclasses reverse collect: [:cls| cls name]).
62cdb7923a3b care for setup, before view components are built
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
   628
        (list includes: #ApplicationModel)
62cdb7923a3b care for setup, before view components are built
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
   629
            ifTrue: [list removeAll: (ApplicationModel withAllSuperclasses collect: [:cls| cls name])].
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   630
        self selectionOfHelpSpecClass value: specClass name.  
963
62cdb7923a3b care for setup, before view components are built
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
   631
62cdb7923a3b care for setup, before view components are built
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
   632
        listOfHelpSpecClassesView := builder componentAt: #listOfHelpSpecClassesView.
62cdb7923a3b care for setup, before view components are built
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
   633
        listOfHelpSpecClassesView notNil ifTrue:[
62cdb7923a3b care for setup, before view components are built
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
   634
            listOfHelpSpecClassesView selection: 
62cdb7923a3b care for setup, before view components are built
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
   635
                    (list value indexOf: specClass name).
62cdb7923a3b care for setup, before view components are built
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
   636
        ].
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   637
        self helpSpecClassSelected.
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   638
    ].
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   639
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   640
    self updateList
868
dfa9d6df10d8 need a builder to be present in #buildFromClass:
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   641
963
62cdb7923a3b care for setup, before view components are built
Claus Gittinger <cg@exept.de>
parents: 946
diff changeset
   642
    "Modified: / 21.8.1998 / 15:48:00 / cg"
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   643
!
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   644
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   645
buildFromClass: aClass andSelector: aSelector
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   646
    "sets aSelector and reads the help dictionary from aClass"
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   647
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   648
    specSelector := aSelector.
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   649
    self buildFromClass:aClass
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   650
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   651
! !
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   652
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   653
!UIHelpTool methodsFor:'callbacks'!
148
785417b6955d intitial checkin
ca
parents:
diff changeset
   654
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   655
helpSpecClassSelected
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   656
    "extracts the help dictionary from the selected class and make it current"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   657
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   658
    |clsName|
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   659
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   660
    clsName := self selectionOfHelpSpecClass value.
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   661
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   662
    (dictionary := dictionaries at: clsName ifAbsent: nil) isNil
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   663
    ifTrue:
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   664
    [        
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   665
        dictionary := dictionaries at: clsName put: (self extractHelpSpecForClass: (Smalltalk at: clsName))
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   666
    ].
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   667
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   668
    self updateList.
722
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
   669
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   670
    listSelection notNil
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   671
    ifTrue: 
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   672
    [
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   673
        (dictionary keys includes: listSelection asSymbol)
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   674
            ifTrue: [(builder componentAt: #listOfHelpKeysView) selection: 
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   675
                     (self listChannel value indexOf: (builder componentAt: #helpKeyInputField) contents)]
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   676
            ifFalse: [(builder componentAt: #listOfHelpKeysView) selection: nil].
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   677
    ].
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   678
    listSelection notNil
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   679
    ifTrue: 
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   680
    [
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   681
        self editTextView contents: (dictionary at: listSelection asSymbol ifAbsent: '')
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   682
    ]
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   683
369
9d34f1ff4d29 support of lineFeed charaters
ca
parents: 354
diff changeset
   684
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   685
! !
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   686
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   687
!UIHelpTool methodsFor:'help'!
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   688
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   689
defaultInfoLabel
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   690
    "returns the default label for the info bar"
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   691
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   692
    specClass isClass
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   693
    ifTrue:
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   694
    [
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   695
        (specClass class implements: specSelector)
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   696
        ifFalse: 
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   697
        [
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   698
            ^specSelector isNil 
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   699
                ifTrue:  [specClass name, ' >> ? (no selector defined)']
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   700
                ifFalse: [specClass name, ' >> ', specSelector, ' (not implemented)']
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   701
        ].
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   702
        ^specClass name, ' >> ', specSelector
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   703
    ].
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   704
    ^'No class and selector defined.'
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   705
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   706
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   707
904
b40cce7f3748 use standard help calls
tz
parents: 896
diff changeset
   708
!
b40cce7f3748 use standard help calls
tz
parents: 896
diff changeset
   709
b40cce7f3748 use standard help calls
tz
parents: 896
diff changeset
   710
openDocumentation
b40cce7f3748 use standard help calls
tz
parents: 896
diff changeset
   711
    "opens the documentation file of the Help Tool"
b40cce7f3748 use standard help calls
tz
parents: 896
diff changeset
   712
b40cce7f3748 use standard help calls
tz
parents: 896
diff changeset
   713
    self openHTMLDocument: 'tools/uipainter/HelpTool.html'
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   714
! !
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   715
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   716
!UIHelpTool methodsFor:'private'!
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   717
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   718
askForModification
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   719
    "asks for modification"
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   720
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   721
    modified
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   722
    ifTrue:
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   723
    [
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   724
        ((YesNoBox title: 'List was modified!!')        
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   725
            noText:'Cancel';
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   726
            yesText:'Waste it and proceed';
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   727
            showAtPointer;
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   728
            accepted) ifFalse: [^false].
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   729
        modified := false
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   730
    ].
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   731
    ^true
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   732
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   733
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   734
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   735
!
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   736
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   737
editTextView
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   738
    "returns the editTextView or nil"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   739
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   740
    |view|
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   741
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   742
    (view := builder componentAt:#helpTextView) notNil ifTrue:[
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   743
        view := view scrolledView.
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   744
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   745
        view acceptAction isNil ifTrue:[
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   746
            view acceptAction:[:aList| self accept ].
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   747
        ].
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   748
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   749
        view left ~~ 0 ifTrue:[
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   750
            (maxCharsPerLine := view extent x // view font width) < 10 ifTrue:[
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   751
                maxCharsPerLine := nil
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   752
            ]
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   753
        ].
454
8b016ffd83ce set modified if help text accepted
tz
parents: 393
diff changeset
   754
    ].       
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   755
    ^ view
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   756
!
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   757
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   758
extractHelpSpecForClass: aClass
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   759
    "extracts the help dictionary of aClass, it current and return it"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   760
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   761
    |helpSpecSuperClass superHelpSpecKeys helpSpec|
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   762
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   763
    ((aClass class implements: specSelector)
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   764
    and: [(helpSpecSuperClass := aClass allSuperclasses detect: [:cls| cls class implements: specSelector] ifNone: nil) notNil])
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   765
    ifTrue:
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   766
    [                  
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   767
        superHelpSpecKeys := helpSpecSuperClass helpSpec keys.
700
2aae4f3b6526 supports merging into existing help specs
tz
parents: 696
diff changeset
   768
        helpSpec := Dictionary new.
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   769
        aClass helpSpec associationsDo:
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   770
        [:asso|
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   771
            (superHelpSpecKeys includes: asso key) ifFalse: [helpSpec at: asso key put: asso value]
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   772
        ].          
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   773
        ^dictionary := helpSpec
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   774
    ].
700
2aae4f3b6526 supports merging into existing help specs
tz
parents: 696
diff changeset
   775
    ^dictionary := Dictionary new 
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   776
!
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   777
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   778
findHelpSpecForKey: aHelpKey
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   779
    "finds the help spec class including aHelpKey in its help dictionary and make it current"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   780
761
91e524583390 do not save, if help texts have not changed (unformatting)
tz
parents: 750
diff changeset
   781
    |dictTemp|
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   782
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   783
    aHelpKey isNil ifTrue: [^nil].
700
2aae4f3b6526 supports merging into existing help specs
tz
parents: 696
diff changeset
   784
    dictTemp := dictionary.
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   785
    self listOfHelpSpecClasses value do:
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   786
    [:clsName|            
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   787
        (dictionary := dictionaries at: clsName ifAbsent: nil) isNil
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   788
        ifTrue:
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   789
        [        
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   790
            dictionary := dictionaries at: clsName put: (self extractHelpSpecForClass: (Smalltalk at: clsName))
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   791
        ].
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   792
        (dictionary includesKey: aHelpKey asSymbol)  
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   793
        ifTrue:
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   794
        [            
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   795
            self updateList.
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   796
            ^(builder componentAt: #listOfHelpSpecClassesView) selection: 
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   797
                (self listOfHelpSpecClasses value indexOf: clsName).
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   798
        ]
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   799
    ].
700
2aae4f3b6526 supports merging into existing help specs
tz
parents: 696
diff changeset
   800
    dictionary := dictTemp
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   801
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   802
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   803
!
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   804
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   805
getHelpSpecClassFromClass:aClass
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   806
    "returns application class keeping the associated help text or nil"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   807
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   808
    |cls|
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   809
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   810
    ((cls := self resolveName:aClass) notNil and:[cls respondsTo: #helpSpecClass]) ifTrue:[
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   811
        ^cls helpSpecClass
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   812
    ].
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   813
    ^cls
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   814
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   815
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   816
!
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   817
761
91e524583390 do not save, if help texts have not changed (unformatting)
tz
parents: 750
diff changeset
   818
getUnformattedHelpText: aHelpText
91e524583390 do not save, if help texts have not changed (unformatting)
tz
parents: 750
diff changeset
   819
    "unformats aHelpText and returns it"
91e524583390 do not save, if help texts have not changed (unformatting)
tz
parents: 750
diff changeset
   820
91e524583390 do not save, if help texts have not changed (unformatting)
tz
parents: 750
diff changeset
   821
    |helpText|
896
0e732b716759 use #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 891
diff changeset
   822
0e732b716759 use #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 891
diff changeset
   823
    helpText := aHelpText asString copyReplaceAll:(Character cr) with:(Character space).
0e732b716759 use #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 891
diff changeset
   824
    (helpText endsWith:(Character space)) ifTrue:[
761
91e524583390 do not save, if help texts have not changed (unformatting)
tz
parents: 750
diff changeset
   825
        helpText := helpText copyWithoutLast:1
91e524583390 do not save, if help texts have not changed (unformatting)
tz
parents: 750
diff changeset
   826
    ].
896
0e732b716759 use #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 891
diff changeset
   827
    ^ helpText
0e732b716759 use #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 891
diff changeset
   828
0e732b716759 use #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 891
diff changeset
   829
    "Modified: / 20.7.1998 / 13:17:52 / cg"
761
91e524583390 do not save, if help texts have not changed (unformatting)
tz
parents: 750
diff changeset
   830
!
91e524583390 do not save, if help texts have not changed (unformatting)
tz
parents: 750
diff changeset
   831
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   832
installHelpSpecOnClass:aClass
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   833
    "saves the help dicts in aClass which is subclass of ApplicationModel"
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   834
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   835
    |cls src helpSpec|
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   836
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   837
    cls := self getHelpSpecClassFromClass: aClass.
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   838
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   839
    cls isNil ifTrue:[
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   840
        self information:'No application class defined!!'.
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   841
        ^nil
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   842
    ].
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   843
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   844
    (cls isSubclassOf: ApplicationModel) ifFalse:[
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   845
        self information: 'Cannot save help spec into class ', cls name asBoldText, ',\because it is not a subclass of ApplicationModel!!' withCRs.
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   846
        ^nil
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   847
    ].
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   848
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   849
    helpSpec := dictionaries 
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   850
        at: cls name 
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   851
        ifAbsent: [specClass notNil 
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   852
            ifTrue:  [dictionaries at: aClass put: (self extractHelpSpecForClass: (Smalltalk at: aClass))]
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   853
            ifFalse: [dictionary size > 0 ifTrue: [dictionary] ifFalse: [Dictionary new]]].
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   854
761
91e524583390 do not save, if help texts have not changed (unformatting)
tz
parents: 750
diff changeset
   855
    helpSpec associationsDo:
91e524583390 do not save, if help texts have not changed (unformatting)
tz
parents: 750
diff changeset
   856
    [:h|
91e524583390 do not save, if help texts have not changed (unformatting)
tz
parents: 750
diff changeset
   857
        helpSpec at: h key put: (self getUnformattedHelpText: h value)
91e524583390 do not save, if help texts have not changed (unformatting)
tz
parents: 750
diff changeset
   858
    ].
91e524583390 do not save, if help texts have not changed (unformatting)
tz
parents: 750
diff changeset
   859
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   860
    (cls class implements: specSelector) 
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   861
    ifTrue: 
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   862
    [
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   863
        |superclassHelpKeys implementedHelpSpec hasChanged|
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   864
        implementedHelpSpec := Dictionary new.
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   865
        superclassHelpKeys := (cls superclass respondsTo: specSelector)
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   866
            ifTrue:  [cls superclass helpSpec keys]
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   867
            ifFalse: [Array new].
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   868
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   869
        cls helpSpec associationsDo: [:h| (superclassHelpKeys includes: h key) 
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   870
            ifFalse: [implementedHelpSpec at: h key put: h value]].
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   871
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   872
        hasChanged := false.
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   873
        implementedHelpSpec associationsDo: [:h| (helpSpec            includesAssociation: h) ifFalse: [hasChanged := true]].
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   874
        helpSpec            associationsDo: [:h| (implementedHelpSpec includesAssociation: h) ifFalse: [hasChanged := true]].
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   875
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   876
        (implementedHelpSpec notEmpty and: [hasChanged and:
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   877
        [DialogBox confirm: 'Class ', cls name asBoldText, ' already implements\a help spec!!\\Do only replace, if you have removed\help keys in an existing help spec.\' withCRs yesLabel: ' Merge ' noLabel: ' Replace ']])
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   878
        ifTrue:
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   879
        [      
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   880
             implementedHelpSpec associationsDo: [:h| (helpSpec includesKey: h key) 
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   881
                ifFalse: [helpSpec at: h key put: h value]].
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   882
        ]
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   883
    ].
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   884
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   885
    helpSpec isEmpty ifTrue:[
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   886
        ^(cls superclass respondsTo: specSelector) ifTrue: [cls class removeSelector: specSelector].
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   887
    ].
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   888
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   889
    src  := '' writeStream.
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   890
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   891
    src nextPutAll:
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   892
        specSelector, '\' withCRs,
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   893
        (ResourceSpecEditor codeGenerationCommentForClass: UIHelpTool) withCRs,
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   894
    '\\' withCRs,
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   895
    '    "\' withCRs,
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   896
    '     UIHelpTool openOnClass:', cls name asString ,'    
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   897
    "
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   898
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   899
    <resource: #help>
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   900
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   901
    ^super ', specSelector, ' addPairsFrom:#(
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   902
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   903
'.
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   904
761
91e524583390 do not save, if help texts have not changed (unformatting)
tz
parents: 750
diff changeset
   905
    helpSpec keys asSortedCollection do:
91e524583390 do not save, if help texts have not changed (unformatting)
tz
parents: 750
diff changeset
   906
    [:key|
91e524583390 do not save, if help texts have not changed (unformatting)
tz
parents: 750
diff changeset
   907
        src nextPutLine: key storeString.
91e524583390 do not save, if help texts have not changed (unformatting)
tz
parents: 750
diff changeset
   908
        src nextPutLine: (helpSpec at: key) storeString; cr.
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   909
    ].
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   910
    src nextPutLine:')'.
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   911
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   912
    Compiler 
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   913
        compile:(src contents)
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   914
        forClass:cls class 
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   915
        inCategory:'help specs'.
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   916
!
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   917
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   918
installHelpSpecsOnClass:aClass
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   919
    "saves the help dicts on aClass and its superclasses which are subclasses of ApplicationModel"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   920
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   921
    |cls helpSpecClasses|
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   922
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   923
    cls := self getHelpSpecClassFromClass:aClass.
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   924
    cls isNil ifTrue: [^self information:'No application class defined!!'].
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   925
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   926
    modified ifFalse:[
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   927
        masterApplication isNil ifTrue: [self information:'Nothing was modified!!'].
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   928
        ^nil
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   929
    ].
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   930
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   931
    (helpSpecClasses := self listOfHelpSpecClasses value) notNil
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   932
    ifTrue:
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   933
    [        
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   934
        (helpSpecClasses includes: cls name) ifFalse: [helpSpecClasses add: cls name].
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   935
        helpSpecClasses do: [:clsName| (self installHelpSpecOnClass: clsName) isNil ifTrue: [^modified := false]].
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   936
    ]
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   937
    ifFalse:
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   938
    [      
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   939
        self installHelpSpecOnClass: cls
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   940
    ].
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   941
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   942
    modified := false.
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   943
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   944
!
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
   945
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   946
resourceMessage: aString
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   947
    "extracts from aString the specClass and the specSelector"
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   948
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   949
    (aString notNil and: [self askForModification]) 
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   950
    ifTrue:
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   951
    [            
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   952
        |msg cls sel|
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   953
        msg := aString asCollectionOfWords.
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   954
        (msg size == 2 and:
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   955
        [(cls := self resolveName:(msg at:1)) notNil])
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   956
        ifTrue:
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   957
        [
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   958
            specClass := cls name.
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   959
            specSelector := (msg at: 2) asSymbol.
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   960
            ^true
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   961
        ]
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   962
    ].
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   963
    ^false
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   964
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   965
!
9b705e31d38e some cleans
tz
parents: 740
diff changeset
   966
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   967
updateList
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   968
    "updates the list channel from dictionary"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   969
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   970
    self listChannel value: dictionary keys asSortedCollection
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   971
! !
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   972
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   973
!UIHelpTool methodsFor:'selection'!
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   974
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   975
listSelection
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   976
    "returns current selection"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   977
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   978
    ^ listSelection
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   979
!
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   980
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   981
listSelection:aSelection
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   982
    "sets current selection"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
   983
299
62009576ca33 checkin from browser
ca
parents: 292
diff changeset
   984
    |txt view sel|
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   985
722
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
   986
    aSelection isNil 
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
   987
        ifTrue: [(builder componentAt: #listOfHelpKeysView) selection: nil]
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
   988
        ifFalse: [(dictionary includesKey: aSelection asSymbol) ifFalse: [self findHelpSpecForKey: aSelection]].
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
   989
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   990
    aSelection isNumber ifTrue:[
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   991
        aSelection ~~ 0 ifTrue:[
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   992
            sel := self listChannel value at:aSelection
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   993
        ]
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   994
    ] ifFalse:[
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   995
        aSelection size ~~ 0 ifTrue:[
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   996
            sel := aSelection withoutSeparators.
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   997
            sel size == 0 ifTrue:[
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   998
                sel := nil
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
   999
            ]
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
  1000
        ]
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
  1001
    ].
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
  1002
299
62009576ca33 checkin from browser
ca
parents: 292
diff changeset
  1003
    listSelection = sel ifFalse:[
62009576ca33 checkin from browser
ca
parents: 292
diff changeset
  1004
        listSelection := sel.
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
  1005
299
62009576ca33 checkin from browser
ca
parents: 292
diff changeset
  1006
        modifiedHolder notNil ifTrue:[
62009576ca33 checkin from browser
ca
parents: 292
diff changeset
  1007
            modifiedHolder value:true.
62009576ca33 checkin from browser
ca
parents: 292
diff changeset
  1008
        ].
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
  1009
299
62009576ca33 checkin from browser
ca
parents: 292
diff changeset
  1010
        (view := self editTextView) notNil ifTrue:[
62009576ca33 checkin from browser
ca
parents: 292
diff changeset
  1011
            listSelection notNil ifTrue:[
62009576ca33 checkin from browser
ca
parents: 292
diff changeset
  1012
                txt := dictionary at:(listSelection asSymbol) ifAbsent:nil.
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
  1013
299
62009576ca33 checkin from browser
ca
parents: 292
diff changeset
  1014
                (txt isNil or:[maxCharsPerLine isNil]) ifFalse:[
369
9d34f1ff4d29 support of lineFeed charaters
ca
parents: 354
diff changeset
  1015
                    txt := UIPainter convertString:(txt asString) maxLineSize:maxCharsPerLine skipLineFeed:false.
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
  1016
                ]
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
  1017
            ]. 
459
fb5b5ecf7e86 set modified if help text has changed
tz
parents: 456
diff changeset
  1018
            view contents:txt.
fb5b5ecf7e86 set modified if help text has changed
tz
parents: 456
diff changeset
  1019
            view modified:false.
299
62009576ca33 checkin from browser
ca
parents: 292
diff changeset
  1020
        ]
62009576ca33 checkin from browser
ca
parents: 292
diff changeset
  1021
    ]
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
  1022
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
  1023
! !
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
  1024
369
9d34f1ff4d29 support of lineFeed charaters
ca
parents: 354
diff changeset
  1025
!UIHelpTool methodsFor:'startup / release'!
9d34f1ff4d29 support of lineFeed charaters
ca
parents: 354
diff changeset
  1026
9d34f1ff4d29 support of lineFeed charaters
ca
parents: 354
diff changeset
  1027
closeRequest
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1028
    "asks for permission before closing"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1029
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1030
    (self masterApplication isNil and:[self askForModification]) ifTrue:[super closeRequest]
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
  1031
!
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
  1032
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
  1033
initialize
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1034
    "initializes instance variables"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1035
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
  1036
    super initialize.
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
  1037
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1038
    specSelector := #helpSpec.
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
  1039
    dictionary   := Dictionary new.
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
  1040
    dictionaries := Dictionary new.
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
  1041
    modified   := false.
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
  1042
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
  1043
!
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
  1044
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1045
loadFromMessage:aString
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1046
    "loads a help spec by evaluating aString"
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1047
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1048
    (aString notNil and: [self askForModification]) 
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1049
    ifTrue:
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1050
    [            
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1051
        |msg cls sel|
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1052
        msg := aString asCollectionOfWords.
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1053
        (msg size == 2 and:
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1054
        [(cls := self resolveName:(msg at:1)) notNil and:
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1055
        [cls class implements: (sel := (msg at: 2) asSymbol)]])
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1056
        ifTrue:
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1057
        [               
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1058
            self buildFromClass: (specClass := cls name) andSelector: (specSelector := sel).
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1059
            ^true
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1060
        ]
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1061
    ].
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1062
    ^false
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1063
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1064
!
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1065
696
e91402372900 popup menu replaced by a list + supporting of help specs from different classes
tz
parents: 479
diff changeset
  1066
openInterface:aSymbol
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1067
    "do not open as stand alone"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1068
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1069
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1070
   
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1071
!
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1072
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1073
openOnClass:aClass
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1074
    "opens the UIHelpTool on aClass"
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1075
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1076
    super openInterface: #windowSpecForStandAlone.
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1077
    self masterApplication isNil ifTrue: [(builder componentAt: #RemoveButton) beInvisible].
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1078
    builder window label: 'Help Tool'.
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1079
    self buildFromClass: aClass
940
fa34addf6b1d added #openOnClass:aClass andSelector: aSelector
tz
parents: 904
diff changeset
  1080
!
fa34addf6b1d added #openOnClass:aClass andSelector: aSelector
tz
parents: 904
diff changeset
  1081
fa34addf6b1d added #openOnClass:aClass andSelector: aSelector
tz
parents: 904
diff changeset
  1082
openOnClass:aClass andSelector: aSelector
fa34addf6b1d added #openOnClass:aClass andSelector: aSelector
tz
parents: 904
diff changeset
  1083
    "opens the UIHelpTool on aClass and aSelector"
fa34addf6b1d added #openOnClass:aClass andSelector: aSelector
tz
parents: 904
diff changeset
  1084
fa34addf6b1d added #openOnClass:aClass andSelector: aSelector
tz
parents: 904
diff changeset
  1085
    super openInterface: #windowSpecForStandAlone.
fa34addf6b1d added #openOnClass:aClass andSelector: aSelector
tz
parents: 904
diff changeset
  1086
    self masterApplication isNil ifTrue: [(builder componentAt: #RemoveButton) beInvisible].
fa34addf6b1d added #openOnClass:aClass andSelector: aSelector
tz
parents: 904
diff changeset
  1087
    builder window label: 'Help Tool'.
fa34addf6b1d added #openOnClass:aClass andSelector: aSelector
tz
parents: 904
diff changeset
  1088
    self buildFromClass: aClass andSelector: aSelector
369
9d34f1ff4d29 support of lineFeed charaters
ca
parents: 354
diff changeset
  1089
! !
9d34f1ff4d29 support of lineFeed charaters
ca
parents: 354
diff changeset
  1090
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
  1091
!UIHelpTool methodsFor:'user actions'!
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
  1092
722
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1093
accept
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1094
    "accepts the help text"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1095
722
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1096
    |view key txt list listChgd|   
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1097
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1098
    (listSelection size == 0 or:[(view := self editTextView) isNil]) ifFalse:[
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1099
        txt    := view contents asString.
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1100
        key    := listSelection asSymbol.
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1101
        list   := self listChannel value.
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1102
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1103
        (listChgd := (dictionary at:key ifAbsent:nil) isNil) ifTrue:[
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1104
            list add:key.
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1105
        ].             
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1106
        dictionary at:key put:txt.
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1107
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1108
        listChgd ifTrue:[
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1109
            self updateList.
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1110
            (builder componentAt: #listOfHelpKeysView) selection: (list indexOf: key).
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1111
        ]. 
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1112
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
  1113
        modified := true.
722
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1114
        modifiedHolder notNil ifTrue: [modifiedHolder value:true]
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1115
    ]
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1116
!
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1117
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1118
doAdd
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1119
    "adds a help key"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1120
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1121
    |helpKey|
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1122
    (helpKey := (builder componentAt: #helpKeyInputField asSymbol) contents) size > 0
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1123
    ifTrue:
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1124
    [
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1125
        self listModel value: helpKey.
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1126
        self accept
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1127
    ]
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1128
    ifFalse:
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1129
    [
835
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
  1130
        self warn:'No key was entered !!'
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1131
    ]
835
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
  1132
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
  1133
    "Modified: / 20.5.1998 / 01:15:06 / cg"
722
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1134
!
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1135
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1136
doDelete
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1137
    "deletes the selected help key"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1138
722
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1139
    listSelection notNil
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1140
    ifTrue:
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1141
    [
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1142
        dictionary removeKey: listSelection asSymbol ifAbsent: nil.
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1143
        self doRemove.
722
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1144
        self updateList.
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
  1145
        modified := true.
722
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1146
        modifiedHolder notNil ifTrue: [modifiedHolder value:true]
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1147
    ]
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1148
    ifFalse:
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1149
    [
835
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
  1150
        self warn:'No key selected !!'
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1151
    ]
835
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
  1152
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
  1153
    "Modified: / 20.5.1998 / 01:15:00 / cg"
722
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1154
!
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1155
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1156
doLoad
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1157
    "opens a Resource Selection Browser in order to get a resource message"
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
  1158
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1159
    self loadFromMessage: 
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1160
        (ResourceSelectionBrowser
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1161
            request: 'Load Help Spec From Class'
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1162
            onSuperclass: nil
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1163
            andClass: specClass
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1164
            andSelector: specSelector ? #help
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1165
            withResourceTypes: (Array with: #help)).
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1166
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1167
    self updateInfoLabel
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
  1168
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1169
!
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
  1170
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1171
doNew
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1172
    "resets the help tool"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1173
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1174
    specClass := listSelection := nil.
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1175
    self dictionary: nil.
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1176
    self dictionaries: nil.
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1177
    self listOfHelpSpecClasses removeAll.
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1178
    modified := false.
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
  1179
!
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
  1180
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
  1181
doReload
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1182
    "reloads the help dictionaries"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1183
286
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
  1184
    |oldSel model|
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
  1185
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
  1186
    model  := self listModel.
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
  1187
    oldSel := model value.
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
  1188
    model value:nil.
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
  1189
    self helpSpecFrom:specClass.
23712b1d3f3d checkin from browser
ca
parents: 261
diff changeset
  1190
    model value:oldSel.
740
e7362f3ab5e5 some bugs fixed
tz
parents: 722
diff changeset
  1191
    modified := false.
369
9d34f1ff4d29 support of lineFeed charaters
ca
parents: 354
diff changeset
  1192
722
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1193
!
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1194
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1195
doRemove
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1196
    "removes the selected help key"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1197
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1198
    listSelection notNil
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1199
    ifTrue:
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1200
    [
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1201
        self listModel value: nil.
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1202
        self updateList.
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1203
        modifiedHolder notNil ifTrue: [modifiedHolder value:true]
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1204
    ]
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1205
    ifFalse:
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1206
    [
835
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
  1207
        self warn:'No key selected !!'
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1208
    ]
835
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
  1209
13793eec85d5 national strings
Claus Gittinger <cg@exept.de>
parents: 833
diff changeset
  1210
    "Modified: / 20.5.1998 / 01:15:11 / cg"
750
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1211
!
9b705e31d38e some cleans
tz
parents: 740
diff changeset
  1212
722
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1213
doSave
779
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1214
    "saves the help dictionaries on specClass"
2ffa22f97d5d comments + documentation
tz
parents: 761
diff changeset
  1215
722
a1bb632b1e00 better save routine + help text added
tz
parents: 717
diff changeset
  1216
    self installHelpSpecsOnClass:specClass
148
785417b6955d intitial checkin
ca
parents:
diff changeset
  1217
! !
785417b6955d intitial checkin
ca
parents:
diff changeset
  1218
785417b6955d intitial checkin
ca
parents:
diff changeset
  1219
!UIHelpTool class methodsFor:'documentation'!
785417b6955d intitial checkin
ca
parents:
diff changeset
  1220
785417b6955d intitial checkin
ca
parents:
diff changeset
  1221
version
785417b6955d intitial checkin
ca
parents:
diff changeset
  1222
    ^ '$Header$'
785417b6955d intitial checkin
ca
parents:
diff changeset
  1223
! !