UIPainter.st
author Claus Gittinger <cg@exept.de>
Thu, 08 Jul 1999 22:17:30 +0200
changeset 1180 97444c115c14
parent 1177 57a2a0edeb79
child 1185 6c14008722e9
permissions -rw-r--r--
oops
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
156
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
     1
"
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
     2
 COPYRIGHT (c) 1995-1998 by eXept Software AG
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
     3
	      All Rights Reserved
156
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
     4
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
     5
 This software is furnished under a license and may be used
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
     6
 only in accordance with the terms of that license and with the
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
     8
 be provided or otherwise made available to, or used by, any
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
     9
 other person.  No title to or ownership of the software is
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
    10
 hereby transferred.
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
    11
"
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
    12
368
9e588f397bc9 support of lineFeed character \ in the help text
ca
parents: 366
diff changeset
    13
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
    14
ToolApplicationModel subclass:#UIPainter
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
    15
	instanceVariableNames:'specClass specSelector specSuperclass aspects treeView specCanvas
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
    16
		selectionPanel tabSelection layoutCanvas helpCanvas modified'
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
    17
	classVariableNames:''
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
    18
	poolDictionaries:''
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
    19
	category:'Interface-UIPainter'
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
    20
!
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
    21
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
    22
SelectionInTreeView subclass:#TreeView
491
c3af7854dbe8 image instance variables removed + release all widget icons while snap shoting
tz
parents: 490
diff changeset
    23
	instanceVariableNames:'lastDrawnMaster cvsEventsDisabled windowSpec'
564
df1f1e84d94a add menu added
tz
parents: 547
diff changeset
    24
	classVariableNames:''
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
    25
	poolDictionaries:''
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
    26
	privateIn:UIPainter
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
    27
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
    28
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
    29
!UIPainter class methodsFor:'documentation'!
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
    30
156
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
    31
copyright
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
    32
"
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
    33
 COPYRIGHT (c) 1995-1998 by eXept Software AG
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
    34
	      All Rights Reserved
156
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
    35
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
    36
 This software is furnished under a license and may be used
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
    37
 only in accordance with the terms of that license and with the
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
    38
 inclusion of the above copyright notice.   This software may not
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
    39
 be provided or otherwise made available to, or used by, any
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
    40
 other person.  No title to or ownership of the software is
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
    41
 hereby transferred.
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
    42
"
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
    43
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
    44
!
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
    45
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
    46
documentation
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
    47
"
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
    48
    The GUI Painter provides the user with a graphical user interface for building own 
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
    49
    interfaces by interactively assembling widgets and defining the behavior of the widgets.
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
    50
    The resulting interface specifications can be saved as methods on the application
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
    51
    classes, typically subclasses of the class ApplicationModel. These specifications
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
    52
    are used by the UIBuilder to generate the application window and its widgets when 
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
    53
    opening the application.
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
    54
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
    55
    [start with:]
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
    56
	UIPainter open
127
95070ea7ae42 update layout from view
ca
parents: 124
diff changeset
    57
156
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
    58
    [author:]
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
    59
	Claus Gittinger, eXept Software AG
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
    60
	Claus Atzkern, eXept Software AG
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
    61
	Thomas Zwick, eXept Software AG
156
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 155
diff changeset
    62
127
95070ea7ae42 update layout from view
ca
parents: 124
diff changeset
    63
    [see also:]
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
    64
	UIBuilder
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
    65
	ApplicationModel
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
    66
	UISpecification
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
    67
"
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
    68
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
    69
! !
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
    70
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
    71
!UIPainter class methodsFor:'instance creation'!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
    72
195
350f95af5d9d check before sending selector to class
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    73
openOnClass:aClass andSelector:aSelector
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
    74
    "open a GUI Painter on aClass and (windowSpec) aSelector
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
    75
    "
195
350f95af5d9d check before sending selector to class
Claus Gittinger <cg@exept.de>
parents: 194
diff changeset
    76
    ^ self new openOnClass:aClass andSelector:aSelector
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
    77
! !
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
    78
87
cc6d70449622 add ST-80 queries
ca
parents: 81
diff changeset
    79
!UIPainter class methodsFor:'ST-80 queries'!
cc6d70449622 add ST-80 queries
ca
parents: 81
diff changeset
    80
cc6d70449622 add ST-80 queries
ca
parents: 81
diff changeset
    81
preferenceFor:aSymbol
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
    82
    "ST-80 compatible; always returns false
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
    83
    "
87
cc6d70449622 add ST-80 queries
ca
parents: 81
diff changeset
    84
    ^ false
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
    85
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
    86
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
    87
! !
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
    88
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
    89
!UIPainter class methodsFor:'accessing'!
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
    90
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
    91
defaultNameOfCanvas
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
    92
    "returns the default name of the application"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
    93
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
    94
    ^'NewApplication'
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
    95
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
    96
! !
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
    97
193
450d9e5c6f4a checkin from browser
ca
parents: 187
diff changeset
    98
!UIPainter class methodsFor:'help specs'!
450d9e5c6f4a checkin from browser
ca
parents: 187
diff changeset
    99
450d9e5c6f4a checkin from browser
ca
parents: 187
diff changeset
   100
helpSpec
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   101
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   102
     by the UIHelpTool of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   103
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   104
    "Do not manually edit this!! If it is corrupted,
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   105
     the UIHelpTool may not be able to read the specification."
295
114befd1c369 add some help text
ca
parents: 287
diff changeset
   106
193
450d9e5c6f4a checkin from browser
ca
parents: 187
diff changeset
   107
    "
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   108
     UIHelpTool openOnClass:UIPainter    
295
114befd1c369 add some help text
ca
parents: 287
diff changeset
   109
    "
114befd1c369 add some help text
ca
parents: 287
diff changeset
   110
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   111
    <resource: #help>
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   112
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   113
    ^super helpSpec addPairsFrom:#(
193
450d9e5c6f4a checkin from browser
ca
parents: 187
diff changeset
   114
934
b32cfce56571 help specs
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   115
#align
b32cfce56571 help specs
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   116
'Widget alignment functions.'
b32cfce56571 help specs
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   117
466
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   118
#alignSelectionBottom
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   119
'Aligns the selected widgets bottom edges with the bottom of the dominant widget.'
466
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   120
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   121
#alignSelectionCenterHor
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   122
'Aligns the selected widgets centers vertically with the center of the dominant widget.'
466
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   123
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   124
#alignSelectionCenterVer
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   125
'Aligns the selected widgets centers horizontally with the center of the dominant widget.'
466
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   126
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   127
#alignSelectionLeft
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   128
'Aligns the selected widgets left edges with the left edge of the dominant widget.'
466
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   129
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   130
#alignSelectionLeftAndRight
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   131
'Aligns the selected widgets left & right edges with the dominant widget.'
466
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   132
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   133
#alignSelectionRight
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   134
'Aligns the selected widgets right edges with the right edge of the dominant widget.'
466
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   135
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   136
#alignSelectionTop
934
b32cfce56571 help specs
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   137
'Aligns the selected widgets top edgegs with the top edge of the dominant widget.'
466
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   138
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   139
#alignSelectionTopAndBottom
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   140
'Aligns the selected widgets top and bottom edges with the dominant widget.'
466
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   141
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   142
#centerSelectionHor
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   143
'Centers the selected widgets horizontally within their containing widget.'
466
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   144
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   145
#centerSelectionVer
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   146
'Centers the selected widgets vertically within their containing widget.'
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   147
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   148
#changePositionDown
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
   149
'Moves the selected widget(s) towards the bottom.'
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   150
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   151
#changePositionLeft
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
   152
'Moves the selected widget(s) towards the left.'
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   153
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   154
#changePositionRight
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
   155
'Moves the selected widget(s) towards the right.'
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   156
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   157
#changePositionUp
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
   158
'Moves the selected widget(s) towards the top.'
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   159
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   160
#editDimensionCopyExtent
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   161
'Copies the extent of the selected widget.'
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   162
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   163
#editDimensionCopyLayout
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   164
'Copies the layout of the selected widget.'
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   165
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   166
#editDimensionDefaultExtent
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   167
'Sets the selected widget(s) extent to their default.'
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   168
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   169
#editDimensionDefaultHeight
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   170
'Sets the selected widget(s) height to their default.'
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   171
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   172
#editDimensionDefaultWidth
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   173
'Sets the selected widget(s) width to their default.'
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   174
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   175
#editDimensionPasteExtent
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   176
'Sets the extent of the selected widget(s) to the last copied extent.'
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   177
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   178
#editDimensionPasteHeight
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   179
'Sets the height of the selected widget(s) to the height of the last copied layout/extent.'
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   180
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   181
#editDimensionPasteLayout
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   182
'Sets the layout of the selected widget(s) to the last copied layout.'
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   183
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   184
#editDimensionPasteWidth
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   185
'Sets the width of the selected widget(s) to the width of the last copied layout/extent.'
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   186
724
7c7fb3f3a927 docu calls added
tz
parents: 721
diff changeset
   187
#editInspectSpec
7c7fb3f3a927 docu calls added
tz
parents: 721
diff changeset
   188
'Opens an inspector on the spec of the selected widget.'
7c7fb3f3a927 docu calls added
tz
parents: 721
diff changeset
   189
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
   190
#editInspectView
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
   191
'Opens an inspector on the view of the selected widget.'
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
   192
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   193
#editOpenSpecDocumentation
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   194
'Opens the documentation of the selected widget.'
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   195
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   196
#fileBrowseAspectMethods
934
b32cfce56571 help specs
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   197
'Opens a System Browser on the aspect methods.'
498
43a78c5f806c help texts added
tz
parents: 496
diff changeset
   198
43a78c5f806c help texts added
tz
parents: 496
diff changeset
   199
#fileLoad
1032
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   200
'Opens a dialog to load a window specification from a classes spec method.'
498
43a78c5f806c help texts added
tz
parents: 496
diff changeset
   201
533
dde823aeca4c supports loading of subspecs
tz
parents: 527
diff changeset
   202
#fileLoadSubspec
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   203
'Opens a dialog to load a sub specification from a classes windowSpec method.'
533
dde823aeca4c supports loading of subspecs
tz
parents: 527
diff changeset
   204
498
43a78c5f806c help texts added
tz
parents: 496
diff changeset
   205
#fileNew
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   206
'Creates a new window spec.'
498
43a78c5f806c help texts added
tz
parents: 496
diff changeset
   207
43a78c5f806c help texts added
tz
parents: 496
diff changeset
   208
#filePickAnInterface
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   209
'Select a view on the screen, generate a window spec for it and edit this spec.'
498
43a78c5f806c help texts added
tz
parents: 496
diff changeset
   210
43a78c5f806c help texts added
tz
parents: 496
diff changeset
   211
#fileSave
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   212
'Saves the window spec in the current class (as spec method).'
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   213
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   214
#fileSaveAs
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
   215
'Opens a dialog to select class and selector for saving the window spec.'
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   216
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   217
#fileShowWindowSpec
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   218
'Opens a Workspace showing the current window spec.'
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   219
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   220
#generateAspectMethods
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   221
'Generates aspect methods for defined aspect selectors of the widgets.'
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   222
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   223
#generateHookMethods
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   224
'Generates startup/release methods. (#closeRequest, #postBuildWith:, #postOpenWith:)'
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   225
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
   226
#helpExamples
935
43e8ce3b62ca help specs again.
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
   227
'Show some examples uses of the GUI Painter.'
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
   228
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
   229
#helpFunctions
935
43e8ce3b62ca help specs again.
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
   230
'Show the documentation on the GUI Painters menu and button functions.'
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
   231
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
   232
#helpLayoutTool
935
43e8ce3b62ca help specs again.
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
   233
'Show the Layout Tools documentation.'
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
   234
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
   235
#helpSelectedWidget
935
43e8ce3b62ca help specs again.
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
   236
'Show the documentation of the selected widget.'
43e8ce3b62ca help specs again.
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
   237
43e8ce3b62ca help specs again.
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
   238
#helpTutorial
43e8ce3b62ca help specs again.
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
   239
'Show the GUI Painters documentation.'
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
   240
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   241
#historyMenuItem
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   242
'Edit this windowSpec.'
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   243
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   244
#moveWidgetDown
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   245
'Moves the selected widget one step down.'
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   246
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   247
#moveWidgetInto
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   248
'Moves the selected widget into next widget as child widget.'
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   249
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   250
#moveWidgetOut
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   251
'Moves the selected widget out of its parent widget.'
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   252
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   253
#moveWidgetUp
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   254
'Moves the selected widget one step up.'
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
   255
466
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   256
#pasteBuffer
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
   257
'Pastes the widgets of the clipboard at the current mouse position.'
466
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   258
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   259
#pasteWithLayout
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   260
'Pastes the widgets of the clipboard without a changing of their layouts.'
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   261
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   262
#settingsCanvas
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   263
'Shows or hides the canvas window.'
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   264
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   265
#settingsGallery
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   266
'Shows or hides the gallery window.'
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   267
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   268
#settingsGridManager
1032
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   269
'Opens a dialog to toggle grid display or to change the grids spacing.'
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   270
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   271
#settingsRedefineAspectMethods
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   272
'Toggles the permission to overwrite existing aspect methods.'
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   273
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   274
#settingsAspectsAsInstances
1032
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   275
'Generate aspects as instance variables (or bindings, if off).'
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   276
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   277
#settingsTranscriptHelp
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   278
'Toggles display of help texts (after opening a new GUI Painter).'
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   279
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   280
#settingsUndoManager
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
   281
'Opens a dialog to undo modifications.'
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
   282
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
   283
#spreadSelectionHor
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   284
'Sets the horizontal spaces between the selected widgets as the same.'
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
   285
466
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   286
#spreadSelectionVer
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   287
'Sets the vertical spaces between the selected widgets as the same.'
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   288
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   289
#testGeometryTestMode
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   290
'Toggles geometry test mode (to define ratios of variable panels and top-window dimension).'
498
43a78c5f806c help texts added
tz
parents: 496
diff changeset
   291
43a78c5f806c help texts added
tz
parents: 496
diff changeset
   292
#testStartApplication
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
   293
'Starts the application with the current window spec.'
194
2b05bd327785 recompute property list when changing view ordering by
ca
parents: 193
diff changeset
   294
193
450d9e5c6f4a checkin from browser
ca
parents: 187
diff changeset
   295
)
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
   296
935
43e8ce3b62ca help specs again.
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
   297
    "Modified: / 31.7.1998 / 19:29:53 / cg"
193
450d9e5c6f4a checkin from browser
ca
parents: 187
diff changeset
   298
! !
450d9e5c6f4a checkin from browser
ca
parents: 187
diff changeset
   299
297
14db1276218c change the spec;
ca
parents: 295
diff changeset
   300
!UIPainter class methodsFor:'helpers'!
14db1276218c change the spec;
ca
parents: 295
diff changeset
   301
368
9e588f397bc9 support of lineFeed character \ in the help text
ca
parents: 366
diff changeset
   302
convertString:aString maxLineSize:maxCharactersPerLine skipLineFeed:skipLineFeed
297
14db1276218c change the spec;
ca
parents: 295
diff changeset
   303
    "converts a string to a string collection with maximum characters
14db1276218c change the spec;
ca
parents: 295
diff changeset
   304
     per line
14db1276218c change the spec;
ca
parents: 295
diff changeset
   305
    "
14db1276218c change the spec;
ca
parents: 295
diff changeset
   306
    |stream
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   307
	max     "{ Class:SmallInteger }"
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   308
	size    "{ Class:SmallInteger }"
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   309
	start   "{ Class:SmallInteger }"
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   310
	stop    "{ Class:SmallInteger }"
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   311
	cpySz   "{ Class:SmallInteger }"
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   312
	lnSz    "{ Class:SmallInteger }"
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   313
	atBeginOfLine|
297
14db1276218c change the spec;
ca
parents: 295
diff changeset
   314
14db1276218c change the spec;
ca
parents: 295
diff changeset
   315
    maxCharactersPerLine < 20 ifFalse:[max := maxCharactersPerLine - 1]
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   316
			       ifTrue:[max := 20].
297
14db1276218c change the spec;
ca
parents: 295
diff changeset
   317
14db1276218c change the spec;
ca
parents: 295
diff changeset
   318
    (size := aString size) <= max ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   319
	^ aString
297
14db1276218c change the spec;
ca
parents: 295
diff changeset
   320
    ].
14db1276218c change the spec;
ca
parents: 295
diff changeset
   321
    start  := 1.
14db1276218c change the spec;
ca
parents: 295
diff changeset
   322
    lnSz   := 0.
14db1276218c change the spec;
ca
parents: 295
diff changeset
   323
    stream := (String new:size) writeStream.
14db1276218c change the spec;
ca
parents: 295
diff changeset
   324
542
11be1353d34c author in doc method
Claus Gittinger <cg@exept.de>
parents: 538
diff changeset
   325
    atBeginOfLine := true.
11be1353d34c author in doc method
Claus Gittinger <cg@exept.de>
parents: 538
diff changeset
   326
297
14db1276218c change the spec;
ca
parents: 295
diff changeset
   327
    [start <= size] whileTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   328
	(start := aString indexOfNonSeparatorStartingAt:start) == 0 ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   329
	    ^ stream contents
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   330
	].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   331
	(aString at:start) == $\ ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   332
	    skipLineFeed ifFalse:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   333
		stream nextPut:$\
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   334
	    ].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   335
	    start := start + 1.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   336
	    stream cr.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   337
	    start := start + 1.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   338
	    lnSz := 0.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   339
	] ifFalse:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   340
	    (stop := aString indexOfSeparatorStartingAt:start) == 0 ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   341
		stop := size + 1
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   342
	    ].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   343
	    (aString at:(stop - 1)) == $\ ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   344
		stop := stop - 1
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   345
	    ].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   346
	    cpySz := stop - start.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   347
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   348
	    lnSz == 0 ifFalse:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   349
		(lnSz := lnSz + cpySz) >= max ifTrue:[stream cr.    lnSz := cpySz. atBeginOfLine := true. ]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   350
					     ifFalse:[stream space. lnSz := lnSz + 1]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   351
	    ] ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   352
		lnSz := cpySz
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   353
	    ].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   354
	    stream nextPutAll:aString startingAt:start to:(stop - 1).
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   355
	    start := stop.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   356
	]
297
14db1276218c change the spec;
ca
parents: 295
diff changeset
   357
    ].
14db1276218c change the spec;
ca
parents: 295
diff changeset
   358
    ^ stream contents
542
11be1353d34c author in doc method
Claus Gittinger <cg@exept.de>
parents: 538
diff changeset
   359
11be1353d34c author in doc method
Claus Gittinger <cg@exept.de>
parents: 538
diff changeset
   360
    "Modified: / 1.2.1998 / 14:42:56 / cg"
297
14db1276218c change the spec;
ca
parents: 295
diff changeset
   361
! !
14db1276218c change the spec;
ca
parents: 295
diff changeset
   362
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   363
!UIPainter class methodsFor:'image specs'!
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   364
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   365
iconAlignB
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   366
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   367
     by the ImageEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   368
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
   369
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   370
     the ImageEditor may not be able to read the specification."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   371
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   372
    "
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   373
     ImageEditor openOnClass:self andSelector:#iconAlignB
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   374
    "
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   375
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   376
    <resource: #image>
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   377
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   378
    ^Icon
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   379
	constantNamed:#'UIPainter iconAlignB'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   380
	ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@E@@@@@@@G@@@@@@@G@E@@@@@G@G@@@@@G@G@@@@@G@G@@@E@G@G@@@G@G@G@K@G@G@G@@@G@G@G@A@G@G@G@@@G@G@G@K@@@@@@@@B*****(@B*****(@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 0 0 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@G C@G @@G'' @G'' @G'' @G'' G'''' G'''' G'''' G''''!!G'''' G'''' G'''' G'''' O??0O??0@@@@@@@C@@@@') ; yourself); yourself]
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
   381
!
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   382
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   383
iconAlignL
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   384
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   385
     by the ImageEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   386
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
   387
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   388
     the ImageEditor may not be able to read the specification."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   389
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   390
    "
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   391
     ImageEditor openOnClass:self andSelector:#iconAlignL
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   392
    "
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   393
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   394
    <resource: #image>
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   395
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   396
    ^Icon
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   397
	constantNamed:#'UIPainter iconAlignL'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   398
	ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@(@@@@@@@(@@@@@@@(UUUP@I@(_??0@@@(@@@@@@@(@@@@@@@(@@@@@@@(@@@@@@@(UUUU@@@(_???@@@(@@@@@E@(@@@@@@@(@@@@@@@(@@@@@@@(UU@@@@@(_?@@@@@(@@@@@@@(@@@@@@@@@@@@@E@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 0 0 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@F@@@G?>@G?>@G?>@G?>@F@@@F@@@G?? G?? G?? G?? F@@@F@@@G? @G? @G? @G? @F@@@@@@@@@@@') ; yourself); yourself]
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
   399
!
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   400
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   401
iconAlignLR
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   402
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   403
     by the ImageEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   404
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
   405
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   406
     the ImageEditor may not be able to read the specification."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   407
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   408
    "
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   409
     ImageEditor openOnClass:self andSelector:#iconAlignLR
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   410
    "
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   411
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   412
    <resource: #image>
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   413
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   414
    ^Icon
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   415
	constantNamed:#'UIPainter iconAlignLR'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   416
	ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@(@@@B @@(@@@B @@(UUUR I@(_??2 @@(@@@B @@(@@@B @@(@@@B @@(@@@B @@(UUUR @@(_??2 @@(@@@B E@(@@@B @@(@@@B @@(@@@B @@(UUUR @@(_??B @@(@@@B @@(@@@B @@@@@@@@E@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 0 0 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@F@A G?? G?? G?? G?? F@A F@A G?? G?? G?? G?? F@A F@A G?? G?? G?; G?? F@A @@@@@@@@') ; yourself); yourself]
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
   417
!
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   418
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   419
iconAlignR
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   420
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   421
     by the ImageEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   422
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
   423
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   424
     the ImageEditor may not be able to read the specification."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   425
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   426
    "
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   427
     ImageEditor openOnClass:self andSelector:#iconAlignR
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   428
    "
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   429
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   430
    <resource: #image>
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   431
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   432
    ^Icon
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   433
	constantNamed:#'UIPainter iconAlignR'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   434
	ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@B @@@@@@B @@@UUUR I@@_??2 @@@@@@B @@@@@@B @@@@@@B @@@@@@B @@EUUUR @@G???2 @@@@@@B E@@@@@B @@@@@@B @@@@@@B @@@@EUR @@@@G?2 @@@@@@B @@@@@@B @@@@@@@@E@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 0 0 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@A A?? A?? A?? A?? @@A @@A G?? G?? G?? G?? @@A @@A @G? @G? @G? @G? @@A @@@@@@@@') ; yourself); yourself]!
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   435
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   436
iconAlignT
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   437
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   438
     by the ImageEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   439
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
   440
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   441
     the ImageEditor may not be able to read the specification."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   442
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   443
    "
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   444
     ImageEditor openOnClass:self andSelector:#iconAlignT
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   445
    "
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   446
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   447
    <resource: #image>
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   448
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   449
    ^Icon
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   450
	constantNamed:#'UIPainter iconAlignT'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   451
	ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@B*****(@B*****(@@@@@@@@@@E@E@E@K@G@G@G@@@G@G@G@A@G@G@G@@@G@G@G@K@G@G@G@@@@@G@G@@@@@G@G@@@@@G@G@@@@@G@G@@@@@G@@@@@@@G@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 0 0 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@C@@@@O??0O??0G'''' G'''' G'''' G'''' G''''!!G'''' G'''' G'''' @G'' @G'' @G'' @G'' @G @@G C@@@@@@@@@@@@') ; yourself); yourself]
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
   452
!
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   453
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   454
iconAlignTB
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   455
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   456
     by the ImageEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   457
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
   458
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   459
     the ImageEditor may not be able to read the specification."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   460
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   461
    "
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   462
     ImageEditor openOnClass:self andSelector:#iconAlignTB
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   463
    "
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   464
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   465
    <resource: #image>
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   466
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   467
    ^Icon
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   468
	constantNamed:#'UIPainter iconAlignTB'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   469
	ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@A@@@@@@@@@@@@@@@@B*****(@B*****(@@@@@@@@@@E@E@E@G@G@G@G@@@G@G@G@@@G@G@G@@@G@G@G@H@G@G@G@@@G@G@G@A@G@G@G@@@G@G@G@@@G@G@D@@@@@@@@@@B*****(@B*****(@@@@@@@@@@@@@@@@H@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 0 0 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@C@@@@O??0O??0G'''' G''''!!G'''' G'''' G'''' G'''' G'''' G'''' G''''!!G''''!!G''& G'''' O??0O??2@@@@@@@@@@@@') ; yourself); yourself]
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
   470
! !
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   471
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
   472
!UIPainter class methodsFor:'interface specs'!
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
   473
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   474
dialogSpecForDefiningClassAndSelector
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   475
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   476
     by the UIPainter of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   477
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
   478
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   479
     the UIPainter may not be able to read the specification."
366
68b0e0a329a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   480
68b0e0a329a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   481
    "
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   482
     UIPainter new openOnClass:UIPainter andSelector:#dialogSpecForDefiningClassAndSelector
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   483
     UIPainter new openInterface:#dialogSpecForDefiningClassAndSelector
366
68b0e0a329a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   484
    "
68b0e0a329a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   485
68b0e0a329a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   486
    <resource: #canvas>
68b0e0a329a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   487
68b0e0a329a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   488
    ^
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
   489
     
366
68b0e0a329a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   490
       #(#FullSpec
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   491
	  #window: 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   492
	   #(#WindowSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   493
	      #name: 'GUI Painter'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   494
	      #layout: #(#LayoutFrame 291 0 130 0 637 0 289 0)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   495
	      #label: 'GUI Painter'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   496
	      #min: #(#Point 350 160)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   497
	      #max: #(#Point 500 160)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   498
	      #bounds: #(#Rectangle 291 130 638 290)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   499
	      #usePreferredExtent: false
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   500
	  )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   501
	  #component: 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   502
	   #(#SpecCollection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   503
	      #collection: 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   504
	       #(
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   505
		 #(#FramedBoxSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   506
		    #name: 'FramedBox'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   507
		    #layout: #(#LayoutFrame 0 0.0 3 0.0 0 1.0 -35 1.0)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   508
		    #component: 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   509
		     #(#SpecCollection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   510
			#collection: 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   511
			 #(
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   512
			   #(#LabelSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   513
			      #name: 'selectorLabel'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   514
			      #layout: #(#AlignmentOrigin 67 0.11 29 0 1 0.5)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   515
			      #label: 'Selector:'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   516
			      #translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   517
			      #adjust: #right
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   518
			      #resizeForLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   519
			  )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   520
			   #(#InputFieldSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   521
			      #name: 'methodNameField'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   522
			      #layout: #(#LayoutFrame 70 0.11 18 0 4 1.0 40 0)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   523
			      #tabable: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   524
			      #model: #methodNameChannel
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   525
			      #group: #inputGroup
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   526
			  )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   527
			   #(#LabelSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   528
			      #name: 'classLabel'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   529
			      #layout: #(#AlignmentOrigin 67 0.11 54 0 1 0.5)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   530
			      #label: 'Class:'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   531
			      #translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   532
			      #adjust: #right
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   533
			      #resizeForLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   534
			  )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   535
			   #(#InputFieldSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   536
			      #name: 'classNameField'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   537
			      #layout: #(#LayoutFrame 70 0.11 43 0 4 1.0 65 0)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   538
			      #tabable: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   539
			      #model: #classNameChannel
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   540
			      #group: #inputGroup
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   541
			  )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   542
			   #(#LabelSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   543
			      #name: 'superClassLabel'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   544
			      #layout: #(#AlignmentOrigin 67 0.11 79 0 1 0.5)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   545
			      #label: 'Superclass:'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   546
			      #translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   547
			      #adjust: #right
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   548
			      #resizeForLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   549
			  )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   550
			   #(#ComboBoxSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   551
			      #name: 'superclassNameComboBox'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   552
			      #layout: #(#LayoutFrame 70 0.11 68 0 4 1.0 90 0)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   553
			      #tabable: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   554
			      #model: #superclassNameChannel
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   555
			      #comboList: #superclassNameDefaults
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   556
			  )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   557
			)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   558
		    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   559
		    #label: 'Define Class And Selector'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   560
		    #labelPosition: #topLeft
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   561
		    #translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   562
		)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   563
		 #(#UISubSpecification
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   564
		    #name: 'subSpec'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   565
		    #layout: #(#LayoutFrame 0 0.0 -29 1 0 1.0 -5 1)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   566
		    #majorKey: #ToolApplicationModel
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   567
		    #minorKey: #windowSpecForCommitWithoutChannels
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   568
		)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   569
	      )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   570
	  )
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   571
      )
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
   572
950
3e227dc788be fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents: 939
diff changeset
   573
    "Modified: / 13.8.1998 / 19:59:44 / cg"
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   574
!
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   575
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   576
dialogSpecForDefiningGridParameters
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   577
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   578
     by the UIPainter of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   579
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
   580
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   581
     the UIPainter may not be able to read the specification."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   582
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   583
    "
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   584
     UIPainter new openOnClass:UIPainter andSelector:#dialogSpecForDefiningGridParameters
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   585
     UIPainter new openInterface:#dialogSpecForDefiningGridParameters
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   586
    "
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   587
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   588
    <resource: #canvas>
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   589
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   590
    ^
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   591
     
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   592
       #(#FullSpec
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   593
	  #window: 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   594
	   #(#WindowSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   595
	      #name: 'GUI Painter'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   596
	      #layout: #(#LayoutFrame 291 0 130 0 572 0 327 0)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   597
	      #label: 'GUI Painter'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   598
	      #min: #(#Point 300 200)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   599
	      #max: #(#Point 300 200)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   600
	      #bounds: #(#Rectangle 291 130 573 328)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   601
	      #usePreferredExtent: false
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   602
	  )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   603
	  #component: 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   604
	   #(#SpecCollection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   605
	      #collection: 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   606
	       #(
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   607
		 #(#FramedBoxSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   608
		    #name: 'FramedBox'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   609
		    #layout: #(#LayoutFrame 0 0.0 3 0.0 0 1.0 -35 1.0)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   610
		    #component: 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   611
		     #(#SpecCollection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   612
			#collection: 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   613
			 #(
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   614
			   #(#CheckBoxSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   615
			      #name: 'ShowGridCheckBox'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   616
			      #layout: #(#Point 13 14)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   617
			      #model: #showGrid
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   618
			      #label: 'Show Grid'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   619
			  )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   620
			   #(#CheckBoxSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   621
			      #name: 'AlignCheckBox'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   622
			      #layout: #(#Point 13 42)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   623
			      #model: #alignToGrid
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   624
			      #label: 'Align To Grid'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   625
			  )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   626
			   #(#LabelSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   627
			      #name: 'HorizontalPixelsLabel'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   628
			      #layout: #(#AlignmentOrigin 138 0 89 0 1 0.5)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   629
			      #label: 'Horizontal Pixels:'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   630
			      #translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   631
			      #adjust: #right
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   632
			      #resizeForLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   633
			  )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   634
			   #(#InputFieldSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   635
			      #name: 'HorizontalPixelsField'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   636
			      #layout: #(#LayoutFrame 144 0 77 0 197 0 99 0)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   637
			      #model: #hspace
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   638
			      #group: #inputGroup
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   639
			      #type: #numberOrNil
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   640
			  )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   641
			   #(#LabelSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   642
			      #name: 'VerticalPixelsLabel'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   643
			      #layout: #(#AlignmentOrigin 139 0 114 0 1 0.5)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   644
			      #label: 'Vertical Pixels:'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   645
			      #translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   646
			      #adjust: #right
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   647
			      #resizeForLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   648
			  )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   649
			   #(#InputFieldSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   650
			      #name: 'VerticalPixelsField'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   651
			      #layout: #(#LayoutFrame 144 0 102 0 197 0 124 0)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   652
			      #model: #vspace
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   653
			      #group: #inputGroup
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   654
			      #type: #numberOrNil
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   655
			  )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   656
			)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   657
		    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   658
		    #label: 'Grid Parameter'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   659
		    #labelPosition: #topLeft
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   660
		    #translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   661
		)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   662
		 #(#UISubSpecification
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   663
		    #name: 'subSpec'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   664
		    #layout: #(#LayoutFrame 0 0.0 -29 1 0 1.0 -5 1)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   665
		    #majorKey: #ToolApplicationModel
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   666
		    #minorKey: #windowSpecForCommitWithoutChannels
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   667
		)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   668
	      )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   669
	  )
366
68b0e0a329a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   670
      )
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
   671
950
3e227dc788be fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents: 939
diff changeset
   672
    "Modified: / 13.8.1998 / 20:00:00 / cg"
366
68b0e0a329a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   673
!
68b0e0a329a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   674
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   675
windowSpec
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   676
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   677
     by the UIPainter of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   678
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   679
    "Do not manually edit this!! If it is corrupted,
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   680
     the UIPainter may not be able to read the specification."
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
   681
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
   682
    "
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   683
     UIPainter new openOnClass:UIPainter andSelector:#windowSpec
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   684
     UIPainter new openInterface:#windowSpec
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   685
     UIPainter open
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
   686
    "
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
   687
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
   688
    <resource: #canvas>
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
   689
1115
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   690
    ^ 
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   691
     #(#FullSpec
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   692
        #name: #windowSpec
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   693
        #window: 
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   694
       #(#WindowSpec
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   695
          #label: 'GUI Painter'
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   696
          #name: 'GUI Painter'
1174
524f221e431d initital extent a bit bigger
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
   697
          #layout: #(#LayoutFrame 220 0 200 0 827 0 722 0)
1115
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   698
          #min: #(#Point 560 460)
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   699
          #max: #(#Point 1160 870)
1174
524f221e431d initital extent a bit bigger
Claus Gittinger <cg@exept.de>
parents: 1172
diff changeset
   700
          #bounds: #(#Rectangle 220 200 828 723)
1115
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   701
          #menu: #menu
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   702
        )
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   703
        #component: 
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   704
       #(#SpecCollection
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   705
          #collection: #(
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   706
           #(#MenuPanelSpec
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   707
              #name: 'menuToolbarView'
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   708
              #layout: #(#LayoutFrame 0 0.0 0 0 0 1.0 32 0)
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   709
              #tabable: true
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   710
              #menu: #menuToolbar
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   711
            )
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   712
           #(#VariableHorizontalPanelSpec
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   713
              #name: 'hpanel'
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   714
              #layout: #(#LayoutFrame 0 0.0 34 0.0 0 1.0 -26 1.0)
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   715
              #level: 1
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   716
              #handles: #(#Any 0.318868 1.0)
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   717
              #component: 
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   718
             #(#SpecCollection
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   719
                #collection: #(
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   720
                 #(#ArbitraryComponentSpec
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   721
                    #name: 'treeView'
1059
ecb59576e1e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
   722
                    #tabable: true
1115
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   723
                    #menu: #menuEdit
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   724
                    #hasHorizontalScrollBar: true
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   725
                    #hasVerticalScrollBar: true
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   726
                    #miniScrollerHorizontal: true
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   727
                    #miniScrollerVertical: true
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   728
                    #hasBorder: false
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   729
                    #component: #treeView
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   730
                  )
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   731
                 #(#ViewSpec
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   732
                    #name: 'specHolderView'
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   733
                    #borderWidth: 1
1059
ecb59576e1e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
   734
                    #component: 
1115
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   735
                   #(#SpecCollection
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   736
                      #collection: #(
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   737
                       #(#MenuPanelSpec
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   738
                          #name: 'menuToolbar2View'
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   739
                          #layout: #(#LayoutFrame -1 0.0 -2 0 -1 1.0 30 0)
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   740
                          #enableChannel: #canMoveOrAlignSelection
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   741
                          #tabable: true
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   742
                          #menu: #menuToolbar2
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   743
                        )
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   744
                       #(#NoteBookViewSpec
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   745
                          #name: 'noteBook'
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   746
                          #layout: #(#LayoutFrame 0 0.0 34 0.0 0 1.0 -30 1.0)
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   747
                          #enableChannel: #enableChannel
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   748
                          #tabable: true
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   749
                          #model: #tabModel
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   750
                          #menu: #tabList
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   751
                          #canvas: #noteBookView
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   752
                        )
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   753
                       #(#HorizontalPanelViewSpec
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   754
                          #name: 'horizontalPanelView1'
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   755
                          #layout: #(#LayoutFrame -163 1 -1 0 -35 1.0 28 0)
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   756
                          #horizontalLayout: #fit
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   757
                          #verticalLayout: #fit
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   758
                          #horizontalSpace: 0
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   759
                          #verticalSpace: 0
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   760
                          #component: 
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   761
                         #(#SpecCollection
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   762
                            #collection: #(
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   763
                             #(#ArrowButtonSpec
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   764
                                #name: 'MoveLeftButton'
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   765
                                #activeHelpKey: #changePositionLeft
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   766
                                #tabable: true
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   767
                                #model: #moveSelectionLeft
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   768
                                #enableChannel: #canMoveOrAlignSelection
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   769
                                #isTriggerOnDown: true
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   770
                                #actionValue: ''
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   771
                                #direction: #left
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   772
                                #useDefaultExtent: true
1059
ecb59576e1e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
   773
                              )
1115
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   774
                             #(#ArrowButtonSpec
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   775
                                #name: 'MoveRightButton'
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   776
                                #activeHelpKey: #changePositionRight
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   777
                                #model: #moveSelectionRight
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   778
                                #enableChannel: #canMoveOrAlignSelection
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   779
                                #isTriggerOnDown: true
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   780
                                #actionValue: ''
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   781
                                #direction: #right
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   782
                                #useDefaultExtent: true
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   783
                              )
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   784
                             #(#ArrowButtonSpec
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   785
                                #name: 'MoveDownButton'
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   786
                                #activeHelpKey: #changePositionDown
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   787
                                #model: #moveSelectionDown
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   788
                                #enableChannel: #canMoveOrAlignSelection
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   789
                                #isTriggerOnDown: true
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   790
                                #actionValue: ''
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   791
                                #direction: #down
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   792
                                #useDefaultExtent: true
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   793
                              )
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   794
                             #(#ArrowButtonSpec
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   795
                                #name: 'MoveUpButton'
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   796
                                #activeHelpKey: #changePositionUp
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   797
                                #model: #moveSelectionUp
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   798
                                #enableChannel: #canMoveOrAlignSelection
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   799
                                #isTriggerOnDown: true
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   800
                                #actionValue: ''
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   801
                                #direction: #up
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   802
                                #useDefaultExtent: true
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   803
                              )
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   804
                             )
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   805
                           
1059
ecb59576e1e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
   806
                          )
ecb59576e1e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
   807
                        )
1115
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   808
                       #(#ActionButtonSpec
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   809
                          #label: 'helpIcon'
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   810
                          #name: 'openWidgetDocumentationButton'
1167
cc867734c712 layout of help-button
Claus Gittinger <cg@exept.de>
parents: 1131
diff changeset
   811
                          #layout: #(#LayoutFrame -28 1 -1 0 0 1 28 0)
1115
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   812
                          #activeHelpKey: #editOpenSpecDocumentation
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   813
                          #hasCharacterOrientedLabel: false
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   814
                          #model: #doOpenWidgetDocumentation
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   815
                        )
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   816
                       #(#ActionButtonSpec
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   817
                          #label: 'Cancel'
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   818
                          #name: 'cancelButton'
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   819
                          #layout: #(#LayoutFrame 2 0 -26 1 -1 0.5 -2 1)
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   820
                          #activeHelpKey: #commitCancel
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   821
                          #tabable: true
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   822
                          #model: #cancel
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   823
                          #enableChannel: #modifiedChannel
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   824
                        )
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   825
                       #(#ActionButtonSpec
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   826
                          #label: 'OK'
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   827
                          #name: 'acceptButton'
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   828
                          #layout: #(#LayoutFrame 1 0.5 -26 1 -2 1 -2 1)
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   829
                          #activeHelpKey: #commitOK
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   830
                          #tabable: true
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   831
                          #model: #accept
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   832
                          #enableChannel: #modifiedChannel
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   833
                        )
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   834
                       )
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   835
                     
1059
ecb59576e1e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
   836
                    )
1115
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   837
                  )
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   838
                 )
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   839
               
1059
ecb59576e1e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
   840
              )
1115
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   841
            )
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   842
           #(#UISubSpecification
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   843
              #name: 'infoBarSubSpec'
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   844
              #layout: #(#LayoutFrame 0 0.0 -24 1 0 1.0 0 1.0)
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   845
              #majorKey: #ToolApplicationModel
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   846
              #minorKey: #windowSpecForInfoBar
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   847
            )
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   848
           )
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   849
         
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   850
        )
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
   851
      )
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
   852
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
   853
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
   854
!UIPainter class methodsFor:'menu specs'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
   855
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
   856
menu
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   857
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   858
     by the MenuEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   859
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   860
    "Do not manually edit this!! If it is corrupted,
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   861
     the MenuEditor may not be able to read the specification."
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
   862
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
   863
    "
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
   864
     MenuEditor new openOnClass:UIPainter andSelector:#menu
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
   865
     (Menu new fromLiteralArrayEncoding:(UIPainter menu)) startUp
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
   866
    "
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
   867
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
   868
    <resource: #menu>
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
   869
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
   870
    ^
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
   871
     
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
   872
       #(#Menu
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
   873
          
1032
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   874
           #(
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   875
             #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   876
                #label: 'About'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   877
                #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   878
                #activeHelpKey: #about
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   879
                #labelImage: #(#ResourceRetriever nil #menuIcon)
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   880
                #submenuChannel: #menuAbout
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   881
            )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   882
             #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   883
                #label: 'File'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   884
                #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   885
                #activeHelpKey: #file
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   886
                #enabled: #enableChannel
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   887
                #submenu: 
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   888
                 #(#Menu
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
   889
                    
1032
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   890
                     #(
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   891
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   892
                          #label: 'New'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   893
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   894
                          #value: #doNew
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   895
                          #activeHelpKey: #fileNew
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   896
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   897
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   898
                          #label: '-'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   899
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   900
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   901
                          #label: 'Load...'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   902
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   903
                          #value: #doLoad
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   904
                          #activeHelpKey: #fileLoad
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   905
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   906
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   907
                          #label: 'Load Subspec...'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   908
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   909
                          #value: #doLoadSubspec
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   910
                          #activeHelpKey: #fileLoadSubspec
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   911
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   912
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   913
                          #label: '-'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   914
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   915
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   916
                          #label: 'Save'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   917
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   918
                          #value: #doSave
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   919
                          #activeHelpKey: #fileSave
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   920
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   921
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   922
                          #label: 'Save As...'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   923
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   924
                          #value: #doSaveAs
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   925
                          #activeHelpKey: #fileSaveAs
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   926
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   927
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   928
                          #label: 'Define Class And Selector...'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   929
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   930
                          #value: #doDefineClassAndSelector
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   931
                          #activeHelpKey: #fileSaveAs
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   932
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   933
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   934
                          #label: '-'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   935
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   936
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   937
                          #label: 'Pick A Window Spec...'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   938
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   939
                          #value: #doPickAView
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   940
                          #activeHelpKey: #filePickAnInterface
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   941
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   942
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   943
                          #label: '-'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   944
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   945
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   946
                          #label: 'Show Window Spec'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   947
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   948
                          #value: #doWindowSpec
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   949
                          #activeHelpKey: #fileShowWindowSpec
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   950
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   951
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   952
                          #label: 'Browse Class'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   953
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   954
                          #value: #doBrowseClass
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   955
                          #activeHelpKey: #fileBrowseClass
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   956
                          #enabled: #hasSpecClass
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   957
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   958
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   959
                          #label: 'Browse Aspect Methods'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   960
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   961
                          #value: #doBrowseAspectMethods
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   962
                          #activeHelpKey: #fileBrowseAspectMethods
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   963
                          #enabled: #hasSpecClass
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   964
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   965
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   966
                          #label: '-'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   967
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   968
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   969
                          #label: 'Exit'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   970
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   971
                          #value: #closeRequest
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   972
                          #activeHelpKey: #fileExit
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   973
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   974
                    ) nil
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   975
                    nil
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   976
                )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   977
            )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   978
             #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   979
                #label: 'Edit'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   980
                #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   981
                #activeHelpKey: #edit
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   982
                #submenuChannel: #menuEdit
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   983
            )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   984
             #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   985
                #label: 'Align'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   986
                #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   987
                #activeHelpKey: #align
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   988
                #submenuChannel: #menuAlign
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   989
            )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   990
             #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   991
                #label: 'Generate'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   992
                #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   993
                #activeHelpKey: #generate
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   994
                #submenu: 
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   995
                 #(#Menu
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   996
                    
1032
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   997
                     #(
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   998
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   999
                          #label: 'Aspect Methods'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1000
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1001
                          #value: #doGenerateAspectMethods
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1002
                          #activeHelpKey: #generateAspectMethods
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1003
                          #enabled: #hasSpecClass
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1004
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1005
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1006
                          #label: 'Menu Stub Methods'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1007
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1008
                          #value: #doGenerateMenuMethods
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1009
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1010
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1011
                          #label: '-'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1012
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1013
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1014
                          #label: 'Hook Methods'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1015
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1016
                          #value: #doGenerateHookMethods
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1017
                          #activeHelpKey: #generateHookMethods
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1018
                          #enabled: #hasSpecClass
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1019
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1020
                    ) nil
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1021
                    nil
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1022
                )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1023
            )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1024
             #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1025
                #label: 'Test'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1026
                #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1027
                #activeHelpKey: #test
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1028
                #submenu: 
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1029
                 #(#Menu
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1030
                    
1032
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1031
                     #(
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1032
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1033
                          #label: 'Start Application'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1034
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1035
                          #value: #doStartApplication
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1036
                          #activeHelpKey: #testStartApplication
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1037
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1038
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1039
                          #label: '-'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1040
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1041
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1042
                          #label: 'Geometry Test Mode'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1043
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1044
                          #activeHelpKey: #testGeometryTestMode
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1045
                          #indication: #testMode:
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1046
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1047
                    ) nil
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1048
                    nil
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1049
                )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1050
            )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1051
             #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1052
                #label: 'Settings'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1053
                #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1054
                #activeHelpKey: #settings
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1055
                #submenu: 
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1056
                 #(#Menu
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1057
                    
1032
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1058
                     #(
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1059
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1060
                          #label: 'Canvas'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1061
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1062
                          #activeHelpKey: #settingsCanvas
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1063
                          #indication: #painterShown
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1064
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1065
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1066
                          #label: 'Gallery'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1067
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1068
                          #activeHelpKey: #settingsGallery
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1069
                          #indication: #galleryShown
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1070
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1071
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1072
                          #label: '-'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1073
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1074
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1075
                          #label: 'Redefine Aspect Methods'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1076
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1077
                          #activeHelpKey: #settingsRedefineAspectMethods
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1078
                          #enabled: #hasSpecClass
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1079
                          #indication: #redefineAspectMethods:
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1080
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1081
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1082
                          #label: 'Aspects As Instances'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1083
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1084
                          #activeHelpKey: #settingsAspectsAsInstances
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1085
                          #enabled: #hasSpecClass
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1086
                          #indication: #generateAspectsAsInstanceVariables:
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1087
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1088
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1089
                          #label: '-'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1090
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1091
"/                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1092
"/                          #label: 'Fonts'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1093
"/                          #submenuChannel: #menuFont
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1094
"/                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1095
"/                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1096
"/                          #label: '-'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1097
"/                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1098
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1099
                          #label: 'Undo Manager...'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1100
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1101
                          #value: #openUndoMenu
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1102
                          #activeHelpKey: #settingsUndoManager
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1103
                          #enabled: #hasUndoHistory
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1104
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1105
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1106
                          #label: 'Grid Manager...'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1107
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1108
                          #value: #doDefineGrid
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1109
                          #activeHelpKey: #settingsGridManager
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1110
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1111
                    ) nil
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1112
                    nil
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1113
                )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1114
            )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1115
             #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1116
                #label: 'History'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1117
                #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1118
                #activeHelpKey: #history
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1119
                #submenuChannel: #menuHistory
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1120
            )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1121
             #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1122
                #label: 'Help'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1123
                #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1124
                #startGroup: #right
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1125
                #activeHelpKey: #help
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1126
                #submenu: 
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1127
                 #(#Menu
564
df1f1e84d94a add menu added
tz
parents: 547
diff changeset
  1128
                    
1032
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1129
                     #(
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1130
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1131
                          #label: 'Tutorial'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1132
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1133
                          #value: #openHTMLDocument:
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1134
                          #activeHelpKey: #helpTutorial
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1135
                          #argument: 'tools/uipainter/TOP.html'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1136
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1137
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1138
                          #label: '-'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1139
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1140
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1141
                          #label: 'Functions'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1142
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1143
                          #value: #openHTMLDocument:
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1144
                          #activeHelpKey: #helpFunctions
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1145
                          #argument: 'tools/uipainter/Functions.html'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1146
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1147
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1148
                          #label: 'Examples'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1149
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1150
                          #value: #openHTMLDocument:
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1151
                          #activeHelpKey: #helpExamples
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1152
                          #argument: 'tools/uipainter/Examples.html'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1153
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1154
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1155
                          #label: '-'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1156
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1157
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1158
                          #label: 'Help Tool'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1159
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1160
                          #value: #openHTMLDocument:
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1161
                          #activeHelpKey: #helpHelpTool
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1162
                          #argument: 'tools/uipainter/HelpTool.html'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1163
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1164
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1165
                          #label: 'Layout Tool'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1166
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1167
                          #value: #openHTMLDocument:
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1168
                          #activeHelpKey: #helpLayoutTool
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1169
                          #argument: 'tools/uipainter/LayoutTool.html'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1170
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1171
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1172
                          #label: '-'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1173
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1174
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1175
                          #label: 'Selected Widget'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1176
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1177
                          #value: #doOpenWidgetDocumentation
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1178
                          #activeHelpKey: #helpSelectedWidget
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1179
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1180
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1181
                          #label: '-'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1182
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1183
                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1184
                          #label: 'Show Help Texts'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1185
                          #translateLabel: true
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1186
                          #activeHelpKey: #helpShowHelp
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1187
                          #indication: #showingHelp:
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1188
                      )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1189
                    ) nil
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1190
                    nil
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1191
                )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1192
            )
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1193
          ) nil
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1194
          nil
564
df1f1e84d94a add menu added
tz
parents: 547
diff changeset
  1195
      )
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
  1196
966
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  1197
    "Modified: / 23.8.1998 / 16:09:22 / cg"
564
df1f1e84d94a add menu added
tz
parents: 547
diff changeset
  1198
!
df1f1e84d94a add menu added
tz
parents: 547
diff changeset
  1199
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1200
menuAlign
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1201
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1202
     by the MenuEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1203
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
  1204
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1205
     the MenuEditor may not be able to read the specification."
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1206
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1207
    "
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1208
     MenuEditor new openOnClass:UIPainter andSelector:#menuAlign
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1209
     (Menu new fromLiteralArrayEncoding:(UIPainter menuAlign)) startUp
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  1210
    "
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  1211
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  1212
    <resource: #menu>
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  1213
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  1214
    ^
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  1215
     
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  1216
       #(#Menu
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  1217
          
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1218
	   #(
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1219
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1220
		#label: 'Left'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1221
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1222
		#value: #alignSelectionLeft
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1223
		#activeHelpKey: #alignSelectionLeft
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1224
		#enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1225
		#labelImage: #(#ResourceRetriever #UIPainter #iconAlignL 'Left')
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1226
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1227
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1228
		#label: 'Right'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1229
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1230
		#value: #alignSelectionRight
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1231
		#activeHelpKey: #alignSelectionRight
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1232
		#enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1233
		#labelImage: #(#ResourceRetriever #UIPainter #iconAlignR 'Right')
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1234
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1235
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1236
		#label: 'Left & Right'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1237
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1238
		#value: #alignSelectionLeftAndRight
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1239
		#activeHelpKey: #alignSelectionLeftAndRight
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1240
		#enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1241
		#labelImage: #(#ResourceRetriever #UIPainter #iconAlignLR 'Left & Right')
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1242
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1243
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1244
		#label: 'Top'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1245
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1246
		#value: #alignSelectionTop
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1247
		#activeHelpKey: #alignSelectionTop
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1248
		#enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1249
		#labelImage: #(#ResourceRetriever #UIPainter #iconAlignT 'Top')
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1250
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1251
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1252
		#label: 'Bottom'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1253
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1254
		#value: #alignSelectionBottom
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1255
		#activeHelpKey: #alignSelectionBottom
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1256
		#enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1257
		#labelImage: #(#ResourceRetriever #UIPainter #iconAlignB 'Bottom')
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1258
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1259
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1260
		#label: 'Top & Bottom'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1261
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1262
		#value: #alignSelectionTopAndBottom
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1263
		#activeHelpKey: #alignSelectionTopAndBottom
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1264
		#enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1265
		#labelImage: #(#ResourceRetriever #UIPainter #iconAlignTB 'Top & Bottom')
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1266
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1267
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1268
		#label: '-'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1269
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1270
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1271
		#label: 'Centered Horizontal'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1272
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1273
		#value: #alignSelectionCenterHor
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1274
		#activeHelpKey: #alignSelectionCenterHor
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1275
		#enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1276
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1277
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1278
		#label: 'Centered Vertical'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1279
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1280
		#value: #alignSelectionCenterVer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1281
		#activeHelpKey: #alignSelectionCenterVer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1282
		#enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1283
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1284
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1285
		#label: '-'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1286
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1287
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1288
		#label: 'Center Horizontal In Frame'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1289
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1290
		#value: #centerSelectionHor
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1291
		#activeHelpKey: #centerSelectionHor
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1292
		#enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1293
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1294
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1295
		#label: 'Center Vertical In Frame'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1296
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1297
		#value: #centerSelectionVer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1298
		#activeHelpKey: #centerSelectionVer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1299
		#enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1300
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1301
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1302
		#label: '-'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1303
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1304
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1305
		#label: 'Spread Horizontal'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1306
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1307
		#value: #spreadSelectionHor
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1308
		#activeHelpKey: #spreadSelectionHor
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1309
		#enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1310
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1311
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1312
		#label: 'Spread Vertical'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1313
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1314
		#value: #spreadSelectionVer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1315
		#activeHelpKey: #spreadSelectionVer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1316
		#enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1317
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1318
	  ) nil
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1319
	  nil
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1320
      )
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
  1321
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
  1322
    "Modified: / 20.5.1998 / 01:42:57 / cg"
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1323
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1324
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1325
menuEdit
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1326
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1327
     by the MenuEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1328
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  1329
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1330
     the MenuEditor may not be able to read the specification."
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1331
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1332
    "
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1333
     MenuEditor new openOnClass:UIPainter andSelector:#menuEdit
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1334
     (Menu new fromLiteralArrayEncoding:(UIPainter menuEdit)) startUp
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1335
    "
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1336
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1337
    <resource: #menu>
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1338
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1339
    ^
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1340
     
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1341
       #(#Menu
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1342
          
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1343
	   #(
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1344
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1345
		#label: 'Undo'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1346
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1347
		#nameKey: #undo
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1348
		#value: #undoLast
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1349
		#activeHelpKey: #editUndo
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1350
		#enabled: #hasUndoHistory
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1351
		#shortcutKeyCharacter: #Cmdu
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1352
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1353
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1354
		#label: '-'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1355
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1356
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1357
		#label: 'Cut'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1358
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1359
		#value: #deleteSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1360
		#activeHelpKey: #editCut
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1361
		#enabled: #valueOfCanCut
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1362
		#shortcutKeyCharacter: #Cut
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1363
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1364
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1365
		#label: 'Copy'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1366
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1367
		#value: #copySelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1368
		#activeHelpKey: #editCopy
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1369
		#enabled: #valueOfCanCopy
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1370
		#shortcutKeyCharacter: #Copy
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1371
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1372
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1373
		#label: 'Paste'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1374
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1375
		#value: #pasteBuffer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1376
		#activeHelpKey: #pasteBuffer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1377
		#enabled: #valueOfCanPaste
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1378
		#shortcutKeyCharacter: #Paste
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1379
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1380
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1381
		#label: 'Delete'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1382
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1383
		#value: #deleteTotalSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1384
		#activeHelpKey: #editDelete
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1385
		#enabled: #valueOfCanCut
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1386
		#shortcutKeyCharacter: #Delete
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1387
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1388
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1389
		#label: '-'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1390
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1391
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1392
		#label: 'Paste With Layout'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1393
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1394
		#value: #pasteWithLayout
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1395
		#activeHelpKey: #pasteWithLayout
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1396
		#enabled: #valueOfCanPasteWithKeepingLayout
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1397
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1398
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1399
		#label: '-'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1400
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1401
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1402
		#label: 'Move'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1403
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1404
		#enabled: #canMoveSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1405
		#submenuChannel: #menuMove
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1406
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1407
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1408
		#label: 'Dimension'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1409
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1410
		#enabled: #hasSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1411
		#submenu: 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1412
		 #(#Menu
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1413
                    
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1414
		     #(
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1415
		       #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1416
			  #label: 'Default Extent'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1417
			  #translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1418
			  #value: #setToDefaultExtent
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1419
			  #activeHelpKey: #editDimensionDefaultExtent
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1420
			  #enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1421
		      )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1422
		       #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1423
			  #label: 'Default Width'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1424
			  #translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1425
			  #value: #setToDefaultWidth
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1426
			  #activeHelpKey: #editDimensionDefaultWidth
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1427
			  #enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1428
		      )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1429
		       #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1430
			  #label: 'Default Height'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1431
			  #translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1432
			  #value: #setToDefaultHeight
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1433
			  #activeHelpKey: #editDimensionDefaultHeight
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1434
			  #enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1435
		      )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1436
		       #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1437
			  #label: '-'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1438
		      )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1439
		       #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1440
			  #label: 'Copy Layout'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1441
			  #translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1442
			  #value: #copyLayout
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1443
			  #activeHelpKey: #editDimensionCopyLayout
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1444
			  #enabled: #hasSingleSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1445
		      )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1446
		       #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1447
			  #label: 'Copy Extent'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1448
			  #translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1449
			  #value: #copyExtent
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1450
			  #activeHelpKey: #editDimensionCopyExtent
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1451
			  #enabled: #hasSingleSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1452
		      )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1453
		       #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1454
			  #label: '-'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1455
		      )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1456
		       #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1457
			  #label: 'Paste Layout'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1458
			  #translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1459
			  #value: #pasteLayout
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1460
			  #activeHelpKey: #editDimensionPasteLayout
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1461
			  #enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1462
		      )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1463
		       #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1464
			  #label: 'Paste Extent'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1465
			  #translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1466
			  #value: #pasteExtent
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1467
			  #activeHelpKey: #editDimensionPasteExtent
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1468
			  #enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1469
		      )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1470
		       #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1471
			  #label: 'Paste Width'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1472
			  #translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1473
			  #value: #pasteWidth
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1474
			  #activeHelpKey: #editDimensionPasteWidth
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1475
			  #enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1476
		      )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1477
		       #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1478
			  #label: 'Paste Height'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1479
			  #translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1480
			  #value: #pasteHeight
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1481
			  #activeHelpKey: #editDimensionPasteHeight
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1482
			  #enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1483
		      )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1484
		    ) nil
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1485
		    nil
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1486
		)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1487
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1488
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1489
		#label: '-'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1490
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1491
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1492
		#label: 'Open Widget Documentation'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1493
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1494
		#value: #doOpenWidgetDocumentation
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1495
		#activeHelpKey: #editOpenSpecDocumentation
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1496
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1497
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1498
		#label: '-'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1499
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1500
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1501
		#label: 'Inspect View'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1502
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1503
		#value: #doInspectView
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1504
		#activeHelpKey: #editInspectView
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1505
		#enabled: #hasOneSelectionOtherThanCanvas
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1506
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1507
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1508
		#label: 'Inspect Spec'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1509
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1510
		#value: #doInspectSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1511
		#activeHelpKey: #editInspectSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1512
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1513
	  ) nil
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1514
	  nil
498
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1515
      )
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
  1516
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
  1517
    "Modified: / 20.5.1998 / 01:46:00 / cg"
498
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1518
!
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1519
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1520
menuMove
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1521
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1522
     by the MenuEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1523
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  1524
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1525
     the MenuEditor may not be able to read the specification."
498
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1526
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1527
    "
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1528
     MenuEditor new openOnClass:UIPainter andSelector:#menuMove
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1529
     (Menu new fromLiteralArrayEncoding:(UIPainter menuMove)) startUp
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1530
    "
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1531
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1532
    <resource: #menu>
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1533
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1534
    ^
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1535
     
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1536
       #(#Menu
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1537
          
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1538
	   #(
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1539
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1540
		#label: 'Up'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1541
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1542
		#value: #doStepUp
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1543
		#activeHelpKey: #moveWidgetUp
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1544
		#enabled: #canChangeOrderInContainer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1545
		#labelImage: #(#ResourceRetriever #Icon #upIcon 'Up')
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1546
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1547
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1548
		#label: 'Down'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1549
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1550
		#value: #doStepDown
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1551
		#activeHelpKey: #moveWidgetDown
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1552
		#enabled: #canChangeOrderInContainer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1553
		#labelImage: #(#ResourceRetriever #Icon #downIcon 'Down')
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1554
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1555
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1556
		#label: 'Into'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1557
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1558
		#value: #doStepIn
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1559
		#activeHelpKey: #moveWidgetInto
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1560
		#enabled: #canMoveSelectionIntoContainer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1561
		#labelImage: #(#ResourceRetriever #Icon #downRightIcon 'Into')
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1562
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1563
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1564
		#label: 'Out'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1565
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1566
		#value: #doStepOut
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1567
		#activeHelpKey: #moveWidgetOut
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1568
		#enabled: #canMoveSelectionOutOfContainer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1569
		#labelImage: #(#ResourceRetriever #Icon #leftDownIcon 'Out')
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1570
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1571
	  ) nil
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1572
	  nil
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1573
      )
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1574
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1575
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1576
menuToolbar
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1577
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1578
     by the MenuEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1579
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
  1580
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1581
     the MenuEditor may not be able to read the specification."
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1582
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1583
    "
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1584
     MenuEditor new openOnClass:UIPainter andSelector:#menuToolbar
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1585
     (Menu new fromLiteralArrayEncoding:(UIPainter menuToolbar)) startUp
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1586
    "
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1587
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1588
    <resource: #menu>
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1589
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1590
    ^
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1591
     
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1592
       #(#Menu
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1593
          
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1594
	   #(
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1595
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1596
		#label: 'Start'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1597
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1598
		#value: #doStartApplication
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1599
		#activeHelpKey: #testStartApplication
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1600
		#labelImage: #(#ResourceRetriever #Icon #startIcon)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1601
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1602
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1603
		#label: ''
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1604
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1605
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1606
		#label: 'New'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1607
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1608
		#value: #doNew
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1609
		#activeHelpKey: #fileNew
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1610
		#labelImage: #(#ResourceRetriever #Icon #newIcon)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1611
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1612
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1613
		#label: 'Load'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1614
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1615
		#value: #doLoad
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1616
		#activeHelpKey: #fileLoad
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1617
		#labelImage: #(#ResourceRetriever #Icon #loadIcon)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1618
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1619
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1620
		#label: 'Save'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1621
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1622
		#value: #doSave
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1623
		#activeHelpKey: #fileSave
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1624
		#labelImage: #(#ResourceRetriever #Icon #saveIcon)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1625
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1626
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1627
		#label: ''
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1628
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1629
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1630
		#label: 'Cut'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1631
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1632
		#value: #deleteSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1633
		#activeHelpKey: #editCut
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1634
		#enabled: #valueOfCanCut
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1635
		#labelImage: #(#ResourceRetriever #Icon #cutIcon)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1636
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1637
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1638
		#label: 'Copy'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1639
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1640
		#value: #copySelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1641
		#activeHelpKey: #editCopy
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1642
		#enabled: #valueOfCanCopy
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1643
		#labelImage: #(#ResourceRetriever #Icon #copyIcon)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1644
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1645
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1646
		#label: 'Paste With Layout'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1647
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1648
		#value: #pasteWithLayout
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1649
		#activeHelpKey: #editPaste
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1650
		#enabled: #valueOfCanPasteWithKeepingLayout
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1651
		#labelImage: #(#ResourceRetriever #Icon #pasteIcon)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1652
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1653
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1654
		#label: 'Delete'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1655
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1656
		#value: #deleteTotalSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1657
		#activeHelpKey: #editDelete
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1658
		#enabled: #valueOfCanCut
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1659
		#labelImage: #(#ResourceRetriever #Icon #deleteIcon)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1660
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1661
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1662
		#label: ''
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1663
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1664
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1665
		#label: 'Move Up'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1666
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1667
		#value: #doStepUp
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1668
		#activeHelpKey: #moveWidgetUp
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1669
		#enabled: #canChangeOrderInContainer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1670
		#labelImage: #(#ResourceRetriever #Icon #upIcon)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1671
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1672
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1673
		#label: 'Move Down'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1674
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1675
		#value: #doStepDown
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1676
		#activeHelpKey: #moveWidgetDown
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1677
		#enabled: #canChangeOrderInContainer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1678
		#labelImage: #(#ResourceRetriever #Icon #downIcon)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1679
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1680
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1681
		#label: 'Move Into'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1682
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1683
		#value: #doStepIn
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1684
		#activeHelpKey: #moveWidgetInto
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1685
		#enabled: #canMoveSelectionIntoContainer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1686
		#labelImage: #(#ResourceRetriever #Icon #downRightIcon)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1687
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1688
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1689
		#label: 'Move Out'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1690
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1691
		#value: #doStepOut
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1692
		#activeHelpKey: #moveWidgetOut
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1693
		#enabled: #canMoveSelectionOutOfContainer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1694
		#labelImage: #(#ResourceRetriever #Icon #leftDownIcon)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1695
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1696
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1697
		#label: ''
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1698
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1699
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1700
		#label: 'Canvas'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1701
		#activeHelpKey: #settingsCanvas
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1702
		#indication: #painterShown
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1703
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1704
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1705
		#label: 'Gallery'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1706
		#activeHelpKey: #settingsGallery
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1707
		#indication: #galleryShown
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1708
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1709
	  ) nil
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1710
	  nil
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1711
      )
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1712
!
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1714
menuToolbar2
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1715
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1716
     by the MenuEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1717
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
  1718
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1719
     the MenuEditor may not be able to read the specification."
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1720
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1721
    "
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1722
     MenuEditor new openOnClass:UIPainter andSelector:#menuToolbar2
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1723
     (Menu new fromLiteralArrayEncoding:(UIPainter menuToolbar2)) startUp
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1724
    "
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1725
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1726
    <resource: #menu>
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1727
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1728
    ^
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1729
     
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1730
       #(#Menu
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1731
          
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1732
	   #(
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1733
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1734
		#label: 'Align Left'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1735
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1736
		#value: #alignSelectionLeft
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1737
		#activeHelpKey: #alignSelectionLeft
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1738
		#labelImage: #(#ResourceRetriever nil #iconAlignL)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1739
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1740
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1741
		#label: 'Align Right'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1742
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1743
		#value: #alignSelectionRight
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1744
		#activeHelpKey: #alignSelectionRight
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1745
		#labelImage: #(#ResourceRetriever nil #iconAlignR)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1746
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1747
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1748
		#label: 'Align Left & Right'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1749
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1750
		#value: #alignSelectionLeftAndRight
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1751
		#activeHelpKey: #alignSelectionLeftAndRight
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1752
		#labelImage: #(#ResourceRetriever nil #iconAlignLR)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1753
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1754
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1755
		#label: ''
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1756
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1757
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1758
		#label: 'Align Top'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1759
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1760
		#value: #alignSelectionTop
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1761
		#activeHelpKey: #alignSelectionTop
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1762
		#labelImage: #(#ResourceRetriever nil #iconAlignT)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1763
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1764
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1765
		#label: 'Align Bottom'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1766
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1767
		#value: #alignSelectionBottom
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1768
		#activeHelpKey: #alignSelectionBottom
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1769
		#labelImage: #(#ResourceRetriever nil #iconAlignB)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1770
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1771
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1772
		#label: 'Align Top & Bottom'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1773
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1774
		#value: #alignSelectionTopAndBottom
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1775
		#activeHelpKey: #alignSelectionTopAndBottom
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1776
		#labelImage: #(#ResourceRetriever nil #iconAlignTB)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1777
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1778
	  ) nil
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1779
	  nil
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  1780
      )
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1781
! !
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1782
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  1783
!UIPainter methodsFor:'aspects'!
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  1784
724
7c7fb3f3a927 docu calls added
tz
parents: 721
diff changeset
  1785
aspectFor:aKey
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1786
    "returns the aspect for aKey"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1787
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1788
    ^aspects at:aKey ifAbsent:[ super aspectFor:aKey ]
724
7c7fb3f3a927 docu calls added
tz
parents: 721
diff changeset
  1789
!
7c7fb3f3a927 docu calls added
tz
parents: 721
diff changeset
  1790
565
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  1791
canChangeOrderInContainer
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1792
    "returns a boolean value holder which is true if the widget order can be changed 
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1793
     within their container"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1794
565
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  1795
    ^ builder booleanValueAspectFor:#canChangeOrderInContainer
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  1796
!
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  1797
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1798
canMoveOrAlignSelection
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1799
    "returns a boolean value holder which is true in case that any selection exists
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1800
     and all widgets in the selection can change its layout through to a move or
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1801
     align operation"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1802
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1803
    ^ builder booleanValueAspectFor:#canMoveOrAlignSelection
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1804
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1805
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  1806
canMoveSelection
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  1807
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1808
    ^self canChangeOrderInContainer value or: [ 
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1809
     self canMoveSelectionOutOfContainer value or: [
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1810
     self canMoveSelectionOutOfContainer value]]
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  1811
!
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  1812
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1813
canMoveSelectionIntoContainer
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1814
    "returns a boolean value holder which is true in case that one widget is selected
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1815
     and can change its container widget to the next element in the list which will have
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1816
     the same container"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1817
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1818
    ^ builder booleanValueAspectFor:#canMoveSelectionIntoContainer
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1819
!
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1820
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1821
canMoveSelectionOutOfContainer
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1822
    "returns a boolean value holder which is true in case that one widget is selected
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1823
     which is contained within another component"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1824
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1825
    ^ builder booleanValueAspectFor:#canMoveSelectionOutOfContainer
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1826
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1827
118
bc196200ea8b enabled and style
ca
parents: 114
diff changeset
  1828
enableChannel
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1829
    "true if modifications are allowed otherwise running test"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1830
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1831
    ^ self painter enableChannel
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1832
!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1833
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1834
galleryShown
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1835
    "returns a boolean value holder which is set to true if the gallery is shown"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1836
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1837
    |holder|
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1838
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1839
    (holder := builder bindingAt:#galleryShown) isNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1840
	builder aspectAt:#galleryShown put:(holder :=  true asValue).
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1841
	holder addDependent:self
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1842
    ].
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1843
    ^ holder
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1844
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1845
!
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1846
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1847
hasOneSelectionOtherThanCanvas
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1848
    "returns a value holder which is true in case that one widget is selected
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1849
     other than the root"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1850
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1851
    ^ builder booleanValueAspectFor:#hasOneSelectionOtherThanCanvas
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1852
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1853
884
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  1854
helpIcon
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  1855
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  1856
    ^Icon helpIcon
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  1857
!
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  1858
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1859
noteBookView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1860
    "returns the notebook view; initialize the tools embedded in the notebook"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1861
1068
dcb2cba5787f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  1862
    |noteBook modifiedChannel helpTool layoutTool specTool|
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1863
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1864
    (noteBook := builder bindingAt:#noteBookView) isNil ifTrue:[
1063
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1865
        noteBook   := View new.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1866
        layoutTool := UILayoutTool new.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1867
        helpTool   := UIHelpTool   new.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1868
        helpTool buildFromClass:specClass.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1869
        specTool   := UISpecificationTool new.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1870
        modifiedChannel    := self modifiedChannel.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1871
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1872
        layoutTool masterApplication:self.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1873
        specTool   masterApplication:self.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1874
        helpTool   masterApplication:self.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1875
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1876
        layoutCanvas := SubCanvas origin:0.0@0.0 corner:1.0@1.0 in:noteBook.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1877
        helpCanvas   := SubCanvas origin:0.0@0.0 corner:1.0@1.0 in:noteBook.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1878
        specCanvas   := SubCanvas origin:0.0@0.0 corner:1.0@1.0 in:noteBook.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1879
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1880
        layoutCanvas client:layoutTool.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1881
        helpCanvas   client:helpTool.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1882
        specTool builder:(specCanvas client:specTool).
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1883
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1884
        layoutTool masterApplication:self.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1885
        specTool   masterApplication:self.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1886
        helpTool   masterApplication:self.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1887
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1888
        layoutTool modifiedHolder:modifiedChannel.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1889
        helpTool   modifiedHolder:modifiedChannel.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1890
        specTool   modifiedHolder:modifiedChannel.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1891
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  1892
        builder aspectAt:#noteBookView put:noteBook.
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1893
    ].
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1894
    ^ noteBook
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1895
!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1896
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1897
painterShown
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1898
    "returns a boolean value holder which is set to true if the painter is shown"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1899
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1900
    |holder|
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1901
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1902
    (holder := builder bindingAt:#painterShown) isNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1903
	builder aspectAt:#painterShown put:(holder :=  true asValue).
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1904
	holder addDependent:self
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1905
    ].
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1906
    ^ holder
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1907
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1908
!
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1909
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1910
tabList
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1911
    "returns a value holder which keeps a list of the section labels in the notebook"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1912
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1913
    |holder|
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1914
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1915
    (holder := builder bindingAt:#tabList) isNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1916
	builder aspectAt:#tabList put:(holder :=  #(Basics Details Layout) asValue).
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1917
    ].
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1918
    ^ holder
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1919
!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1920
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1921
tabModel
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1922
    "returns a value holder which keeps the label of the current section in the notebook"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1923
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1924
    |holder|
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1925
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1926
    (holder := builder bindingAt:#tabModel) isNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1927
	holder := AspectAdaptor new subject:self; forAspect:#tabSelection.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1928
	builder aspectAt:#tabModel put:holder.
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1929
    ].
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1930
    ^ holder
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1931
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1932
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1933
treeView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1934
    "returns the tree view which holds all widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1935
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1936
    ^ treeView
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  1937
!
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  1938
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  1939
valueOfCanPasteWithKeepingLayout
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  1940
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  1941
    |holder|
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  1942
    (holder := builder bindingAt:#valueOfCanPasteWithKeepingLayout) isNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1943
	builder aspectAt:#valueOfCanPasteWithKeepingLayout put:(holder :=  false asValue).
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  1944
    ].
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  1945
    ^ holder
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  1946
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  1947
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  1948
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  1949
! !
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  1950
587
dd545d089d95 Fix typos. Ensure that specClass is a string.
Stefan Vogel <sv@exept.de>
parents: 572
diff changeset
  1951
!UIPainter methodsFor:'building editors'!
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  1952
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  1953
openDataSetColumnEditor
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1954
    "opens a Table Column Editor on current widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1955
827
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  1956
    |cls loadedFromClass loadedFromSpec editor tableColumnsOrSelector|
824
1d5adf147721 change mechanism for opening the dataset builder (step 2)
tz
parents: 819
diff changeset
  1957
1d5adf147721 change mechanism for opening the dataset builder (step 2)
tz
parents: 819
diff changeset
  1958
    (cls := self resolveName:specClass) isNil ifTrue:[
1103
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1959
        self askForSaving ifFalse: [^self].
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1960
        cls := self resolveName:specClass.
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1961
    ].
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1962
    self modifiedChannel value ifTrue:[
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1963
        (self confirm:'Accept changes made to spec ?') ifTrue:[
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1964
            self accept
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1965
        ]
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  1966
    ].
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1967
827
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  1968
    loadedFromSpec := loadedFromClass := false.
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  1969
    editor := DataSetBuilder new.
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  1970
    editor masterApplication:self.
824
1d5adf147721 change mechanism for opening the dataset builder (step 2)
tz
parents: 819
diff changeset
  1971
    editor specClass: cls.
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  1972
    editor rowClassName:(self specTool specification rowClassName).
827
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  1973
    ((tableColumnsOrSelector := self specTool specification columnHolder) notNil and: 
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  1974
    [cls class implements: tableColumnsOrSelector]) ifTrue: [
1103
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1975
        editor openModalOnClass: cls andSelector: tableColumnsOrSelector.
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1976
        loadedFromClass := true.
827
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  1977
    ] ifFalse: [       
1103
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1978
        (tableColumnsOrSelector := self specTool specification columns) isNil ifTrue: [
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1979
            editor openModal
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1980
        ] ifFalse: [         
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1981
            editor openModalOnResourceSpec:tableColumnsOrSelector.
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1982
            loadedFromSpec := true
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1983
        ].
827
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  1984
    ].
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  1985
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  1986
    loadedFromClass ifTrue: [
1103
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1987
        self specTool specification columns:nil.
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1988
        self specTool specification rowClassName:nil.
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1989
        self modifiedChannel value:true.
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1990
        self accept.
827
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  1991
    ].
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  1992
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  1993
    (loadedFromSpec not and: [editor hasSaved and:[editor specSelector ~= tableColumnsOrSelector]]) ifTrue:[
1103
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1994
        self specTool specification columnHolder:editor specSelector.
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1995
        self modifiedChannel value:true.
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1996
        self accept.
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1997
        ^self
827
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  1998
    ].
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  1999
    loadedFromClass ifFalse: [
1103
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2000
        self specTool specification columns:(editor columns).
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2001
        self specTool specification rowClassName:(editor rowClassName).
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2002
        self modifiedChannel value: editor modified.
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2003
    ].
827
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  2004
824
1d5adf147721 change mechanism for opening the dataset builder (step 2)
tz
parents: 819
diff changeset
  2005
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2006
!
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2007
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2008
openEditMenu
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2009
    "opens a Menu Editor on current widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2010
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2011
    |cls selectorOrMenu editor selectedSpec spec|
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2012
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2013
    (cls := self resolveName:specClass) isNil ifTrue:[
1027
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2014
        self askForSaving ifFalse: [^self].
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2015
        cls := self resolveName:specClass.
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2016
    ].
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2017
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2018
    cls notNil ifTrue:[
1027
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2019
        spec := self specTool specification.
1103
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2020
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2021
        self modifiedChannel value ifTrue:[
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2022
            (self confirm:'Accept changes made to spec ?') ifTrue:[
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2023
                self accept
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2024
            ]
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2025
        ].
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2026
1027
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2027
        (selectorOrMenu := spec menuSelector) notNil ifTrue:[
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2028
            selectorOrMenu := selectorOrMenu asSymbol
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2029
        ] ifFalse:[
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2030
            "/ cg: q&d hack ...
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2031
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2032
            (selectedSpec := treeView propertySelected) notNil ifTrue:[
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2033
                Object errorSignal handle:[:ex |
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2034
                    selectorOrMenu := nil.
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2035
                ] do:[
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2036
                    selectorOrMenu := selectedSpec view asMenu.
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2037
                ]
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2038
            ].
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2039
        ].
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2040
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2041
        editor := MenuEditor new.
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2042
        editor masterApplication:self.
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2043
        editor specClass: cls.
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2044
        editor useHelpTool: self helpTool. 
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2045
        selectorOrMenu class ~~ Menu
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2046
            ifTrue:  [editor openModalOnClass:cls andSelector:selectorOrMenu]
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2047
            ifFalse: [editor openModalOnMenu:selectorOrMenu].
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2048
        self helpTool updateList.
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2049
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2050
"/        editor specSelector ~= selectorOrMenu ifTrue:[
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2051
            editor hasSaved ifTrue:[
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2052
                spec menuSelector:editor specSelector.
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2053
                self modifiedChannel value:true.
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2054
                self accept
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2055
"/            ]
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2056
        ].
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2057
    ]
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2058
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2059
    "Modified: / 16.7.1998 / 18:16:42 / cg"
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2060
!
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2061
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2062
openHierarchicalListEditor
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2063
    "opens a Hierarchical List Editor on current widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2064
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2065
    |selector editor spec|
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2066
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2067
    (self resolveName:specClass) isNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2068
	self askForSaving ifFalse: [^self]
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2069
    ].
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2070
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2071
    spec := self specTool specification.
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2072
    (selector := spec hierarchicalList) notNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2073
	selector := selector asSymbol
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2074
    ].
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
  2075
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2076
    editor := HierarchicalListEditor new.
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2077
    editor masterApplication:self.
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2078
    editor openModalOnClass:specClass andSelector:selector.
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2079
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2080
    editor specSelector ~= selector ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2081
	editor hasSaved ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2082
	    spec hierarchicalList:editor specSelector.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2083
	    self modifiedChannel value:true.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2084
	    self accept
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2085
	]
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2086
    ]
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2087
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2088
    "Modified: / 16.7.1998 / 18:15:46 / cg"
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2089
!
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2090
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2091
openSubSpecGUIPainter
609
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2092
    "opens a GUI Painter on the current subspecification"
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2093
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2094
    |spec cls meta sel|
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2095
913
12e73e6c57b4 do open building editors after defining first new app class
tz
parents: 892
diff changeset
  2096
    (self resolveName:specClass) isNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2097
	self askForSaving ifFalse: [^self]
913
12e73e6c57b4 do open building editors after defining first new app class
tz
parents: 892
diff changeset
  2098
    ]. 
12e73e6c57b4 do open building editors after defining first new app class
tz
parents: 892
diff changeset
  2099
609
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2100
    spec := self specTool specification.
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2101
    cls := spec majorKey.
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2102
    cls isNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2103
	cls := specClass.
609
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2104
    ].
913
12e73e6c57b4 do open building editors after defining first new app class
tz
parents: 892
diff changeset
  2105
    (cls := self resolveName:cls inClass:(Smalltalk at: specClass asSymbol)) isNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2106
	spec majorKey isNil ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2107
	    ^ self warn:'Cannot find class (no majorKey specified)'.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2108
	].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2109
	^ self warn:'Cannot find class ', spec majorKey asBoldText, '!!'.
609
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2110
    ].
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2111
    sel := spec minorKey.
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2112
    meta := cls class whichClassIncludesSelector:sel.
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2113
    meta isNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2114
	^ self warn:'Cannot find selector #', (sel ? '') asBoldText, ' in class ', cls name asBoldText, '!!'
609
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2115
    ].
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2116
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2117
    self class openOnClass:meta soleInstance andSelector:spec minorKey.
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2118
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2119
!
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2120
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2121
openTabListEditor
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2122
    "opens a Tab List Editor on current widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2123
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2124
    |selector editor spec|
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2125
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2126
    (self resolveName:specClass) isNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2127
	self askForSaving ifFalse: [^self]
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2128
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2129
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2130
    spec := self specTool specification.
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2131
    (selector := spec listSelector) isArray 
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2132
	ifTrue: [^self warn: 'Cannot open the Tab List Editor on an array!!'].
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2133
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2134
    editor := TabListEditor new.
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2135
    editor masterApplication:self.
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2136
    editor openModalOnClass:specClass andSelector:selector.
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2137
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2138
    editor specSelector ~= selector ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2139
	editor hasSaved ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2140
	    spec listSelector:editor specSelector.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2141
	    self modifiedChannel value:true.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2142
	    self accept.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2143
	]
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2144
    ]
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2145
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2146
    "Modified: / 16.7.1998 / 18:15:14 / cg"
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2147
! !
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2148
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2149
!UIPainter methodsFor:'change & update'!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2150
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2151
layoutChanged
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2152
    "called by the painter/canvas whenever the layout of the current selected
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2153
     widget has changed"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2154
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2155
    self isModified ifFalse:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2156
	self layoutTool update.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2157
	self modifiedChannel value:false
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2158
    ]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2159
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2160
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2161
propertyChanged
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2162
    "called by the painter/canvas whenever the property of the current selected
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2163
     widget has changed"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2164
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2165
    |property spec|
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2166
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2167
    (property := treeView propertySelected) notNil ifTrue:[
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2168
        spec := property spec copy.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2169
        self specTool specification:spec.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2170
        self setViewInLayoutTool:(property view) spec:spec.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2171
        self modifiedChannel value:false
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2172
    ] ifFalse:[
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2173
        self layoutTool layoutView notNil ifTrue:[
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2174
            self modifiedChannel value:false.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2175
            self treeSelection
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2176
        ]
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2177
    ]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2178
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2179
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2180
update:something with:aParameter from:someObject
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2181
    "catches change notifications"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2182
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2183
    |window|
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2184
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2185
    someObject == treeView model ifTrue:[
1103
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2186
        (something == #selection
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2187
        or:[something == #selectionIndex]) ifTrue:[self treeSelection].
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2188
      ^ self
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2189
    ].
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2190
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2191
    someObject == self galleryShown ifTrue:[
1103
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2192
        "/ galleryShown toggle changed
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2193
        window := selectionPanel window.
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2194
        (someObject value) ifTrue:[
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2195
            self raiseUIView:window
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2196
        ] ifFalse:[
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2197
            self hideUIView:window
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2198
        ].
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2199
      ^ self
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2200
    ].
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2201
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2202
    someObject == self painterShown ifTrue:[
1103
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2203
        "/ canvasShown toggle changed
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2204
        window := self painter topView.
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2205
        (someObject value) ifTrue:[
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2206
            self raiseUIView:window
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2207
        ] ifFalse:[
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2208
            self hideUIView:window
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2209
        ].
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2210
      ^ self
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2211
    ].
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2212
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2213
    "Modified: / 16.7.1998 / 19:09:57 / cg"
884
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2214
!
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2215
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2216
updateChannels
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2217
    "updates the channels"
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2218
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2219
    |canCutOrCopy canPaste clipboard sel treeSelection|
884
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2220
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2221
    self canMoveOrAlignSelection        value:(treeView canMoveOrAlignSelection).
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2222
    self canChangeOrderInContainer      value:(treeView canChangeOrderInContainer).
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2223
    self canMoveSelectionIntoContainer  value:(treeView canMoveSelectionIntoContainer).
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2224
    self canMoveSelectionOutOfContainer value:(treeView canMoveSelectionOutOfContainer).
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2225
    self hasOneSelectionOtherThanCanvas value:(treeView hasOneSelectionOtherThanCanvas).
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2226
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2227
    treeView notNil
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2228
    ifTrue:
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2229
    [
1063
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2230
        treeSelection := treeView selection.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2231
        "/ the top-node cannot be cut, copied or pasted.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2232
        canCutOrCopy := treeSelection size >= 1 and:[treeSelection first ~~ 1].
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2233
        clipboard := self getSelection.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2234
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2235
        clipboard isCollection ifTrue:[clipboard notEmpty ifTrue:[sel := clipboard first]]
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2236
                              ifFalse:[sel := clipboard].
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2237
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2238
        canPaste := (sel isKindOf:UISpecification) and: 
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2239
                    [treeSelection size  = 1 
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2240
                    and:[treeSelection first == 1 
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2241
                    or: [self canPasteInto: treeView selectedNode contents view]]]
884
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2242
    ].
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2243
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2244
    self valueOfCanCut value: canCutOrCopy.
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2245
    self valueOfCanCopy value: canCutOrCopy.
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2246
    self valueOfCanPaste value: canPaste.            
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2247
    self valueOfCanPasteWithKeepingLayout value: (canPaste "&  self canKeepLayoutInSelection").
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2248
1063
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2249
"/    self modifiedChannel value: false.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2250
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2251
    "Modified: / 16.7.1998 / 19:13:30 / cg"
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2252
! !
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2253
952
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2254
!UIPainter methodsFor:'defaults'!
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2255
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2256
aboutImage
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2257
    "the image to be displayed in my about-box;
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2258
     If nil is returned, thhe ST/X default image is used."
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2259
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2260
    ^ Image fromFile:'bitmaps/xpmBitmaps/misc_tools/setup_windows.xpm'
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2261
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2262
    "Created: / 13.8.1998 / 20:33:05 / cg"
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2263
! !
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2264
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2265
!UIPainter methodsFor:'event handling'!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2266
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2267
doesNotUnderstand:aMessage
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2268
    "if does not understand incoming messages, detour them to painter"
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2269
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2270
    |painter|
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2271
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2272
    painter := self painter.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2273
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2274
    (painter respondsTo:(aMessage selector)) ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2275
	^ aMessage sendTo:painter
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2276
    ].
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2277
    super doesNotUnderstand:aMessage
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2278
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2279
! !
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2280
547
930b3df19305 help menu item aligned to the right
tz
parents: 542
diff changeset
  2281
!UIPainter methodsFor:'help'!
930b3df19305 help menu item aligned to the right
tz
parents: 542
diff changeset
  2282
572
ac2a1dd83d28 open tutorial added
tz
parents: 565
diff changeset
  2283
defaultInfoLabel
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2284
    "returns the default info label"
572
ac2a1dd83d28 open tutorial added
tz
parents: 565
diff changeset
  2285
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2286
    specClass isNil ifTrue: [^'No class and selector defined.'].
877
f31f41b29710 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 852
diff changeset
  2287
    specSelector isNil ifTrue: [^'No selector defined.'].
572
ac2a1dd83d28 open tutorial added
tz
parents: 565
diff changeset
  2288
    ^specClass printString, ' >> ', specSelector
877
f31f41b29710 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 852
diff changeset
  2289
f31f41b29710 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 852
diff changeset
  2290
    "Modified: / 20.6.1998 / 16:49:16 / cg"
297
14db1276218c change the spec;
ca
parents: 295
diff changeset
  2291
! !
14db1276218c change the spec;
ca
parents: 295
diff changeset
  2292
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2293
!UIPainter methodsFor:'private'!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2294
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2295
askForModification
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2296
    "asks for window spec modification"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2297
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2298
    self askForSectionModification.    
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2299
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2300
    (modified or: [self painter isModified or: [self helpTool modified]])
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2301
    ifTrue:
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2302
    [
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2303
	((YesNoBox title:(resources string:'Window Spec was modified !!'))        
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2304
	    noText:(resources string:'Cancel');
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2305
	    yesText:(resources string:'Forget it and proceed');
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2306
	    showAtPointer;
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2307
	    accepted) ifFalse: [^false].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2308
	modified := false.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2309
	self painter resetModification
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2310
    ].
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2311
    ^true
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
  2312
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
  2313
    "Modified: / 20.5.1998 / 02:03:16 / cg"
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2314
!
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2315
808
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2316
askForSaving
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2317
    "asks for defining an application class"
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2318
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2319
    self askForSectionModification.    
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2320
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2321
    ((YesNoBox title:'No application class defined yet!!')        
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2322
	noText:'Cancel';
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2323
	yesText:'Define';
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2324
	showAtPointer;
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2325
	accepted) ifFalse: [^false].
808
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2326
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2327
    self doSave.
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2328
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2329
    ^true
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2330
!
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2331
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2332
askForSectionModification
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2333
    "asks for section modification in the notebook"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2334
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2335
    self isModified ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2336
	(self confirm:'Accept modifications in section ' , tabSelection printString asBoldText, '?') ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2337
	    self accept
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2338
	] ifFalse: [
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2339
	    self cancel
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2340
	]
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2341
    ]
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2342
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2343
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2344
checkClassAndSelector
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2345
    "checks for class & superclass"
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2346
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2347
    |superclass cls ns|
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2348
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2349
    specClass isNil ifTrue:[^ false].
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2350
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2351
    cls := self resolveName:specClass.
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2352
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2353
    cls isNil ifTrue:[
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2354
        superclass := self resolveName:specSuperclass.
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2355
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2356
        superclass isNil ifTrue:[
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2357
            self warn:'No class named ' , specSuperclass , ' exists!!'.
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2358
            ^ false.
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2359
        ].
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2360
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2361
        (self confirm:'Create class ' , specClass asBoldText, '?') ifTrue:[
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2362
            cls := superclass 
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2363
                        subclass:(specClass asSymbol)
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2364
                        instanceVariableNames:''
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2365
                        classVariableNames:''
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2366
                        poolDictionaries:''
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2367
                        category:'Applications'.
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2368
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2369
            cls name ~= specClass ifTrue:[
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2370
                self information:'Created new class is ' , cls name.
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2371
                specClass := cls name
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2372
            ].
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2373
            ^ true.
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2374
        ].
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2375
        ^ false.
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2376
    ].
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2377
    cls isBehavior ifFalse:[
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2378
        self warn:'A global named ' , specClass , ' exists, but it is no class.'.
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2379
        ^ false.
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2380
    ].
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2381
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2382
    specSuperclass isBehavior ifFalse:[
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2383
        specSuperclass isEmpty ifFalse:[
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2384
            superclass := self resolveName:specSuperclass
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2385
        ] ifTrue:[
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2386
            specSuperclass := nil.
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2387
        ]
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2388
    ] ifTrue:[
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2389
        superclass := specSuperclass
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2390
    ].
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2391
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2392
    specSuperclass notNil ifTrue:[
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2393
        superclass isNil ifTrue:[
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2394
            self warn:'No class named ' , specSuperclass , ' exists!!'.
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2395
            ^ false.
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2396
        ].
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2397
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2398
        (cls isSubclassOf:superclass) ifFalse:[
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2399
            self information:('A global named ' , specClass , ' exists,\' ,
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2400
                              'but is not a subclass of ' , superclass name , '.\\' ,
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2401
                              'Check and try again if that is not what you want.') withCRs.
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2402
        ]
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2403
    ].
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2404
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2405
    superclass isNil ifTrue:[
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2406
        cls notNil ifTrue:[
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2407
            specSuperclass := cls superclass name
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  2408
        ]
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2409
    ].
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2410
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2411
    ^ true
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2412
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2413
    "Modified: 12.8.1997 / 23:39:10 / cg"
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2414
!
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2415
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2416
hideUIView:aView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2417
    "hides the view which is an application or top view"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2418
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2419
    aView beIndependent.
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2420
    aView unmap.
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2421
!
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2422
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2423
raiseTabView
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2424
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2425
    self isLayoutToolSelected ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2426
	layoutCanvas raise
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2427
    ] ifFalse:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2428
	self isHelpToolSelected ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2429
	    helpCanvas raise
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2430
	] ifFalse:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2431
	    self specTool selection:tabSelection.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2432
	    specCanvas raise
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2433
	]
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2434
    ]
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2435
!
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2436
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2437
raiseUIView:aView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2438
    "raise the view which is an application or top view"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2439
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2440
    aView map.
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2441
    aView bePartner.
177
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2442
!
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2443
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2444
resourceMessage: aString
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2445
    "reads the specClass and the specSelector by evaluating aString"
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2446
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2447
    (aString notNil and: [self askForModification]) 
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2448
    ifTrue:
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2449
    [            
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2450
	|msg cls sel|
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2451
	msg := aString asCollectionOfWords.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2452
	(msg size == 2 and:
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2453
	[(cls := self resolveName:(msg at:1)) notNil])
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2454
	ifTrue:
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2455
	[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2456
	    self specClass:cls.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2457
	    specSuperclass := cls superclass name.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2458
	    specSelector := (msg at: 2) asSymbol.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2459
	    ^true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2460
	]
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2461
    ].
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2462
    ^false
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2463
!
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2464
177
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2465
setClass:cls selector:selector
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2466
    "sets the specClass and the specSelector under which the window spec should be saved"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2467
177
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2468
    |clsName superClassName|
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2469
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2470
    clsName := cls name.
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2471
    superClassName := cls superclass name.
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2472
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2473
    (self aspectFor:#classNameChannel) value:clsName.
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2474
    (self aspectFor:#methodNameChannel) value:(selector ? '').
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2475
    (self aspectFor:#superclassNameChannel) value:superClassName.
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2476
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2477
    self painter 
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2478
	    className:clsName 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2479
	    superclassName:superClassName
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2480
	    selector:(selector ? '').
177
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2481
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2482
    self specClass:clsName.
177
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2483
    specSelector := (selector ? '').
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2484
    specSuperclass := superClassName.
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2485
587
dd545d089d95 Fix typos. Ensure that specClass is a string.
Stefan Vogel <sv@exept.de>
parents: 572
diff changeset
  2486
    specClass notNil & selector notNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2487
	self addToHistory: (specClass, ' ', specSelector) -> #loadFromMessage:.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2488
	self updateInfoLabel
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  2489
    ].
587
dd545d089d95 Fix typos. Ensure that specClass is a string.
Stefan Vogel <sv@exept.de>
parents: 572
diff changeset
  2490
dd545d089d95 Fix typos. Ensure that specClass is a string.
Stefan Vogel <sv@exept.de>
parents: 572
diff changeset
  2491
    "Modified: / 5.2.1998 / 09:44:58 / stefan"
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2492
!
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2493
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2494
setViewInLayoutTool:aView spec:aSpec
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2495
    "sets view for layout tool"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2496
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2497
    |type|
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2498
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2499
    self painter topView == aView ifTrue:[
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2500
        type := #Extent
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2501
    ].
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2502
    self layoutTool layoutView:aView type:type spec:aSpec
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2503
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2504
!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2505
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2506
specClass:aClass
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2507
    "sets the specClass and updates the Help Tool"
587
dd545d089d95 Fix typos. Ensure that specClass is a string.
Stefan Vogel <sv@exept.de>
parents: 572
diff changeset
  2508
dd545d089d95 Fix typos. Ensure that specClass is a string.
Stefan Vogel <sv@exept.de>
parents: 572
diff changeset
  2509
    specClass := aClass isBehavior ifTrue:[aClass name]
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2510
				   ifFalse:[aClass].
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  2511
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  2512
    self helpTool buildFromClass:specClass.    
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  2513
    self helpTool updateList.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  2514
    self modifiedChannel value: false. 
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  2515
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2516
! !
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2517
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2518
!UIPainter methodsFor:'private tools'!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2519
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2520
helpTool
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2521
    "returns the help tool"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2522
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2523
    helpCanvas isNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2524
	self noteBookView
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2525
    ].
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2526
    ^ helpCanvas application
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2527
!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2528
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2529
layoutTool
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2530
    "returns the layout tool"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2531
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2532
    layoutCanvas isNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2533
	self noteBookView
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2534
    ].
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2535
    ^ layoutCanvas application
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2536
!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2537
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2538
painter
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2539
    "returns the canvas view"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2540
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2541
    ^ treeView canvas
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2542
!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2543
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2544
specTool
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2545
    "returns the spec tool"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2546
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2547
    specCanvas isNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2548
	self noteBookView
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2549
    ].
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2550
    ^ specCanvas application
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2551
! !
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2552
166
cd5699643975 add tools: layout and specification tool
ca
parents: 161
diff changeset
  2553
!UIPainter methodsFor:'queries'!
cd5699643975 add tools: layout and specification tool
ca
parents: 161
diff changeset
  2554
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2555
hasSpecClass
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2556
    "answers whether an application class is defined"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2557
328
0e8a4296dec1 add DataSetBuilder
ca
parents: 321
diff changeset
  2558
    ^ (self resolveName:specClass) notNil
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2559
!
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2560
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2561
hasSpecClassAndSelector
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2562
    "answers whether an application class and a selector under which
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2563
     the window spec is stored is defined"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2564
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2565
    specSelector size > 1 ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2566
	^ self hasSpecClass
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2567
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2568
    ^ false
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2569
!
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2570
166
cd5699643975 add tools: layout and specification tool
ca
parents: 161
diff changeset
  2571
isHelpToolSelected
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2572
    "answers whether the current selected section in the noteBook is the Help Tool"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2573
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2574
    ^ tabSelection = UIHelpTool label
166
cd5699643975 add tools: layout and specification tool
ca
parents: 161
diff changeset
  2575
!
cd5699643975 add tools: layout and specification tool
ca
parents: 161
diff changeset
  2576
cd5699643975 add tools: layout and specification tool
ca
parents: 161
diff changeset
  2577
isLayoutToolSelected
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2578
    "answers whether the current selected section in the noteBook is the Layout Tool"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2579
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2580
    ^ tabSelection = UILayoutTool label
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2581
!
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2582
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2583
isModified
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2584
    "answers whether the current window spec or a layout is modified"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2585
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2586
    ^ self modifiedChannel value
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2587
!
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2588
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2589
isPainterEnabled
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2590
    "answers whether I am running in test mode"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2591
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2592
    ^ self painter enabled
166
cd5699643975 add tools: layout and specification tool
ca
parents: 161
diff changeset
  2593
! !
cd5699643975 add tools: layout and specification tool
ca
parents: 161
diff changeset
  2594
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2595
!UIPainter methodsFor:'selection'!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2596
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2597
tabSelection
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2598
    "returns the label of the current section in the notebook"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2599
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2600
    ^ tabSelection
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2601
!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2602
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2603
tabSelection:something
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2604
    "called whenever the section of the notebook has changed"
351
7cb9f9c9a872 more checks
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
  2605
7cb9f9c9a872 more checks
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
  2606
    |whatToDo|
7cb9f9c9a872 more checks
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
  2607
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2608
    (something isNil or:[tabSelection = something]) ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2609
	^ self
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2610
    ].
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2611
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2612
    self isModified ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2613
	whatToDo := DialogBox 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2614
			confirmWithCancel:'Accept modifications in section ' , tabSelection printString asBoldText, '?'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2615
			labels:#('Cancel' 'Ignore' 'Accept')
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2616
			default:3.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2617
	whatToDo isNil ifTrue:[^self].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2618
	whatToDo == true ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2619
	    self accept
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2620
	] ifFalse:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2621
	    self cancel
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2622
	]
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2623
    ].
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2624
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2625
    tabSelection := something.
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2626
    self raiseTabView.
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2627
    self cancel.
351
7cb9f9c9a872 more checks
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
  2628
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2629
!
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2630
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2631
treeSelection
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2632
    "called whenever the selection of the treeview has changed"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2633
890
dac91d5af289 unused local vars removed
tz
parents: 889
diff changeset
  2634
    |view list spec slices size property tabComponent|
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2635
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2636
    self isModified ifTrue:[
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2637
        (self confirm:'Accept modifications in section ' , tabSelection printString asBoldText, '?') ifTrue:[
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2638
            self accept
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2639
        ]
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2640
    ].
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2641
281
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  2642
    treeView isCanvasSelected ifTrue:[
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2643
        spec := treeView canvasSpec.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2644
        view := self painter topView.
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2645
    ] ifFalse:[
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2646
        (property := treeView propertySelected) notNil ifTrue:[
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2647
            treeView canResizeSelectedWidget ifTrue:[
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2648
                view := property view.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2649
            ].
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2650
            spec := property spec copy.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2651
        ]
281
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  2652
    ].
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2653
    tabComponent := builder componentAt:#noteBook.
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2654
    self setViewInLayoutTool:view spec:spec.
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2655
    self specTool specification:spec.
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2656
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2657
    spec notNil ifTrue:[
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2658
        self helpTool helpKey:(spec activeHelpKey).
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2659
        slices := spec class slices.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2660
        size   := slices size.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2661
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2662
        view notNil ifTrue:[
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2663
            self treeView isCanvasSelected 
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2664
            ifFalse:
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2665
            [
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2666
                list := Array new:(size + 2).
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2667
                list at:(size + 2) put:(UILayoutTool label).
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2668
            ]
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2669
            ifTrue:
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2670
            [
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2671
                list := Array new:(size + 1).
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2672
                list at:(size + 1) put:(UILayoutTool label).
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2673
            ].
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2674
        ] ifFalse:[
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2675
            list := Array new:(size + 1).
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2676
        ].
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2677
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2678
        1 to:size do:[:i| list at:i put:((slices at:i) first asString)].
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2679
        self treeView isCanvasSelected ifFalse: [list at:(size + 1) put:(UIHelpTool label)].
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2680
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2681
        self tabList value:list.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2682
        self showHelp:spec class name for:self.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2683
        tabComponent enabled:true.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2684
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2685
        (tabSelection := tabComponent selection) isNil ifTrue:[
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2686
            tabComponent setSelection:(tabSelection := list first)
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2687
        ].
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2688
        self raiseTabView
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2689
    ] ifFalse:[
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2690
        self helpTool helpKey:nil.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2691
        tabComponent enabled:false.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2692
        self defaultInfoLabel.
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2693
    ].
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2694
    self modifiedChannel value:false.
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2695
884
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2696
    self updateChannels
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2697
! !
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2698
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2699
!UIPainter methodsFor:'settings'!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2700
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2701
generateAspectsAsInstanceVariables
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2702
    "if on, aspects are held as instance variables;
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2703
     if off (the default), they are kept in the bindings dictionary.
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2704
    "
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2705
    ^ UIPainterView generateAspectsAsInstanceVariables
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2706
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2707
    "Created: / 29.7.1998 / 11:17:59 / cg"
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2708
!
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2709
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2710
generateAspectsAsInstanceVariables:aBoolean
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2711
    "if on, aspects are held as instance variables;
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2712
     if off (the default), they are kept in the bindings dictionary.
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2713
    "
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2714
    ^ UIPainterView generateAspectsAsInstanceVariables:aBoolean
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2715
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2716
    "Created: / 29.7.1998 / 11:18:20 / cg"
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2717
!
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2718
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2719
redefineAspectMethods
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2720
    "redefine methods yes or no. If a method is defined in super class
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2721
     should the message be reinstalled ?
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2722
    "
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2723
    ^ UIPainterView redefineAspectMethods
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2724
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2725
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2726
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2727
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2728
redefineAspectMethods:aBoolean
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2729
    "redefine methods yes or no. If a method is defined in super class
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2730
     should the message be reinstalled ?
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2731
    "
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2732
    UIPainterView redefineAspectMethods:aBoolean
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2733
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2734
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2735
! !
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2736
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2737
!UIPainter methodsFor:'startup / release'!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2738
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2739
closeRequest
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2740
    "close request"
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2741
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2742
    self askForModification ifFalse:[^self].
133
e12f82d3afb7 popup box caused by a closeRequest with still open
ca
parents: 130
diff changeset
  2743
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2744
    treeView model removeDependent:self.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2745
    self painter release.
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2746
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2747
    selectionPanel notNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2748
	selectionPanel masterApplication:nil.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2749
	selectionPanel closeRequest
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2750
    ].
149
e652608690b1 help ...
ca
parents: 144
diff changeset
  2751
    selectionPanel := nil.
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2752
    treeView       := nil.
149
e652608690b1 help ...
ca
parents: 144
diff changeset
  2753
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2754
    super closeRequest.
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2755
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2756
!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2757
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2758
closeRequestFor:aTopView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2759
    "handles a close request for a specific view"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2760
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2761
    |topView|
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2762
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2763
    (topView := self window) == aTopView ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2764
	super closeRequestFor:aTopView
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2765
    ] ifFalse:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2766
	aTopView = selectionPanel window ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2767
	    self galleryShown value:false
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2768
	] ifFalse:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2769
	    aTopView == (self painter topView) ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2770
		self painterShown value:false
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2771
	    ] ifFalse:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2772
		aTopView closeRequest
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2773
	    ]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2774
	].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2775
	topView raise.
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2776
    ].
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2777
!
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2778
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2779
loadFromMessage: aMessage
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2780
    "loads a window spec by evaluating aMessage"
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2781
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2782
    ((aMessage size > 0) and: [self askForModification])
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2783
    ifTrue:
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2784
    [
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2785
	|readStream aClass aSelector|
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2786
	readStream := aMessage readStream.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2787
	(aClass := Smalltalk at: (readStream upTo: $ ) asSymbol) notNil
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2788
	ifTrue:
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2789
	[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2790
	    aSelector :=  readStream upToEnd asSymbol.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2791
	    self setClass: aClass selector: aSelector.    
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2792
	    (aClass respondsTo:aSelector) 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2793
	    ifTrue:
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2794
	    [   
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2795
		self painter setupFromSpec:(aClass perform:aSelector)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2796
	    ]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2797
	]
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2798
    ]
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2799
!
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2800
345
c4d8f4c74c26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
  2801
openInterface:aSymbol
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2802
    "opens the interface on the selector aSymbol"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2803
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2804
    |cls painterView painter topView|
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2805
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2806
    modified := false.
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2807
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2808
    aspects := IdentityDictionary new.
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2809
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2810
    aspects at:#classNameChannel put:(
1046
b3994c5e5e2f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  2811
        (specClass notNil ifTrue:[specClass]
b3994c5e5e2f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  2812
                         ifFalse:['NewApplication']) asValue
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2813
    ).
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2814
    specSuperclass isNil ifTrue:[
1046
b3994c5e5e2f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  2815
        specClass notNil ifTrue:[
b3994c5e5e2f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  2816
            (cls := self resolveName:specClass) notNil ifTrue:[
b3994c5e5e2f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  2817
                specSuperclass := cls superclass name.
b3994c5e5e2f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  2818
            ]
b3994c5e5e2f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  2819
        ]
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2820
    ].
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2821
    aspects at:#superclassNameChannel put:(
1046
b3994c5e5e2f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  2822
        (specSuperclass notNil ifTrue:[specSuperclass]
b3994c5e5e2f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  2823
                         ifFalse:['ApplicationModel']) asValue
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2824
    ).
157
ce974dce3dd4 enhanced class & method dialog
Claus Gittinger <cg@exept.de>
parents: 156
diff changeset
  2825
    aspects at:#superclassNameDefaults put:#('ApplicationModel' 'SimpleDialog') asValue.
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2826
    aspects at:#methodNameChannel put:(
1046
b3994c5e5e2f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  2827
        (specSelector notNil ifTrue:[specSelector asValue]
b3994c5e5e2f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  2828
                            ifFalse:[#windowSpec]) asValue
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2829
    ).
136
42a2a4494281 remove postOpen
ca
parents: 133
diff changeset
  2830
1046
b3994c5e5e2f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  2831
    "/ the canvas ...
b3994c5e5e2f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  2832
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2833
    treeView    := TreeView new.
136
42a2a4494281 remove postOpen
ca
parents: 133
diff changeset
  2834
    painterView := StandardSystemView new.
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2835
    painterView name: self class defaultNameOfCanvas.
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2836
    painterView label: self class defaultNameOfCanvas.
136
42a2a4494281 remove postOpen
ca
parents: 133
diff changeset
  2837
    painterView extent:300@300.
42a2a4494281 remove postOpen
ca
parents: 133
diff changeset
  2838
42a2a4494281 remove postOpen
ca
parents: 133
diff changeset
  2839
    painter := UIPainterView in:painterView.
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2840
    painter layout:(0.0 @ 0.0 corner:1.0 @ 1.0) asLayout.
136
42a2a4494281 remove postOpen
ca
parents: 133
diff changeset
  2841
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2842
    treeView := treeView canvas:painter.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2843
    painter treeView:treeView.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2844
    treeView model addDependent:self.
136
42a2a4494281 remove postOpen
ca
parents: 133
diff changeset
  2845
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2846
    super openInterface:aSymbol.
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2847
1046
b3994c5e5e2f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  2848
136
42a2a4494281 remove postOpen
ca
parents: 133
diff changeset
  2849
    topView := self window.
345
c4d8f4c74c26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
  2850
    topView label:'GUI Painter'.
136
42a2a4494281 remove postOpen
ca
parents: 133
diff changeset
  2851
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2852
    painterView openInGroup:(topView windowGroup).
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2853
    painterView application:self.
794
212bc7e46765 openOnClass....
ca
parents: 788
diff changeset
  2854
1046
b3994c5e5e2f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  2855
    "/ the selectionPanel ...
b3994c5e5e2f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  2856
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2857
    selectionPanel := UISelectionPanel new.
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2858
    selectionPanel allButOpenInterface:#windowSpec.
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2859
    selectionPanel window openInGroup:(topView windowGroup).
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2860
    selectionPanel openWindow.
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2861
    selectionPanel masterApplication:self.
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2862
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2863
    topView iconLabel:'GUI Painter'.
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2864
    topView icon:(Image fromFile:'bitmaps/UIPainter.xbm' resolution:100).
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2865
1046
b3994c5e5e2f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  2866
    painterView iconLabel:'GUI Canvas'.
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2867
    painterView icon:(Image fromFile:'bitmaps/UIPainter.xbm' resolution:100).
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2868
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2869
    topView bePartner.
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2870
    painterView bePartner.
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2871
    selectionPanel window bePartner.
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2872
1046
b3994c5e5e2f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  2873
    selectionPanel window iconLabel:'GUI Gallery'.
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2874
    selectionPanel window icon:(Image fromFile:'bitmaps/UIPainter.xbm' resolution:100).
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2875
!
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2876
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2877
openOnClass:aClass
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2878
    "opens the GUI Painter on aClass and #windowSpec"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2879
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2880
    self openOnClass:aClass andSelector:#windowSpec
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2881
!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2882
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2883
openOnClass:aClass andSelector:aSelector
798
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2884
    "opens the GUI Painter on aClass and aSelector
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2885
    "
157
ce974dce3dd4 enhanced class & method dialog
Claus Gittinger <cg@exept.de>
parents: 156
diff changeset
  2886
    aClass isNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2887
	(self confirm:'No class given to the GUI Painter (class was probably renamed?)\\Open anyway (to create a new window spec) ?' withCRs)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2888
	ifFalse:[^ nil].
157
ce974dce3dd4 enhanced class & method dialog
Claus Gittinger <cg@exept.de>
parents: 156
diff changeset
  2889
    ].
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2890
798
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2891
    specSelector := aSelector.
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2892
    specClass := aClass.
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2893
964
476235fbb312 setup class/selector, before opening the interface;
Claus Gittinger <cg@exept.de>
parents: 952
diff changeset
  2894
    self openInterface.
476235fbb312 setup class/selector, before opening the interface;
Claus Gittinger <cg@exept.de>
parents: 952
diff changeset
  2895
476235fbb312 setup class/selector, before opening the interface;
Claus Gittinger <cg@exept.de>
parents: 952
diff changeset
  2896
"/    specSelector := aSelector.
476235fbb312 setup class/selector, before opening the interface;
Claus Gittinger <cg@exept.de>
parents: 952
diff changeset
  2897
"/    specClass := aClass.
476235fbb312 setup class/selector, before opening the interface;
Claus Gittinger <cg@exept.de>
parents: 952
diff changeset
  2898
476235fbb312 setup class/selector, before opening the interface;
Claus Gittinger <cg@exept.de>
parents: 952
diff changeset
  2899
    "Modified: / 21.8.1998 / 20:59:15 / cg"
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2900
!
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2901
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2902
postOpenWith: aBuilder
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2903
    "sets the root of the tree view as first selection;
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2904
     sets the grid parameters, if defined"
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2905
798
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2906
    |painter settings gridPara hspace vspace cls sel|
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2907
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2908
    super postOpenWith:aBuilder.
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2909
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2910
    cls := specClass.
966
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  2911
    cls isString ifTrue:[
1059
ecb59576e1e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2912
        cls := Smalltalk at:(cls string asSymbol)
966
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  2913
    ].
798
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2914
    sel := specSelector.
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2915
    specSelector := nil.
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2916
    specClass    := nil.
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2917
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2918
    painter  := self painter.
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2919
    settings := self class settings.
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2920
    gridPara := painter gridParameters copy.
1059
ecb59576e1e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2921
    hspace   := settings at: #HGridSpace ifAbsent:10.
ecb59576e1e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2922
    vspace   := settings at: #VGridSpace ifAbsent:10.
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2923
    gridPara at:1 put:hspace; at:2 put:vspace; at:5 put:hspace; at:6 put:vspace.
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2924
    painter gridParameters:gridPara.
1059
ecb59576e1e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2925
    painter gridShown: (settings at: #GridShown ifAbsent:false).
ecb59576e1e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2926
    painter gridAlign: (settings at: #GridAlign ifAbsent:false).
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2927
    painter clear.
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2928
798
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2929
    cls notNil ifTrue:[
1059
ecb59576e1e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2930
        self setClass:cls selector:sel.
ecb59576e1e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2931
ecb59576e1e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2932
        (cls respondsTo:sel) ifTrue:[  
ecb59576e1e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2933
            painter setupFromSpec:(cls perform:sel).
ecb59576e1e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2934
        ]
798
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2935
    ].
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2936
    treeView selection: #(1).
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2937
966
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  2938
    "Modified: / 22.8.1998 / 17:41:34 / cg"
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2939
! !
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2940
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2941
!UIPainter methodsFor:'user actions'!
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  2942
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2943
accept
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2944
    "accepts all modifications done to the attributes of the current section"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2945
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2946
    |painter layout spec layoutTool layoutView t|
1068
dcb2cba5787f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  2947
dcb2cba5787f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  2948
    self acceptChannel value:true; value:false.  "/ force editFields to accept
788
8f9f3c3fcf60 avoid modified problems
tz
parents: 787
diff changeset
  2949
    self modifiedChannel value:false.
8f9f3c3fcf60 avoid modified problems
tz
parents: 787
diff changeset
  2950
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2951
    painter := self painter.
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2952
    spec := self specTool specification.
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2953
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2954
    self isLayoutToolSelected ifTrue:[
1063
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2955
        layoutTool := self layoutTool.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2956
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2957
        (layout := layoutTool layout) notNil ifTrue:[
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2958
            layoutTool layoutType == #Extent ifTrue:[
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2959
                layoutView := layoutTool layoutView.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2960
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2961
                layoutView == painter topView ifTrue:[
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2962
                    layoutView extent:layout
1063
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2963
                ] ifFalse:[
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2964
                    spec useDefaultExtent:(layoutTool aspectFor:#useDefaultExtent) value.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2965
                    spec useDefaultExtent ifTrue:[
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2966
                        "/ temporarily unfreeze the widgets size
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2967
                        "/ (but remember, the old setting, which is actually
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2968
                        "/ controlled by the resizeForLabel attribute)
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2969
                        t := layoutView sizeFixed.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2970
                        layoutView sizeFixed:false.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2971
                        layout := layoutView preferredExtent.    
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2972
                        layoutView sizeFixed:t.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2973
                    ].
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2974
                    painter setExtent:layout.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2975
                    painter updateFromSpec:spec.
1063
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2976
                ]
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2977
            ] ifFalse:[
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2978
                painter setLayout:layout
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2979
            ]
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2980
        ]
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2981
    ] ifFalse:[
1063
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2982
        self isHelpToolSelected ifTrue:[
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2983
            self helpTool accept.      
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2984
            spec activeHelpKey:self helpTool helpKey.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2985
        ].      
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2986
        painter updateFromSpec:spec
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2987
    ].
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2988
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2989
    modified := false.
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2990
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2991
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2992
addWidget: aSpecClass
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2993
    "adds a widget from aSpecClass to the current widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2994
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2995
    self addWidgetOfSpec: (Array with: (Smalltalk at: aSpecClass) new)
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2996
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2997
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2998
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2999
addWidgetOfSpec: aSpec
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3000
    "adds a widget from aSpec to the current widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3001
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3002
    |newSel|  
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3003
    (newSel := self pasteSpecifications:aSpec keepLayout:false at:0@0) notNil
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3004
    ifTrue:
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3005
    [
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3006
	self select: newSel
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3007
    ]
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3008
    ifFalse:
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3009
    [   
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3010
	((treeView selection size = 0) or: [treeView selectedNode isNil])
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3011
	ifTrue:
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3012
	[                          
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3013
	    treeView selection: #(1).
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3014
	]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3015
	ifFalse:
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3016
	[  
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3017
	    treeView selectNode: (treeView detectNode: [:n| n = treeView selectedNode parent])
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3018
	].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3019
	self addWidgetOfSpec: aSpec
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3020
    ]
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3021
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3022
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3023
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3024
cancel
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3025
    "cancels all modifications done to the attributes of the current section; 
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3026
     reread the old attributes"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3027
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3028
    |spec key view|
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3029
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3030
    self isModified ifTrue:[
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3031
        (spec := self painter specForSelection) notNil ifTrue:[
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3032
            key := spec activeHelpKey.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3033
        ].
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3034
        self helpTool helpKey:key.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3035
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3036
        treeView isCanvasSelected ifTrue: [
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3037
            spec := treeView canvasSpec.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3038
        ].
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3039
        self specTool specification:spec.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3040
        view := self layoutTool layoutView.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3041
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3042
        self setViewInLayoutTool:view spec:spec.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3043
        spec class == DataSetSpec ifTrue:[
1131
4721b93b9cdc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1115
diff changeset
  3044
            view notNil ifTrue:[
4721b93b9cdc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1115
diff changeset
  3045
                view columnDescriptors:(spec columns)
4721b93b9cdc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1115
diff changeset
  3046
            ]
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3047
        ].        
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3048
        self modifiedChannel value:false.
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3049
        modified := false
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3050
    ]
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3051
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3052
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3053
doBrowseAspectMethods
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3054
    "opens a browser on the aspect methods"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3055
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3056
    |methods|
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3057
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3058
    self painter isModified ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3059
	self warn:'The current window spec has not yet been saved!!\\The System Browser may show the code of the old aspect methods.' withCRs.
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3060
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3061
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3062
    (methods := self painter aspectMethods) isEmpty ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3063
	self warn:'No aspect methods found!!'.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3064
	^ self.
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3065
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3066
    SystemBrowser browseMethods:methods title:'Aspect methods'.
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3067
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3068
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3069
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3070
doBrowseClass
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3071
    "opens a System Browser on the specClass"
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3072
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3073
    self painter isModified ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3074
	self warn:'The current window spec has not yet been saved!!\\The System Browser will show the code of the old window spec.' withCRs.
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3075
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3076
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3077
    SystemBrowser openInClass:(self resolveName:specClass)
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3078
    
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  3079
!
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  3080
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3081
doDefineClassAndSelector
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3082
    "launches a dialog for defining class, superclass, and selector of the application"
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3083
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  3084
    |again tmp helpDict helpKey helpTool|
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3085
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3086
    [
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3087
	again := false.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3088
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3089
	(tmp := specClass) isNil ifTrue:[tmp := 'NewApplication'].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3090
	aspects at:#classNameChannel put:tmp asValue.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3091
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3092
	(tmp := specSelector) isNil ifTrue:[tmp := 'windowSpec'].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3093
	aspects at:#methodNameChannel put:tmp asValue.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3094
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3095
	(tmp := specSuperclass) isNil ifTrue:[tmp := 'ApplicationModel'].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3096
	aspects at:#superclassNameChannel put:tmp asValue.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3097
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3098
	(self openDialogInterface:#dialogSpecForDefiningClassAndSelector) ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3099
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3100
	    specClass    := (self aspectFor:#classNameChannel) value.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3101
	    specSelector := (self aspectFor:#methodNameChannel) value.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3102
	    specSelector notNil ifTrue:[specSelector := specSelector asSymbol].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3103
	    specSuperclass := (self aspectFor:#superclassNameChannel) value.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3104
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3105
	    (again := self checkClassAndSelector not) ifFalse:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3106
		self painter className:specClass
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3107
			superclassName:specSuperclass
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3108
			      selector:specSelector.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3109
	    ]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3110
	]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3111
	ifFalse:
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3112
	[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3113
	    ^nil
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3114
	]
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3115
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3116
    ] doWhile:[again].
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3117
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3118
    specClass := specClass isBehavior ifTrue:[specClass name]
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3119
				      ifFalse:[specClass].
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3120
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  3121
    helpTool := self helpTool.
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  3122
    helpDict := helpTool dictionary.
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  3123
    helpKey  := helpTool helpKey.
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  3124
    helpTool buildFromClass:specClass.    
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  3125
    helpTool dictionary declareAllFrom: helpDict.
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  3126
    helpTool updateList.
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  3127
    helpTool helpKey: helpKey.
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3128
    self modifiedChannel value: false.
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  3129
    helpTool modified: true.
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3130
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3131
    self updateInfoLabel
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  3132
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  3133
    "Modified: / 16.7.1998 / 18:26:33 / cg"
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3134
!
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3135
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3136
doDefineGrid
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3137
    "opens a dialog for the grid parameters"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3138
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3139
    |hspace vspace bindings painter gridPara settings|
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3140
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3141
    painter  := self painter.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3142
    bindings := IdentityDictionary new.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3143
    gridPara := painter gridParameters copy.
1021
8c1deb0281c7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3144
    settings := self class settings.
8c1deb0281c7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3145
8c1deb0281c7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3146
    bindings at:#showGrid    put:((settings at: #GridShown ifAbsent: [painter gridShown]) asValue).
8c1deb0281c7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3147
    bindings at:#alignToGrid put:((settings at: #GridAlign ifAbsent: [painter gridAlign]) asValue).
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3148
    bindings at:#hspace      put:((gridPara at:1) asValue).
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3149
    bindings at:#vspace      put:((gridPara at:2) asValue).
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3150
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3151
    (self openDialogInterface:#dialogSpecForDefiningGridParameters withBindings:bindings) ifFalse:[
1021
8c1deb0281c7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3152
        ^ self
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3153
    ].
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3154
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3155
    hspace := (bindings at:#hspace) value ? 5.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3156
    vspace := (bindings at:#vspace) value ? 5.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3157
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3158
    gridPara at:1 put:hspace.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3159
    gridPara at:2 put:vspace.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3160
    gridPara at:5 put:hspace.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3161
    gridPara at:6 put:vspace.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3162
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3163
    painter gridShown:false. 
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3164
    painter gridAlign:false. 
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3165
    painter gridParameters:gridPara.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3166
    painter gridAlign:(bindings at:#alignToGrid) value.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3167
    painter gridShown:(bindings at:#showGrid) value.
1021
8c1deb0281c7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3168
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3169
    settings at: #GridShown  put: (bindings at:#showGrid) value.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3170
    settings at: #GridAlign  put: (bindings at:#alignToGrid) value.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3171
    settings at: #HGridSpace put: hspace.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3172
    settings at: #VGridSpace put: vspace.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3173
    painter clear.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3174
1021
8c1deb0281c7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3175
    "Modified: / 4.2.1999 / 15:36:34 / cg"
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3176
!
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3177
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  3178
doGenerateAspectMethods
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3179
    "generates aspect and action methods for the application class"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3180
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3181
    self askForSectionModification.
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3182
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3183
    (ReadStream on:self painter generateAspectMethods) fileIn.
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3184
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3185
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3186
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  3187
doGenerateHookMethods
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3188
    "generates hook methods for the application class"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3189
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3190
    self askForSectionModification.
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3191
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3192
    (ReadStream on:self painter generateHookMethods) fileIn.
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3193
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3194
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3195
966
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  3196
doGenerateMenuMethods
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  3197
    "generates menu stub methods for the application class"
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  3198
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  3199
    self askForSectionModification.
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  3200
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  3201
    (ReadStream on:self painter generateMenuMethods) fileIn.
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  3202
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  3203
    "Created: / 23.8.1998 / 16:10:04 / cg"
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  3204
!
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  3205
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3206
doInspectSpec
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3207
    "opens an inspector on the spec of the selected widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3208
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3209
    |spec|
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3210
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3211
    (spec := self specForSelection) isNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3212
	treeView isCanvasSelected ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3213
	    spec := treeView canvasSpec.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3214
	]
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3215
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3216
    spec notNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3217
	spec inspect
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3218
    ]
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3219
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3220
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3221
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3222
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3223
doInspectView
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3224
    "opens an inspector on the view of the selected widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3225
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3226
    |selection|
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3227
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3228
    ((selection := self painter selection) isCollection and: [selection size >= 1]) ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3229
	selection first inspect
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3230
    ] ifFalse: [
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3231
	selection inspect
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3232
    ]
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3233
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3234
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3235
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3236
doLoad
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3237
    "opens a ResourceSelectionBrowser for loading a window spec from a class"
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3238
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3239
    self askForModification ifFalse: [^nil].
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3240
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3241
    self loadFromMessage: 
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3242
	(ResourceSelectionBrowser
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3243
	    request: 'Load Window Spec From Class'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3244
	    onSuperclass: nil
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3245
	    andClass: specClass
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3246
	    andSelector: specSelector ? #windowSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3247
	    withResourceTypes: #(canvas))
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3248
!
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3249
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3250
doLoadSubspec
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3251
    "opens a ResourceSelectionBrowser for loading a sub spec from a class"
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3252
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3253
    |subSpecMessage|
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3254
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3255
    self askForSectionModification.
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3256
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3257
    (subSpecMessage := ResourceSelectionBrowser
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3258
	    request: 'Load Subspec From Class'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3259
	    onSuperclass: nil
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3260
	    andClass: specClass
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3261
	    andSelector: specSelector
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3262
	    withResourceTypes: #(canvas)) notNil
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3263
    ifTrue:
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3264
    [
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3265
	|readStream aClass aSelector|
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3266
	readStream := subSpecMessage readStream.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3267
	(aClass := Smalltalk at: (readStream upTo: $ ) asSymbol) notNil
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3268
	ifTrue:
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3269
	[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3270
	    aSelector :=  readStream upToEnd asSymbol.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3271
	    (aClass name == specClass and: [aSelector == specSelector]) ifTrue: [^self warn: 'Current interface as subspec not allowed!!'].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3272
	    (aClass respondsTo:aSelector) 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3273
	    ifTrue:
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3274
	    [
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3275
		self addWidgetOfSpec: (Array with: (UISubSpecification new majorKey: aClass name; minorKey: aSelector))
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3276
	    ]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3277
	]
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3278
    ]
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3279
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3280
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3281
doNew
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3282
    "removes all widgets, specClass, and specSelector"
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3283
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3284
    self askForModification ifFalse: [^nil].
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3285
    specClass := specSelector := nil.
572
ac2a1dd83d28 open tutorial added
tz
parents: 565
diff changeset
  3286
    self painter removeAll.
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3287
    treeView canvas topView name:  UIPainter defaultNameOfCanvas.
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3288
    treeView canvas topView label: UIPainter defaultNameOfCanvas.
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3289
    self helpTool doNew.
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  3290
    self treeSelection.
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  3291
    treeView selectedNode changed.
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  3292
    self tabModel value: self tabList value first.
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3293
    self updateInfoLabel.
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3294
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3295
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3296
doOpenWidgetDocumentation
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3297
    "opens documentation for the selected widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3298
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3299
    |spec document|
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3300
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3301
    (spec := self specForSelection) isNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3302
	treeView isCanvasSelected ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3303
	    spec := nil
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3304
	]
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3305
    ].
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3306
    spec notNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3307
	document := 'tools/uipainter/', spec userFriendlyName,'.html'
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3308
    ] ifFalse: [
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3309
	document := 'tools/uipainter/WindowSpec.html'
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3310
    ].
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3311
    HTMLDocumentView openFullOnDocumentationFile: document 
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3312
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3313
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3314
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3315
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3316
doPickAView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3317
    "changes the cursor for picking a view and builds a window spec from it"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3318
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3319
    |view|
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3320
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3321
    self askForModification ifFalse: [^nil].
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3322
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3323
    (view := Screen current viewFromUser) notNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3324
	view == Screen current rootView ifFalse:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3325
	    self painter setupFromSpec:(UISpecification fromView:view topView).
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3326
	]
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3327
    ].
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3328
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3329
    self updateInfoLabel
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3330
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3331
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3332
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3333
doSave
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3334
    "saves the window spec"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3335
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3336
    |code painter cls ns|
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3337
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3338
    self askForSectionModification.
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3339
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3340
    self hasSpecClassAndSelector ifFalse:[
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3341
        self doDefineClassAndSelector isNil ifTrue: [^nil]
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3342
    ].
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3343
1180
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3344
    (specClass notNil and: [(cls := Smalltalk at: specClass asSymbol) isClass]) ifFalse:[   
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3345
        self warn:('Oops - cannot save - class not found: ' , specClass).
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3346
        ^nil
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3347
    ].
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3348
1180
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3349
"/    specClass notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3350
"/        (specClass includes:$:) ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3351
"/            (ns := Smalltalk defaultNameSpace) notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3352
"/                cls := ns at:specClass asSymbol
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3353
"/            ].
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3354
"/        ].
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3355
"/        cls isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3356
"/            (specClass startsWith:'Smalltalk::') ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3357
"/                cls := Smalltalk at: (specClass copyFrom:12) asSymbol.
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3358
"/            ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3359
"/                cls := Smalltalk at: specClass asSymbol.
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3360
"/            ]
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3361
"/        ].
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3362
"/        ns := cls nameSpace.
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3363
"/    ].
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3364
"/    cls isClass ifFalse:[   
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3365
"/        self warn:('Oops - cannot save - class not found: ' , specClass).
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3366
"/        ^nil
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3367
"/    ].
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3368
"/
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3369
"/    ns ~~ Smalltalk defaultNameSpace ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3370
"/        specClass := ns name , '::' , cls nameWithoutNameSpacePrefix.
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3371
"/    ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3372
"/        specClass := cls name.
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3373
"/    ].
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3374
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3375
    painter := self painter.
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3376
    painter 
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3377
        className:specClass
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3378
        superclassName:specSuperclass
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3379
        selector:specSelector.
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3380
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3381
    code := painter generateWindowSpecMethodSource withCRs.
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3382
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3383
    Transcript showCR:'generating windowSpec code...'.
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3384
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3385
    (ReadStream on:code) fileIn.
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3386
724
7c7fb3f3a927 docu calls added
tz
parents: 721
diff changeset
  3387
    self helpTool installHelpSpecsOnClass:specClass.
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3388
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3389
    self updateInfoLabel.
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3390
    modified := false.
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3391
    painter resetModification.
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3392
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3393
    (cls class implements: specSelector) ifTrue:[
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3394
        self addToHistory: (specClass, ' ', specSelector) -> #loadFromMessage:.
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3395
    ].
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3396
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3397
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3398
!
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3399
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3400
doSaveAs
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3401
    "opens a ResourceSelectionBrowser for saving the window spec on a class"
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3402
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3403
    |resourceMessage|
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3404
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3405
    self askForSectionModification.
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3406
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3407
    (resourceMessage := ResourceSelectionBrowser
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3408
	    request: 'Save Window Spec In Class'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3409
	    onSuperclass: #Object
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3410
	    andClass: (specClass ? #ApplicationModel) asSymbol
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3411
	    andSelector: specSelector ? #windowSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3412
	    withResourceTypes: #(canvas)) notNil
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3413
    ifTrue:
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3414
    [
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3415
	modified := false.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3416
	self painter resetModification.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3417
	(self resourceMessage: resourceMessage)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3418
	ifTrue:
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3419
	[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3420
	    self doSave.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3421
	    ^true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3422
	]
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3423
    ]
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3424
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3425
!
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3426
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3427
doStartApplication
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3428
    "starts the application on the editing window spec"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3429
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3430
    |cls application|
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3431
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3432
    self hasSpecClassAndSelector ifFalse:[
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3433
        self doSave isNil ifTrue: [^nil].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3434
    ] ifTrue: [
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3435
        self askForSectionModification.    
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3436
        (modified or: [self painter isModified or: [self helpTool modified]])
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3437
        ifTrue:
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3438
        [
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3439
            ((YesNoBox title:'Window Spec was modified!!')        
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3440
                noText:'Cancel';
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3441
                yesText:'Save it and start';
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3442
                showAtPointer;
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3443
                accepted) ifFalse: [^nil].
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3444
            self doSave isNil ifTrue: [^nil]
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3445
        ]
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3446
    ].
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3447
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3448
    cls := self resolveName:specClass.
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3449
    cls isNil ifTrue:[
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3450
        self warn:'Oops cannot start application - no class:' , specClass.
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3451
        ^ nil
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3452
    ].
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3453
    ((application := cls new) respondsTo:#openInterface:) ifFalse:[
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3454
        ^ self warn:('The application does not respond to the ''openInterface:'' message.\\(maybe its supposed to be used as subApplication/subCanvas)') withCRs.
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3455
    ].        
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3456
    application openInterface:specSelector
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3457
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3458
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3459
doStepDown
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3460
    "moves the selected widget one step down in the hierarchy"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3461
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3462
    treeView doStepOver:1
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3463
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3464
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3465
doStepIn
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3466
    "moves the selected widget into the next widget as child"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3467
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3468
    treeView doStepIn
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3469
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3470
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3471
doStepOut
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3472
    "moves the selected widget out of the parent widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3473
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3474
    treeView doStepOut
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3475
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3476
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3477
doStepUp
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3478
    "moves the selected widget one step up in the hierarchy"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3479
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3480
    treeView doStepOver:-1
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  3481
!
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  3482
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  3483
doWindowSpec
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3484
    "opens a code view with the contents of the window spec"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3485
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3486
    self askForSectionModification.
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3487
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3488
    CodeView 
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3489
	openWith: self painter generateWindowSpecMethodSource 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3490
	title: 'Window Spec'
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  3491
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3492
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3493
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3494
!UIPainter::TreeView class methodsFor:'documentation'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3495
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3496
documentation
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3497
"
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3498
    selection in tree view; only used by the UIPainter
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3499
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3500
    [see also:]
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3501
	SelectionInTreeView
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3502
	SelectionInTree
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3503
	TreeItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3504
	UIPainter
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3505
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3506
    [author:]
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3507
	Claus Atzkern
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3508
"
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3509
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3510
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3511
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3512
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3513
!UIPainter::TreeView methodsFor:'accessing'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3514
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3515
canvas
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3516
    "returns the canvas (UIPainterView)"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3517
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3518
    ^ model root contents view
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3519
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3520
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3521
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3522
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3523
canvas:aCanvas
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3524
    "install canvas (UIPainterView)"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3525
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3526
    |props|
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3527
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3528
    props := UIPainterView::ViewProperty new.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3529
    props view:aCanvas.
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3530
    model root:(TreeItem name: UIPainter defaultNameOfCanvas asBoldText contents:props).
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3531
    model root expand.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3532
    self enableChannel:(aCanvas enableChannel).
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3533
281
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3534
!
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3535
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3536
canvasSpec
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3537
    "returns spec assigned to canvas"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3538
281
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3539
    |spec|
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3540
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3541
    spec := WindowSpec new.
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3542
281
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3543
    spec fromView:(self canvas topView) callBack:nil.
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3544
    windowSpec notNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3545
	spec copyValuesFromSpec:windowSpec
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3546
    ].
362
55154d7a4deb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 358
diff changeset
  3547
    ^ spec
55154d7a4deb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 358
diff changeset
  3548
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3549
!
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3550
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3551
canvasSpec:aSpec
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3552
    "update canvas from spec"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3553
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3554
    |spec|
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3555
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3556
    self setAttributesFromWindowSpec:aSpec.
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3557
    spec := aSpec copy.
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3558
    spec  menu:nil.
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3559
    spec flags:nil.
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3560
394
1933896da0c3 sett UIBuilder isEditing to true
ca
parents: 375
diff changeset
  3561
    spec setAttributesIn:(self canvas topView) with:(UIBuilder new isEditing:true).
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3562
!
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3563
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3564
itemOfView:aView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3565
    "returns item assigned to view or nil"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3566
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3567
    aView notNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3568
	self allItemsDo:[:anItem|
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3569
	    (anItem contents view == aView) ifTrue:[^ anItem]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3570
	]
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3571
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3572
    ^ nil
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3573
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3574
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3575
!
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3576
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3577
lastDrawnMaster
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3578
    "returns the lastDrawnMaster"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3579
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3580
    ^ lastDrawnMaster
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3581
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3582
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3583
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3584
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3585
!UIPainter::TreeView methodsFor:'accessing property'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3586
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3587
propertiesDo:aOneArgBlock
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3588
    "evaluates the argument a block on each property"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3589
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3590
    self allItemsDo:[:anItem| aOneArgBlock value:(anItem contents)]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3591
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3592
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3593
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3594
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3595
propertyDetect:aOneArgBlock
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3596
    "evaluates the block on each property"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3597
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3598
    self allItemsDo:[:anItem|
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3599
	(aOneArgBlock value:(anItem contents)) ifTrue:[^ anItem contents]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3600
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3601
    ^ nil
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3602
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3603
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3604
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3605
propertySelected
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3606
    "returns current selected property or nil in case of multi selection
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3607
     or empty selection "
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3608
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3609
    |idx|
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3610
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3611
    selection size == 1 ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3612
	(idx := selection first) ~~ 1 ifTrue:[          "canvas: not yet supported"
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3613
	    ^ (listOfNodes at:idx) contents
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3614
	]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3615
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3616
    ^ nil
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3617
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3618
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3619
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3620
!UIPainter::TreeView methodsFor:'adding & removing'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3621
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3622
addProperty:aProperty
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3623
    "adds a new item"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3624
533
dde823aeca4c supports loading of subspecs
tz
parents: 527
diff changeset
  3625
    |parent| 
295
114befd1c369 add some help text
ca
parents: 287
diff changeset
  3626
114befd1c369 add some help text
ca
parents: 287
diff changeset
  3627
    parent := self detectItemRespondsToView:(aProperty view superView).
114befd1c369 add some help text
ca
parents: 287
diff changeset
  3628
114befd1c369 add some help text
ca
parents: 287
diff changeset
  3629
    parent notNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3630
	model add:(TreeItem new contents:aProperty) below:parent
295
114befd1c369 add some help text
ca
parents: 287
diff changeset
  3631
    ]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3632
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3633
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3634
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3635
removeAll
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3636
    "removes all items other than canvas"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3637
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3638
    lastDrawnMaster := nil.
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3639
    windowSpec := nil.
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3640
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3641
    self canvas subViews copy do:[:aView|
1041
56ae9768b7ff eliminated #isKindOf: call.
Claus Gittinger <cg@exept.de>
parents: 1032
diff changeset
  3642
        "/ care to not destroy the transparent input view
56ae9768b7ff eliminated #isKindOf: call.
Claus Gittinger <cg@exept.de>
parents: 1032
diff changeset
  3643
        (aView isInputOnly) ifFalse:[aView destroy]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3644
    ].
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3645
    model root name: UIPainter defaultNameOfCanvas asBoldText.
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  3646
    model removeAllOtherThanRoot.
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3647
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3648
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3649
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3650
removeView:aView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3651
    "removes a view"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3652
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3653
    |item prnt|
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3654
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3655
    ((item := self itemOfView:aView) notNil and:[(prnt := item parent) notNil]) ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3656
	aView destroy.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3657
	prnt contents view sizeChanged:nil.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3658
	model remove:item
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3659
    ]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3660
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3661
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3662
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3663
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3664
!UIPainter::TreeView methodsFor:'building'!
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3665
1058
243d945b1daf name the (full-)spec
tm
parents: 1046
diff changeset
  3666
generateFullSpecForComponents:aSpecArray named:specNameSymbol
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3667
    "generates a full spec from aSpecArray"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3668
351
7cb9f9c9a872 more checks
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
  3669
    |fullSpec winSpec|
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3670
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3671
    fullSpec := FullSpec new.
1058
243d945b1daf name the (full-)spec
tm
parents: 1046
diff changeset
  3672
    fullSpec name:specNameSymbol.
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3673
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3674
    fullSpec fromBuilder:(self canvas topView)
1058
243d945b1daf name the (full-)spec
tm
parents: 1046
diff changeset
  3675
              components:(SpecCollection new collection:aSpecArray).
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3676
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3677
    windowSpec notNil ifTrue:[
1058
243d945b1daf name the (full-)spec
tm
parents: 1046
diff changeset
  3678
        winSpec := fullSpec window.
243d945b1daf name the (full-)spec
tm
parents: 1046
diff changeset
  3679
        winSpec copyValuesFromSpec:windowSpec.
243d945b1daf name the (full-)spec
tm
parents: 1046
diff changeset
  3680
        winSpec name: winSpec label.
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3681
    ].    
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3682
    ^ fullSpec literalArrayEncoding.
351
7cb9f9c9a872 more checks
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
  3683
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3684
!
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3685
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3686
setAttributesFromWindowSpec:aWindowSpec
1172
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  3687
    "sets a window spec from aWindowSpec and applies some attributes
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  3688
     to the canvas."
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  3689
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  3690
    |nm canvasView builder|
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3691
362
55154d7a4deb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 358
diff changeset
  3692
    windowSpec := WindowSpec new copyValuesFromSpec:aWindowSpec.
1172
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  3693
    canvasView := self canvas.
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  3694
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  3695
    builder := UIBuilder new isEditing:true.
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  3696
    aWindowSpec setAttributesIn:canvasView with:builder.
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  3697
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  3698
    nm := aWindowSpec name.
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  3699
    canvasView topView name:nm.
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  3700
    self canvasNameChanged:nm.
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  3701
    self application treeSelection.
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3702
! !
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3703
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3704
!UIPainter::TreeView methodsFor:'canvas selection'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3705
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3706
cvsSelection:aSelection
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3707
    "canvas changed its selection
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3708
    "
805
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3709
    |sel list size|
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3710
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3711
    ((sel := aSelection) isNil or:[sel isCollection]) ifFalse:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3712
	sel := Array with:sel
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  3713
    ].
805
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3714
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3715
    (size := sel size) ~~ 0 ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3716
	list := OrderedCollection new:size.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3717
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3718
	sel do:[:aView||item|
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3719
	    (item := self itemOfView:aView) notNil ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3720
		list add:item.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3721
		model doMakeVisible:item.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3722
	    ]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3723
	].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3724
	sel := list collect:[:anItem| self indexOfNode:anItem ].
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  3725
    ].
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3726
    self cvsEventsDisabledDo:[ self selection:sel ].            
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3727
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3728
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3729
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3730
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3731
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3732
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3733
cvsSelectionAdd:aView
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3734
    "canvas adds a view to current selection
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3735
    "
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  3736
    |item index oldSel|
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3737
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3738
    item := self itemOfView:aView.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3739
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3740
    item notNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3741
	model doMakeVisible:item.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3742
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3743
	(index := self indexOfNode:item) ~~ 0 ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3744
	    oldSel := selection copy.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3745
	    self addToSelection:index.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3746
	    self selectionChangedFrom:oldSel
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3747
	]        
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  3748
    ]            
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3749
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3750
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3751
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3752
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3753
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3754
cvsSelectionRemove:aView
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3755
    "canvas removes a view from current selection
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3756
    "
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  3757
    |item index oldSel|
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  3758
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  3759
    (     (item := self itemOfView:aView) notNil
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  3760
     and:[(index := self indexOfNode:item) ~~ 0
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  3761
     and:[self isInSelection:index]]
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  3762
    ) ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3763
	oldSel := selection copy.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3764
	self removeFromSelection:index.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3765
	self selectionChangedFrom:oldSel.
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  3766
    ].
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3767
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3768
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3769
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3770
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3771
!UIPainter::TreeView methodsFor:'change & update'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3772
281
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3773
canvasNameChanged:aName
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3774
    "called if identification name assigned to window (canvas) changed
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3775
    "
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3776
    |name node|
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3777
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3778
    node := listOfNodes at:1.
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3779
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3780
    (    aName size ~~ 0
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3781
     and:[(name := aName string withoutSeparators) size ~~ 0
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3782
     and:[(self propertyDetect:[:p| p name = name]) isNil
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3783
     and:[node name ~= name]]]
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3784
    ) ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3785
	node name: name asBoldText.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3786
	node changed.   
281
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3787
    ].
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3788
!
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3789
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3790
layoutChanged
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3791
    "layout of any component changed; in case of single selection, the
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3792
     application will be informed to update its layout
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3793
    "
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3794
    selection size == 1 ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3795
	self application layoutChanged
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3796
    ]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3797
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3798
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3799
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3800
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3801
propertyChanged:aProperty
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3802
    "property of view derived from argument a property changed
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3803
    "
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3804
    |item idx end|
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3805
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3806
    item := self itemOfView:(aProperty view).
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3807
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3808
    item notNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3809
	item contents:aProperty.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3810
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3811
	item name = aProperty name ifFalse:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3812
	    idx := self firstLineShown.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3813
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3814
	    (end := self lastLineShown) > listOfNodes size ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3815
		end := listOfNodes size
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3816
	    ].                          
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3817
	    item changed.   
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3818
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3819
	    [idx <= end] whileTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3820
		(listOfNodes at:idx) == item ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3821
		    self redrawLine:idx.                "/ is visible; redraw line
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3822
		    end := 0
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3823
		] ifFalse:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3824
		    idx := idx + 1
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3825
		]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3826
	    ]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3827
	].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3828
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3829
	self selectedNode == item ifTrue:[              "/ inform application
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3830
	    self application propertyChanged
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3831
	]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3832
    ].
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3833
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3834
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3835
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3836
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3837
!UIPainter::TreeView methodsFor:'drag & drop'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3838
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3839
canDrop:anObjectOrCollection
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3840
    "can drop ? delegate to canvas"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3841
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3842
    ^ self canvas canDrop:anObjectOrCollection
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3843
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3844
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3845
drop:anObjectOrCollection at:aPoint
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3846
    "drop objects ? delegate to canvas"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3847
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3848
    self canvas drop:anObjectOrCollection at:aPoint
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3849
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3850
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3851
!UIPainter::TreeView methodsFor:'enumerating'!
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3852
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3853
allItemsDo:aOneArgBlock
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3854
    "evaluates the argument a block on each item other than the canvas"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3855
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3856
    model root allChildrenDo:aOneArgBlock
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3857
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3858
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3859
! !
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3860
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3861
!UIPainter::TreeView methodsFor:'event processing'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3862
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3863
cvsEventsDisabledDo:aBlock
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3864
    "evaluates the block without raising selection changed notifications
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3865
     to canvas"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3866
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3867
    |restoreCvsEvents|
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3868
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3869
    restoreCvsEvents  := cvsEventsDisabled.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3870
    cvsEventsDisabled := true.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3871
    aBlock value.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3872
    cvsEventsDisabled := restoreCvsEvents.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3873
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3874
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3875
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3876
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3877
doubleClicked
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3878
    "disables collapsing of the root item"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3879
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3880
    self selectedNode == model root ifFalse:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3881
	super doubleClicked
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3882
    ]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3883
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3884
805
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3885
!
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3886
852
c24c7584abe4 replace reimplememented method:
ca
parents: 851
diff changeset
  3887
redrawLabelAt:x y:yTop index:anIndex
805
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3888
    "draws a tiny rectangle for indicating the master node (first selected node)"
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3889
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3890
    |dX|
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3891
852
c24c7584abe4 replace reimplememented method:
ca
parents: 851
diff changeset
  3892
    super redrawLabelAt:x y:yTop index:anIndex.
805
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3893
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3894
    ((selection size > 1) and: [selection first == anIndex]) ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3895
	dX := textInset - 1.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3896
	self paint:(Color red). "/ self application painter handleMasterColor.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3897
	self fillRectangleX:(x - dX - 2)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3898
			  y:yTop + ((fontHeight - dX) // 2)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3899
		      width:dX
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3900
		     height:dX
805
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3901
    ]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3902
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3903
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3904
!UIPainter::TreeView methodsFor:'initialization'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3905
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3906
initialize
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3907
    "initialize the tree view; multiple select and tree item actions"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3908
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3909
    super initialize.
564
df1f1e84d94a add menu added
tz
parents: 547
diff changeset
  3910
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3911
    self multipleSelectOk:true.
368
9e588f397bc9 support of lineFeed character \ in the help text
ca
parents: 366
diff changeset
  3912
    cvsEventsDisabled := false.
440
1198f19712ff spec items have got individual icons
tz
parents: 437
diff changeset
  3913
    self showDirectoryIndicator: true.
656
21fe350cfa06 tree item labels changed to a more convenient style
tz
parents: 630
diff changeset
  3914
    self showDirectoryIndicatorForRoot: false.
21fe350cfa06 tree item labels changed to a more convenient style
tz
parents: 630
diff changeset
  3915
21fe350cfa06 tree item labels changed to a more convenient style
tz
parents: 630
diff changeset
  3916
    self model iconAction: 
21fe350cfa06 tree item labels changed to a more convenient style
tz
parents: 630
diff changeset
  3917
    [:aNode|
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3918
	|specClass|       
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3919
	(specClass := aNode contents spec) isNil 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3920
	    ifTrue: [WindowSpec icon]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3921
	    ifFalse:[specClass class icon]
656
21fe350cfa06 tree item labels changed to a more convenient style
tz
parents: 630
diff changeset
  3922
    ].
21fe350cfa06 tree item labels changed to a more convenient style
tz
parents: 630
diff changeset
  3923
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3924
    self model labelAction: 
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3925
    [:aNode|
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3926
	|spec|
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3927
	(spec := aNode contents spec) notNil
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3928
	    ifTrue: [self nameForSpecInList:spec] 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3929
	    ifFalse:[aNode name]
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3930
    ]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3931
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3932
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3933
!UIPainter::TreeView methodsFor:'private'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3934
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3935
nameForSpecInList:aSpec
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3936
    "returns the tree item label for aSpec"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3937
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3938
     ^ aSpec name asBoldText, ': [', aSpec viewClass name , ']' 
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3939
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3940
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3941
selectionChangedFrom:oldSelection
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3942
    "selection has changed. update master selection and raise notification
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3943
     to canvas in case of enabled cvs events
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3944
    "
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3945
    |sel size|
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3946
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3947
    super selectionChangedFrom:oldSelection.
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3948
    size := selection size.
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3949
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3950
    cvsEventsDisabled ifFalse:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3951
	(size ~~ 0 and:[size ~~ 1 or:[selection first ~~ 1]]) ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3952
	    sel := OrderedCollection new.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3953
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3954
	    selection do:[:i|
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3955
		i ~~ 1 ifTrue:[sel add:(listOfNodes at:i) contents view]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3956
	    ]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3957
	].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3958
	self canvas updateSelectionFromModel:sel
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
  3959
    ].             
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3960
    size = 1 ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3961
	oldSelection size > 1 ifTrue: [
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3962
	    (listOfNodes at:lastDrawnMaster) retrieveLabel.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3963
	    self redrawLine: lastDrawnMaster. 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3964
	    lastDrawnMaster := selection first
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3965
	]
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3966
    ].
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3967
    size > 1 ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3968
	selection first ~~ lastDrawnMaster ifTrue: [
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3969
	    (listOfNodes at:selection first) retrieveLabel.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3970
	    lastDrawnMaster notNil ifTrue: [(listOfNodes at:lastDrawnMaster) retrieveLabel].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3971
	    self redrawLine: lastDrawnMaster. 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3972
	    self redrawLine: (lastDrawnMaster := selection first)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3973
	]
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  3974
    ]         
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3975
    ifFalse: [
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3976
	lastDrawnMaster := nil
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  3977
    ] 
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3978
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3979
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3980
!UIPainter::TreeView methodsFor:'queries'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3981
565
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  3982
canChangeOrderInContainer
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  3983
    "returns true if any selection exists and all widgets in the selection
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3984
     can change their layout through to a move or align operation"
565
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  3985
889
39d326722589 up/down channel updating
tz
parents: 884
diff changeset
  3986
    ^(selection size == 1)  and: 
39d326722589 up/down channel updating
tz
parents: 884
diff changeset
  3987
    [(selection at: 1) ~~ 1 and:   
39d326722589 up/down channel updating
tz
parents: 884
diff changeset
  3988
    [self selectedNode parent children size > 1]] 
39d326722589 up/down channel updating
tz
parents: 884
diff changeset
  3989
39d326722589 up/down channel updating
tz
parents: 884
diff changeset
  3990
565
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  3991
!
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  3992
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3993
canMoveOrAlignSelection
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3994
    "returns true if any selection exists and all widgets in the selection
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3995
     can change their layout through to a move or align operation"
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3996
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3997
    selection size == 0 ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3998
	^ false
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3999
    ].
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4000
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4001
    selection do:[:i|
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4002
	i == 1 ifTrue:[^ false].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4003
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4004
	(self canvas canChangeLayoutOfView:((listOfNodes at:i) contents view)) ifFalse:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4005
	    ^ false
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4006
	]
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4007
    ].
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4008
    ^ true
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4009
!
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4010
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4011
canMoveSelectionIntoContainer
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4012
    "returns true in case that one widget is selected and can change its container
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4013
     widget to the next element in the list which will have the same container"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4014
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4015
    |item prnt|
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4016
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4017
    (     (item := self selectedNode) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4018
      or:[(prnt := item parent) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4019
      or:[(prnt := prnt childAt:((prnt indexOfChild:item) + 1)) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4020
      or:[prnt contents spec class supportsSubComponents not]]]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4021
    ) ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4022
	^ false
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4023
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4024
    ^ true
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4025
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4026
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4027
canMoveSelectionOutOfContainer
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4028
    "returns true in case that one widget is selected which is contained within
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4029
     another widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4030
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4031
    |item prnt|
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4032
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4033
    (     (item := self selectedNode) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4034
      or:[(prnt := item parent) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4035
      or:[prnt parent isNil]]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4036
    ) ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4037
	^ false
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4038
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4039
    ^ true
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4040
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4041
301
131f874fc2a2 support of hierarchical list editor
ca
parents: 297
diff changeset
  4042
canResizeSelectedWidget
131f874fc2a2 support of hierarchical list editor
ca
parents: 297
diff changeset
  4043
    "returns true in case of one widget selected and is contained
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4044
     within a widget which allows to resize sub components"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4045
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4046
    |selectedNode|
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4047
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4048
    (selectedNode := self selectedNode) notNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4049
	(selectedNode := selectedNode parent) notNil ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4050
	    ^ (selectedNode parent isNil or:[selectedNode contents spec class canResizeSubComponents])
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4051
	]
301
131f874fc2a2 support of hierarchical list editor
ca
parents: 297
diff changeset
  4052
    ].
131f874fc2a2 support of hierarchical list editor
ca
parents: 297
diff changeset
  4053
    ^ false
131f874fc2a2 support of hierarchical list editor
ca
parents: 297
diff changeset
  4054
!
131f874fc2a2 support of hierarchical list editor
ca
parents: 297
diff changeset
  4055
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4056
hasOneSelectionOtherThanCanvas
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4057
    "returns true in case that one selection exists other than the canvas"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4058
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4059
    ^ selection size == 1 and:[selection first ~~ 1]
281
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4060
!
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4061
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4062
isCanvasSelected
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4063
    "returns true in case of a single selection and the
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4064
     selection is the canvas (index 1)"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4065
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4066
    ^ selection size == 1 and:[self isInSelection:1]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4067
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4068
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4069
!UIPainter::TreeView methodsFor:'searching'!
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4070
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4071
detectItemRespondsToView:aView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4072
    "detects the item responding to the view. The item of the view or the first
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4073
     subview providing the item is returned. If no property is detected nil is
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4074
     returned"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4075
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4076
    |view item|
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4077
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4078
    (view := aView) notNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4079
	[(item := self itemOfView:view) isNil] whileTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4080
	    (view := view superView) isNil ifTrue:[^ listOfNodes at:1]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4081
	].
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4082
    ].
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4083
    ^ item
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4084
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4085
! !
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4086
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4087
!UIPainter::TreeView methodsFor:'user interactions'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4088
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4089
doChangeHierarchyOf:anItem
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4090
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4091
    |canvas|
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4092
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4093
    anItem isNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4094
	^ self
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4095
    ].
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4096
    self setSelection:nil.
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4097
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4098
    canvas := self canvas.
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4099
    canvas deleteSelection.
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4100
    canvas setSelection:(anItem contents view) withRedraw:false.
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4101
    canvas pasteWithLayout.
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4102
!
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4103
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4104
doStepIn
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4105
    |item prnt|
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4106
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4107
    (     (item := self selectedNode) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4108
      or:[(prnt := item parent) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4109
      or:[(prnt := prnt childAt:((prnt indexOfChild:item) + 1)) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4110
      or:[prnt contents spec class supportsSubComponents not]]]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4111
    ) ifFalse:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4112
	self doChangeHierarchyOf:prnt
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4113
    ]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4114
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4115
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4116
doStepOut
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4117
    |item|
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4118
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4119
    ((item := self selectedNode) notNil and:[(item := item parent) notNil]) ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4120
	self doChangeHierarchyOf:(item parent)
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4121
    ].
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4122
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4123
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4124
doStepOver:anIndex
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4125
    "moves child 'anOffset' forward or backward in list of children"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4126
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4127
    |item idx size prnt spVw view canvas|
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4128
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4129
    (    (item := self selectedNode) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4130
     or:[(prnt := item parent) isNil
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4131
     or:[(size := prnt children size) < 2
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4132
     or:[(idx  := prnt indexOfChild:item) == 0]]]
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4133
    ) ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4134
	^ self
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4135
    ].
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4136
    idx := idx + anIndex.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4137
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4138
    idx < 1 ifTrue:[idx := size]
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4139
	   ifFalse:[idx > size ifTrue:[idx := 1]].
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4140
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4141
    self setSelection:nil.
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4142
    model remove:item.
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4143
    model add:item beforeIndex:idx below:prnt.
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4144
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4145
    idx    := prnt indexOfChild:item.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4146
    view   := item contents view.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4147
    spVw   := prnt contents view.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4148
    canvas := self canvas.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4149
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4150
    canvas hideSelection.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4151
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4152
 "/ input view might by contained in sequence
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4153
    ((size := canvas findInputViewIn:spVw) ~~ 0 and:[idx >= size]) ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4154
	idx := idx + 1
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4155
    ].
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4156
    spVw changeSequenceOrderFor:view to:idx.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4157
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4158
    spVw specClass isLayoutContainer ifFalse:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4159
	spVw subViews do:[:v| v raise ].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4160
	canvas inputView raise
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4161
    ].
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4162
    canvas showSelection.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4163
    self selectNode:item.
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4164
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4165
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  4166
!UIPainter class methodsFor:'documentation'!
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  4167
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  4168
version
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  4169
    ^ '$Header$'
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  4170
! !