UIPainter.st
author ca
Sat, 29 Jan 2000 13:30:36 +0100
changeset 1316 d66f0b84aa6b
parent 1314 f22b28597a05
child 1317 49d6dac15a57
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
156
b332d7117c40 added copyrights
Claus Gittinger <cg@exept.de>
parents: 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
1316
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
    15
	instanceVariableNames:'specClass specSelector specSuperclass aspects treeView
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
    16
		selectionPanel tabSelection modified specTool layoutTool helpTool'
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
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   692
	#name: #windowSpec
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   693
	#window: 
1115
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   694
       #(#WindowSpec
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   695
	  #label: 'GUI Painter'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   696
	  #name: 'GUI Painter'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   697
	  #layout: #(#LayoutFrame 220 0 200 0 827 0 722 0)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   698
	  #min: #(#Point 560 460)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   699
	  #max: #(#Point 1160 870)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   700
	  #bounds: #(#Rectangle 220 200 828 723)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   701
	  #menu: #menu
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   702
	)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   703
	#component: 
1115
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   704
       #(#SpecCollection
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   705
	  #collection: #(
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   706
	   #(#MenuPanelSpec
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   707
	      #name: 'menuToolbarView'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   708
	      #layout: #(#LayoutFrame 0 0.0 0 0 0 1.0 32 0)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   709
	      #tabable: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   710
	      #menu: #menuToolbar
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   711
	    )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   712
	   #(#VariableHorizontalPanelSpec
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   713
	      #name: 'hpanel'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   714
	      #layout: #(#LayoutFrame 0 0.0 34 0.0 0 1.0 -26 1.0)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   715
	      #level: 1
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   716
	      #handles: #(#Any 0.318868 1.0)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   717
	      #component: 
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   718
	     #(#SpecCollection
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   719
		#collection: #(
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   720
		 #(#ArbitraryComponentSpec
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   721
		    #name: 'treeView'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   722
		    #tabable: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   723
		    #menu: #menuEdit
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   724
		    #hasHorizontalScrollBar: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   725
		    #hasVerticalScrollBar: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   726
		    #miniScrollerHorizontal: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   727
		    #miniScrollerVertical: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   728
		    #hasBorder: false
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   729
		    #component: #treeView
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   730
		  )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   731
		 #(#ViewSpec
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   732
		    #name: 'specHolderView'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   733
		    #borderWidth: 1
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   734
		    #component: 
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   735
		   #(#SpecCollection
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   736
		      #collection: #(
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   737
		       #(#MenuPanelSpec
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   738
			  #name: 'menuToolbar2View'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   739
			  #layout: #(#LayoutFrame -1 0.0 -2 0 -1 1.0 30 0)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   740
			  #enableChannel: #canMoveOrAlignSelection
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   741
			  #tabable: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   742
			  #menu: #menuToolbar2
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   743
			)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   744
		       #(#NoteBookViewSpec
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   745
			  #name: 'noteBook'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   746
			  #layout: #(#LayoutFrame 0 0.0 34 0.0 0 1.0 -30 1.0)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   747
			  #enableChannel: #enableChannel
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   748
			  #tabable: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   749
			  #model: #tabModel
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   750
			  #menu: #tabList
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   751
			  #canvas: #noteBookView
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   752
			)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   753
		       #(#HorizontalPanelViewSpec
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   754
			  #name: 'horizontalPanelView1'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   755
			  #layout: #(#LayoutFrame -163 1 -1 0 -35 1.0 28 0)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   756
			  #horizontalLayout: #fit
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   757
			  #verticalLayout: #fit
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   758
			  #horizontalSpace: 0
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   759
			  #verticalSpace: 0
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   760
			  #component: 
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   761
			 #(#SpecCollection
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   762
			    #collection: #(
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   763
			     #(#ArrowButtonSpec
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   764
				#name: 'MoveLeftButton'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   765
				#activeHelpKey: #changePositionLeft
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   766
				#tabable: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   767
				#model: #moveSelectionLeft
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   768
				#enableChannel: #canMoveOrAlignSelection
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   769
				#isTriggerOnDown: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   770
				#direction: #left
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   771
				#useDefaultExtent: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   772
			      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   773
			     #(#ArrowButtonSpec
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   774
				#name: 'MoveRightButton'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   775
				#activeHelpKey: #changePositionRight
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   776
				#model: #moveSelectionRight
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   777
				#enableChannel: #canMoveOrAlignSelection
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   778
				#isTriggerOnDown: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   779
				#direction: #right
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   780
				#useDefaultExtent: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   781
			      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   782
			     #(#ArrowButtonSpec
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   783
				#name: 'MoveDownButton'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   784
				#activeHelpKey: #changePositionDown
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   785
				#model: #moveSelectionDown
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   786
				#enableChannel: #canMoveOrAlignSelection
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   787
				#isTriggerOnDown: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   788
				#direction: #down
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   789
				#useDefaultExtent: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   790
			      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   791
			     #(#ArrowButtonSpec
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   792
				#name: 'MoveUpButton'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   793
				#activeHelpKey: #changePositionUp
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   794
				#model: #moveSelectionUp
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   795
				#enableChannel: #canMoveOrAlignSelection
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   796
				#isTriggerOnDown: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   797
				#direction: #up
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   798
				#useDefaultExtent: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   799
			      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   800
			     )
1115
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   801
                           
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   802
			  )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   803
			)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   804
		       #(#ActionButtonSpec
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   805
			  #label: 'helpIcon'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   806
			  #name: 'openWidgetDocumentationButton'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   807
			  #layout: #(#LayoutFrame -28 1 -1 0 0 1 28 0)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   808
			  #activeHelpKey: #editOpenSpecDocumentation
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   809
			  #hasCharacterOrientedLabel: false
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   810
			  #model: #doOpenWidgetDocumentation
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   811
			)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   812
		       #(#ActionButtonSpec
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   813
			  #label: 'Cancel'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   814
			  #name: 'cancelButton'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   815
			  #layout: #(#LayoutFrame 2 0 -26 1 -1 0.5 -2 1)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   816
			  #activeHelpKey: #commitCancel
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   817
			  #tabable: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   818
			  #model: #cancel
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   819
			  #enableChannel: #modifiedChannel
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   820
			)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   821
		       #(#ActionButtonSpec
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   822
			  #label: 'OK'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   823
			  #name: 'acceptButton'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   824
			  #layout: #(#LayoutFrame 1 0.5 -26 1 -2 1 -2 1)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   825
			  #activeHelpKey: #commitOK
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   826
			  #tabable: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   827
			  #model: #accept
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   828
			  #enableChannel: #modifiedChannel
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   829
			)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   830
		       )
1115
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   831
                     
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   832
		    )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   833
		  )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   834
		 )
1115
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   835
               
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   836
	      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   837
	    )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   838
	   #(#UISubSpecification
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   839
	      #name: 'infoBarSubSpec'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   840
	      #layout: #(#LayoutFrame 0 0.0 -24 1 0 1.0 0 1.0)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   841
	      #majorKey: #ToolApplicationModel
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   842
	      #minorKey: #windowSpecForInfoBar
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   843
	    )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   844
	   )
1115
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   845
         
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   846
	)
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
   847
      )
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
   848
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
   849
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
   850
!UIPainter class methodsFor:'menu specs'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
   851
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
   852
menu
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   853
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   854
     by the MenuEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   855
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   856
    "Do not manually edit this!! If it is corrupted,
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   857
     the MenuEditor may not be able to read the specification."
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
   858
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
   859
    "
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
   860
     MenuEditor new openOnClass:UIPainter andSelector:#menu
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
   861
     (Menu new fromLiteralArrayEncoding:(UIPainter menu)) startUp
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
   862
    "
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
   863
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
   864
    <resource: #menu>
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
   865
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
       #(#Menu
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
   869
          
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   870
	   #(
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   871
	     #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   872
		#label: 'About'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   873
		#translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   874
		#activeHelpKey: #about
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   875
		#labelImage: #(#ResourceRetriever nil #menuIcon)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   876
		#submenuChannel: #menuAbout
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   877
	    )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   878
	     #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   879
		#label: 'File'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   880
		#translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   881
		#activeHelpKey: #file
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   882
		#enabled: #enableChannel
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   883
		#submenu: 
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   884
		 #(#Menu
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
   885
                    
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   886
		     #(
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   887
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   888
			  #label: 'New'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   889
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   890
			  #value: #doNew
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   891
			  #activeHelpKey: #fileNew
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   892
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   893
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   894
			  #label: '-'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   895
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   896
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   897
			  #label: 'Load...'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   898
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   899
			  #value: #doLoad
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   900
			  #activeHelpKey: #fileLoad
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   901
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   902
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   903
			  #label: 'Load Subspec...'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   904
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   905
			  #value: #doLoadSubspec
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   906
			  #activeHelpKey: #fileLoadSubspec
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   907
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   908
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   909
			  #label: '-'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   910
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   911
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   912
			  #label: 'Save'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   913
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   914
			  #value: #doSave
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   915
			  #activeHelpKey: #fileSave
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   916
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   917
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   918
			  #label: 'Save As...'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   919
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   920
			  #value: #doSaveAs
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   921
			  #activeHelpKey: #fileSaveAs
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   922
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   923
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   924
			  #label: 'Define Class And Selector...'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   925
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   926
			  #value: #doDefineClassAndSelector
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   927
			  #activeHelpKey: #fileSaveAs
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   928
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   929
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   930
			  #label: '-'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   931
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   932
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   933
			  #label: 'Pick A Window Spec...'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   934
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   935
			  #value: #doPickAView
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   936
			  #activeHelpKey: #filePickAnInterface
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   937
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   938
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   939
			  #label: '-'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   940
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   941
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   942
			  #label: 'Show Window Spec'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   943
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   944
			  #value: #doWindowSpec
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   945
			  #activeHelpKey: #fileShowWindowSpec
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   946
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   947
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   948
			  #label: 'Browse Class'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   949
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   950
			  #value: #doBrowseClass
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   951
			  #activeHelpKey: #fileBrowseClass
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   952
			  #enabled: #hasSpecClass
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   953
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   954
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   955
			  #label: 'Browse Aspect Methods'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   956
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   957
			  #value: #doBrowseAspectMethods
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   958
			  #activeHelpKey: #fileBrowseAspectMethods
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   959
			  #enabled: #hasSpecClass
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   960
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   961
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   962
			  #label: '-'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   963
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   964
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   965
			  #label: 'Exit'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   966
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   967
			  #value: #closeRequest
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   968
			  #activeHelpKey: #fileExit
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   969
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   970
		    ) nil
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   971
		    nil
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   972
		)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   973
	    )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   974
	     #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   975
		#label: 'Edit'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   976
		#translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   977
		#activeHelpKey: #edit
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   978
		#submenuChannel: #menuEdit
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   979
	    )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   980
	     #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   981
		#label: 'Align'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   982
		#translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   983
		#activeHelpKey: #align
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   984
		#submenuChannel: #menuAlign
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   985
	    )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   986
	     #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   987
		#label: 'Generate'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   988
		#translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   989
		#activeHelpKey: #generate
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   990
		#submenu: 
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   991
		 #(#Menu
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   992
                    
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   993
		     #(
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   994
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   995
			  #label: 'Aspect Methods'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   996
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   997
			  #value: #doGenerateAspectMethods
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   998
			  #activeHelpKey: #generateAspectMethods
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
   999
			  #enabled: #hasSpecClass
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1000
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1001
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1002
			  #label: 'Menu Stub Methods'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1003
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1004
			  #value: #doGenerateMenuMethods
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1005
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1006
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1007
			  #label: '-'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1008
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1009
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1010
			  #label: 'Hook Methods'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1011
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1012
			  #value: #doGenerateHookMethods
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1013
			  #activeHelpKey: #generateHookMethods
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1014
			  #enabled: #hasSpecClass
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1015
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1016
		    ) nil
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1017
		    nil
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1018
		)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1019
	    )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1020
	     #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1021
		#label: 'Test'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1022
		#translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1023
		#activeHelpKey: #test
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1024
		#submenu: 
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1025
		 #(#Menu
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1026
                    
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1027
		     #(
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1028
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1029
			  #label: 'Start Application'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1030
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1031
			  #value: #doStartApplication
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1032
			  #activeHelpKey: #testStartApplication
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1033
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1034
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1035
			  #label: '-'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1036
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1037
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1038
			  #label: 'Geometry Test Mode'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1039
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1040
			  #activeHelpKey: #testGeometryTestMode
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1041
			  #indication: #testMode:
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1042
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1043
		    ) nil
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1044
		    nil
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1045
		)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1046
	    )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1047
	     #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1048
		#label: 'Settings'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1049
		#translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1050
		#activeHelpKey: #settings
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1051
		#submenu: 
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1052
		 #(#Menu
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1053
                    
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1054
		     #(
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1055
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1056
			  #label: 'Canvas'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1057
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1058
			  #activeHelpKey: #settingsCanvas
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1059
			  #indication: #painterShown
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1060
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1061
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1062
			  #label: 'Gallery'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1063
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1064
			  #activeHelpKey: #settingsGallery
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1065
			  #indication: #galleryShown
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1066
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1067
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1068
			  #label: '-'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1069
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1070
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1071
			  #label: 'Redefine Aspect Methods'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1072
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1073
			  #activeHelpKey: #settingsRedefineAspectMethods
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1074
			  #enabled: #hasSpecClass
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1075
			  #indication: #redefineAspectMethods:
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1076
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1077
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1078
			  #label: 'Aspects As Instances'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1079
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1080
			  #activeHelpKey: #settingsAspectsAsInstances
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1081
			  #enabled: #hasSpecClass
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1082
			  #indication: #generateAspectsAsInstanceVariables:
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1083
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1084
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1085
			  #label: '-'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1086
		      )
1032
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1087
"/                       #(#MenuItem
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1088
"/                          #label: 'Fonts'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1089
"/                          #submenuChannel: #menuFont
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: '-'
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
  1093
"/                      )
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1094
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1095
			  #label: 'Undo Manager...'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1096
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1097
			  #value: #openUndoMenu
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1098
			  #activeHelpKey: #settingsUndoManager
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1099
			  #enabled: #hasUndoHistory
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1100
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1101
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1102
			  #label: 'Grid Manager...'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1103
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1104
			  #value: #doDefineGrid
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1105
			  #activeHelpKey: #settingsGridManager
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1106
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1107
		    ) nil
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1108
		    nil
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1109
		)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1110
	    )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1111
	     #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1112
		#label: 'History'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1113
		#translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1114
		#activeHelpKey: #history
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1115
		#submenuChannel: #menuHistory
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1116
	    )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1117
	     #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1118
		#label: 'Help'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1119
		#translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1120
		#startGroup: #right
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1121
		#activeHelpKey: #help
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1122
		#submenu: 
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1123
		 #(#Menu
564
df1f1e84d94a add menu added
tz
parents: 547
diff changeset
  1124
                    
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1125
		     #(
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1126
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1127
			  #label: 'Tutorial'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1128
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1129
			  #value: #openHTMLDocument:
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1130
			  #activeHelpKey: #helpTutorial
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1131
			  #argument: 'tools/uipainter/TOP.html'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1132
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1133
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1134
			  #label: '-'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1135
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1136
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1137
			  #label: 'Functions'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1138
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1139
			  #value: #openHTMLDocument:
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1140
			  #activeHelpKey: #helpFunctions
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1141
			  #argument: 'tools/uipainter/Functions.html'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1142
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1143
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1144
			  #label: 'Examples'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1145
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1146
			  #value: #openHTMLDocument:
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1147
			  #activeHelpKey: #helpExamples
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1148
			  #argument: 'tools/uipainter/Examples.html'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1149
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1150
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1151
			  #label: '-'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1152
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1153
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1154
			  #label: 'Help Tool'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1155
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1156
			  #value: #openHTMLDocument:
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1157
			  #activeHelpKey: #helpHelpTool
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1158
			  #argument: 'tools/uipainter/HelpTool.html'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1159
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1160
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1161
			  #label: 'Layout Tool'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1162
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1163
			  #value: #openHTMLDocument:
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1164
			  #activeHelpKey: #helpLayoutTool
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1165
			  #argument: 'tools/uipainter/LayoutTool.html'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1166
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1167
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1168
			  #label: '-'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1169
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1170
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1171
			  #label: 'Selected Widget'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1172
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1173
			  #value: #doOpenWidgetDocumentation
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1174
			  #activeHelpKey: #helpSelectedWidget
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1175
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1176
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1177
			  #label: '-'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1178
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1179
		       #(#MenuItem
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1180
			  #label: 'Show Help Texts'
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1181
			  #translateLabel: true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1182
			  #activeHelpKey: #helpShowHelp
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1183
			  #indication: #showingHelp:
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1184
		      )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1185
		    ) nil
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1186
		    nil
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1187
		)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1188
	    )
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1189
	  ) nil
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1190
	  nil
564
df1f1e84d94a add menu added
tz
parents: 547
diff changeset
  1191
      )
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
  1192
966
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  1193
    "Modified: / 23.8.1998 / 16:09:22 / cg"
564
df1f1e84d94a add menu added
tz
parents: 547
diff changeset
  1194
!
df1f1e84d94a add menu added
tz
parents: 547
diff changeset
  1195
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1196
menuAlign
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1197
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1198
     by the MenuEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1199
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
  1200
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1201
     the MenuEditor may not be able to read the specification."
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1202
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1203
    "
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1204
     MenuEditor new openOnClass:UIPainter andSelector:#menuAlign
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1205
     (Menu new fromLiteralArrayEncoding:(UIPainter menuAlign)) startUp
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  1206
    "
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  1207
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  1208
    <resource: #menu>
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  1209
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
       #(#Menu
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  1213
          
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1214
	   #(
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1215
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1216
		#label: 'Left'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1217
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1218
		#value: #alignSelectionLeft
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1219
		#activeHelpKey: #alignSelectionLeft
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1220
		#enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1221
		#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
  1222
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1223
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1224
		#label: 'Right'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1225
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1226
		#value: #alignSelectionRight
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1227
		#activeHelpKey: #alignSelectionRight
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1228
		#enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1229
		#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
  1230
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1231
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1232
		#label: 'Left & Right'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1233
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1234
		#value: #alignSelectionLeftAndRight
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1235
		#activeHelpKey: #alignSelectionLeftAndRight
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1236
		#enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1237
		#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
  1238
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1239
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1240
		#label: 'Top'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1241
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1242
		#value: #alignSelectionTop
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1243
		#activeHelpKey: #alignSelectionTop
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1244
		#enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1245
		#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
  1246
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1247
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1248
		#label: 'Bottom'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1249
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1250
		#value: #alignSelectionBottom
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1251
		#activeHelpKey: #alignSelectionBottom
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1252
		#enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1253
		#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
  1254
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1255
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1256
		#label: 'Top & Bottom'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1257
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1258
		#value: #alignSelectionTopAndBottom
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1259
		#activeHelpKey: #alignSelectionTopAndBottom
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1260
		#enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1261
		#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
  1262
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1263
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1264
		#label: '-'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1265
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1266
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1267
		#label: 'Centered Horizontal'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1268
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1269
		#value: #alignSelectionCenterHor
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1270
		#activeHelpKey: #alignSelectionCenterHor
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1271
		#enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1272
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1273
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1274
		#label: 'Centered Vertical'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1275
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1276
		#value: #alignSelectionCenterVer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1277
		#activeHelpKey: #alignSelectionCenterVer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1278
		#enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1279
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1280
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1281
		#label: '-'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1282
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1283
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1284
		#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
  1285
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1286
		#value: #centerSelectionHor
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1287
		#activeHelpKey: #centerSelectionHor
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1288
		#enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1289
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1290
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1291
		#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
  1292
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1293
		#value: #centerSelectionVer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1294
		#activeHelpKey: #centerSelectionVer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1295
		#enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1296
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1297
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1298
		#label: '-'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1299
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1300
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1301
		#label: 'Spread Horizontal'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1302
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1303
		#value: #spreadSelectionHor
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1304
		#activeHelpKey: #spreadSelectionHor
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1305
		#enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1306
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1307
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1308
		#label: 'Spread Vertical'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1309
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1310
		#value: #spreadSelectionVer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1311
		#activeHelpKey: #spreadSelectionVer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1312
		#enabled: #canMoveOrAlignSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1313
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1314
	  ) nil
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1315
	  nil
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1316
      )
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
  1317
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
  1318
    "Modified: / 20.5.1998 / 01:42:57 / cg"
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1319
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1320
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1321
menuEdit
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1322
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1323
     by the MenuEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1324
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  1325
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1326
     the MenuEditor may not be able to read the specification."
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1327
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1328
    "
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1329
     MenuEditor new openOnClass:UIPainter andSelector:#menuEdit
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1330
     (Menu new fromLiteralArrayEncoding:(UIPainter menuEdit)) startUp
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
    <resource: #menu>
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1334
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
       #(#Menu
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1338
          
1230
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1339
           #(
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1340
             #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1341
                #label: 'Undo'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1342
                #translateLabel: true
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1343
                #nameKey: #undo
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1344
                #value: #undoLast
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1345
                #activeHelpKey: #editUndo
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1346
                #enabled: #hasUndoHistory
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1347
                #shortcutKeyCharacter: #Cmdu
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1348
            )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1349
             #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1350
                #label: '-'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1351
            )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1352
             #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1353
                #label: 'Cut'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1354
                #translateLabel: true
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1355
                #value: #deleteSelection
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1356
                #activeHelpKey: #editCut
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1357
                #enabled: #valueOfCanCut
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1358
                #shortcutKeyCharacter: #Cut
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1359
            )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1360
             #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1361
                #label: 'Copy'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1362
                #translateLabel: true
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1363
                #value: #copySelection
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1364
                #activeHelpKey: #editCopy
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1365
                #enabled: #valueOfCanCopy
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1366
                #shortcutKeyCharacter: #Copy
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1367
            )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1368
             #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1369
                #label: 'Paste'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1370
                #translateLabel: true
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1371
                #value: #pasteBuffer
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1372
                #activeHelpKey: #pasteBuffer
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1373
                #enabled: #valueOfCanPaste
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1374
                #shortcutKeyCharacter: #Paste
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1375
            )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1376
             #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1377
                #label: 'Delete'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1378
                #translateLabel: true
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1379
                #value: #deleteTotalSelection
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1380
                #activeHelpKey: #editDelete
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1381
                #enabled: #valueOfCanCut
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1382
                #shortcutKeyCharacter: #Delete
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1383
            )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1384
             #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1385
                #label: '-'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1386
            )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1387
             #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1388
                #label: 'Paste With Layout'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1389
                #translateLabel: true
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1390
                #value: #pasteWithLayout
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1391
                #activeHelpKey: #pasteWithLayout
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1392
                #enabled: #valueOfCanPasteWithKeepingLayout
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1393
            )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1394
             #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1395
                #label: '-'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1396
            )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1397
             #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1398
                #label: 'Move'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1399
                #translateLabel: true
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1400
                #enabled: #canMoveSelection
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1401
                #submenuChannel: #menuMove
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1402
            )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1403
             #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1404
                #label: 'Dimension'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1405
                #translateLabel: true
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1406
                #enabled: #hasSelection
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1407
                #submenu: 
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1408
                 #(#Menu
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1409
                    
1230
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1410
                     #(
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1411
                       #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1412
                          #label: 'Default Extent'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1413
                          #translateLabel: true
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1414
                          #value: #setToDefaultExtent
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1415
                          #activeHelpKey: #editDimensionDefaultExtent
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1416
                          #enabled: #canMoveOrAlignSelection
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1417
                      )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1418
                       #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1419
                          #label: 'Default Width'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1420
                          #translateLabel: true
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1421
                          #value: #setToDefaultWidth
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1422
                          #activeHelpKey: #editDimensionDefaultWidth
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1423
                          #enabled: #canMoveOrAlignSelection
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1424
                      )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1425
                       #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1426
                          #label: 'Default Height'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1427
                          #translateLabel: true
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1428
                          #value: #setToDefaultHeight
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1429
                          #activeHelpKey: #editDimensionDefaultHeight
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1430
                          #enabled: #canMoveOrAlignSelection
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1431
                      )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1432
                       #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1433
                          #label: '-'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1434
                      )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1435
                       #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1436
                          #label: 'Copy Layout'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1437
                          #translateLabel: true
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1438
                          #value: #copyLayout
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1439
                          #activeHelpKey: #editDimensionCopyLayout
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1440
                          #enabled: #hasSingleSelection
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1441
                      )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1442
                       #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1443
                          #label: 'Paste Layout'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1444
                          #translateLabel: true
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1445
                          #value: #pasteLayout
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1446
                          #activeHelpKey: #editDimensionPasteLayout
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1447
                          #enabled: #canMoveOrAlignSelection
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1448
                      )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1449
                       #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1450
                          #label: 'Exchange Layouts'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1451
                          #translateLabel: true
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1452
                          #value: #exchangeLayouts
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1453
                          #activeHelpKey: #editDimensionExchangeLayouts
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1454
                          #enabled: #canExchangeSelectionLayouts
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1455
                      )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1456
                       #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1457
                          #label: '-'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1458
                      )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1459
                       #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1460
                          #label: 'Copy Extent'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1461
                          #translateLabel: true
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1462
                          #value: #copyExtent
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1463
                          #activeHelpKey: #editDimensionCopyExtent
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1464
                          #enabled: #hasSingleSelection
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1465
                      )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1466
                       #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1467
                          #label: 'Paste Extent'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1468
                          #translateLabel: true
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1469
                          #value: #pasteExtent
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1470
                          #activeHelpKey: #editDimensionPasteExtent
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1471
                          #enabled: #canMoveOrAlignSelection
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1472
                      )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1473
                       #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1474
                          #label: 'Paste Width'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1475
                          #translateLabel: true
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1476
                          #value: #pasteWidth
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1477
                          #activeHelpKey: #editDimensionPasteWidth
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1478
                          #enabled: #canMoveOrAlignSelection
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1479
                      )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1480
                       #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1481
                          #label: 'Paste Height'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1482
                          #translateLabel: true
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1483
                          #value: #pasteHeight
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1484
                          #activeHelpKey: #editDimensionPasteHeight
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1485
                          #enabled: #canMoveOrAlignSelection
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1486
                      )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1487
                    ) nil
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1488
                    nil
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1489
                )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1490
            )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1491
             #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1492
                #label: '-'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1493
            )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1494
             #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1495
                #label: 'Open Widget Documentation'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1496
                #translateLabel: true
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1497
                #value: #doOpenWidgetDocumentation
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1498
                #activeHelpKey: #editOpenSpecDocumentation
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1499
            )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1500
             #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1501
                #label: '-'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1502
            )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1503
             #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1504
                #label: 'Inspect View'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1505
                #translateLabel: true
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1506
                #value: #doInspectView
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1507
                #activeHelpKey: #editInspectView
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1508
                #enabled: #hasOneSelectionOtherThanCanvas
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1509
            )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1510
             #(#MenuItem
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1511
                #label: 'Inspect Spec'
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1512
                #translateLabel: true
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1513
                #value: #doInspectSpec
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1514
                #activeHelpKey: #editInspectSpec
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1515
            )
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1516
          ) nil
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1517
          nil
498
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1518
      )
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
  1519
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
  1520
    "Modified: / 20.5.1998 / 01:46:00 / cg"
498
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1521
!
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1522
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1523
menuMove
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1524
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1525
     by the MenuEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1526
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  1527
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1528
     the MenuEditor may not be able to read the specification."
498
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1529
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1530
    "
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1531
     MenuEditor new openOnClass:UIPainter andSelector:#menuMove
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1532
     (Menu new fromLiteralArrayEncoding:(UIPainter menuMove)) startUp
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
    <resource: #menu>
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1536
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1537
    ^
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1538
     
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1539
       #(#Menu
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1540
          
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1541
	   #(
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1542
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1543
		#label: 'Up'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1544
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1545
		#value: #doStepUp
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1546
		#activeHelpKey: #moveWidgetUp
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1547
		#enabled: #canChangeOrderInContainer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1548
		#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
  1549
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1550
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1551
		#label: 'Down'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1552
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1553
		#value: #doStepDown
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1554
		#activeHelpKey: #moveWidgetDown
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1555
		#enabled: #canChangeOrderInContainer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1556
		#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
  1557
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1558
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1559
		#label: 'Into'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1560
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1561
		#value: #doStepIn
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1562
		#activeHelpKey: #moveWidgetInto
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1563
		#enabled: #canMoveSelectionIntoContainer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1564
		#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
  1565
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1566
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1567
		#label: 'Out'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1568
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1569
		#value: #doStepOut
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1570
		#activeHelpKey: #moveWidgetOut
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1571
		#enabled: #canMoveSelectionOutOfContainer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1572
		#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
  1573
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1574
	  ) nil
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1575
	  nil
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1576
      )
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1577
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1578
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1579
menuToolbar
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1580
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1581
     by the MenuEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1582
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
  1583
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1584
     the MenuEditor may not be able to read the specification."
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1585
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1586
    "
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1587
     MenuEditor new openOnClass:UIPainter andSelector:#menuToolbar
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1588
     (Menu new fromLiteralArrayEncoding:(UIPainter menuToolbar)) startUp
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
    <resource: #menu>
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1592
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1593
    ^
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1594
     
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1595
       #(#Menu
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1596
          
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1597
	   #(
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1598
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1599
		#label: 'Start'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1600
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1601
		#value: #doStartApplication
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1602
		#activeHelpKey: #testStartApplication
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1603
		#labelImage: #(#ResourceRetriever #Icon #startIcon)
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: ''
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1607
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1608
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1609
		#label: 'New'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1610
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1611
		#value: #doNew
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1612
		#activeHelpKey: #fileNew
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1613
		#labelImage: #(#ResourceRetriever #Icon #newIcon)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1614
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1615
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1616
		#label: 'Load'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1617
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1618
		#value: #doLoad
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1619
		#activeHelpKey: #fileLoad
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1620
		#labelImage: #(#ResourceRetriever #Icon #loadIcon)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1621
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1622
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1623
		#label: 'Save'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1624
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1625
		#value: #doSave
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1626
		#activeHelpKey: #fileSave
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1627
		#labelImage: #(#ResourceRetriever #Icon #saveIcon)
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: ''
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1631
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1632
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1633
		#label: 'Cut'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1634
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1635
		#value: #deleteSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1636
		#activeHelpKey: #editCut
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1637
		#enabled: #valueOfCanCut
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1638
		#labelImage: #(#ResourceRetriever #Icon #cutIcon)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1639
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1640
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1641
		#label: 'Copy'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1642
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1643
		#value: #copySelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1644
		#activeHelpKey: #editCopy
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1645
		#enabled: #valueOfCanCopy
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1646
		#labelImage: #(#ResourceRetriever #Icon #copyIcon)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1647
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1648
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1649
		#label: 'Paste With Layout'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1650
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1651
		#value: #pasteWithLayout
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1652
		#activeHelpKey: #editPaste
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1653
		#enabled: #valueOfCanPasteWithKeepingLayout
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1654
		#labelImage: #(#ResourceRetriever #Icon #pasteIcon)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1655
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1656
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1657
		#label: 'Delete'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1658
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1659
		#value: #deleteTotalSelection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1660
		#activeHelpKey: #editDelete
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1661
		#enabled: #valueOfCanCut
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1662
		#labelImage: #(#ResourceRetriever #Icon #deleteIcon)
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: ''
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1666
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1667
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1668
		#label: 'Move Up'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1669
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1670
		#value: #doStepUp
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1671
		#activeHelpKey: #moveWidgetUp
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1672
		#enabled: #canChangeOrderInContainer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1673
		#labelImage: #(#ResourceRetriever #Icon #upIcon)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1674
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1675
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1676
		#label: 'Move Down'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1677
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1678
		#value: #doStepDown
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1679
		#activeHelpKey: #moveWidgetDown
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1680
		#enabled: #canChangeOrderInContainer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1681
		#labelImage: #(#ResourceRetriever #Icon #downIcon)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1682
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1683
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1684
		#label: 'Move Into'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1685
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1686
		#value: #doStepIn
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1687
		#activeHelpKey: #moveWidgetInto
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1688
		#enabled: #canMoveSelectionIntoContainer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1689
		#labelImage: #(#ResourceRetriever #Icon #downRightIcon)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1690
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1691
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1692
		#label: 'Move Out'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1693
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1694
		#value: #doStepOut
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1695
		#activeHelpKey: #moveWidgetOut
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1696
		#enabled: #canMoveSelectionOutOfContainer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1697
		#labelImage: #(#ResourceRetriever #Icon #leftDownIcon)
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: ''
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1701
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1702
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1703
		#label: 'Canvas'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1704
		#activeHelpKey: #settingsCanvas
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1705
		#indication: #painterShown
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1706
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1707
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1708
		#label: 'Gallery'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1709
		#activeHelpKey: #settingsGallery
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1710
		#indication: #galleryShown
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1711
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1712
	  ) nil
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1713
	  nil
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1714
      )
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1715
!
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1716
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1717
menuToolbar2
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1718
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1719
     by the MenuEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1720
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
  1721
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1722
     the MenuEditor may not be able to read the specification."
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1723
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1724
    "
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1725
     MenuEditor new openOnClass:UIPainter andSelector:#menuToolbar2
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1726
     (Menu new fromLiteralArrayEncoding:(UIPainter menuToolbar2)) startUp
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
    <resource: #menu>
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1730
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1731
    ^
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1732
     
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1733
       #(#Menu
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  1734
          
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1735
	   #(
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1736
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1737
		#label: 'Align Left'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1738
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1739
		#value: #alignSelectionLeft
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1740
		#activeHelpKey: #alignSelectionLeft
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1741
		#labelImage: #(#ResourceRetriever nil #iconAlignL)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1742
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1743
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1744
		#label: 'Align Right'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1745
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1746
		#value: #alignSelectionRight
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1747
		#activeHelpKey: #alignSelectionRight
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1748
		#labelImage: #(#ResourceRetriever nil #iconAlignR)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1749
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1750
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1751
		#label: 'Align Left & Right'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1752
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1753
		#value: #alignSelectionLeftAndRight
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1754
		#activeHelpKey: #alignSelectionLeftAndRight
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1755
		#labelImage: #(#ResourceRetriever nil #iconAlignLR)
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: ''
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1759
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1760
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1761
		#label: 'Align Top'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1762
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1763
		#value: #alignSelectionTop
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1764
		#activeHelpKey: #alignSelectionTop
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1765
		#labelImage: #(#ResourceRetriever nil #iconAlignT)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1766
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1767
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1768
		#label: 'Align Bottom'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1769
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1770
		#value: #alignSelectionBottom
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1771
		#activeHelpKey: #alignSelectionBottom
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1772
		#labelImage: #(#ResourceRetriever nil #iconAlignB)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1773
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1774
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1775
		#label: 'Align Top & Bottom'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1776
		#isButton: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1777
		#value: #alignSelectionTopAndBottom
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1778
		#activeHelpKey: #alignSelectionTopAndBottom
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1779
		#labelImage: #(#ResourceRetriever nil #iconAlignTB)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1780
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1781
	  ) nil
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1782
	  nil
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  1783
      )
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1784
! !
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1785
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  1786
!UIPainter methodsFor:'aspects'!
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  1787
724
7c7fb3f3a927 docu calls added
tz
parents: 721
diff changeset
  1788
aspectFor:aKey
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1789
    "returns the aspect for aKey"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1790
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1791
    ^aspects at:aKey ifAbsent:[ super aspectFor:aKey ]
724
7c7fb3f3a927 docu calls added
tz
parents: 721
diff changeset
  1792
!
7c7fb3f3a927 docu calls added
tz
parents: 721
diff changeset
  1793
565
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  1794
canChangeOrderInContainer
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1795
    "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
  1796
     within their container"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1797
565
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  1798
    ^ builder booleanValueAspectFor:#canChangeOrderInContainer
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  1799
!
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  1800
1230
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1801
canExchangeSelectionLayouts
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1802
    "returns a boolean value holder which is true in case that the selection 
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1803
     consists of exactly 2 components
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1804
     and all widgets in the selection can change its layout through to a move or
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1805
     align operation"
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1806
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1807
    ^ builder booleanValueAspectFor:#canExchangeSelectionLayouts
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1808
!
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1809
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1810
canMoveOrAlignSelection
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1811
    "returns a boolean value holder which is true in case that any selection exists
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1812
     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
  1813
     align operation"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1814
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1815
    ^ builder booleanValueAspectFor:#canMoveOrAlignSelection
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1816
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1817
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  1818
canMoveSelection
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  1819
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1820
    ^self canChangeOrderInContainer value or: [ 
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1821
     self canMoveSelectionOutOfContainer value or: [
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1822
     self canMoveSelectionOutOfContainer value]]
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  1823
!
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  1824
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1825
canMoveSelectionIntoContainer
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1826
    "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
  1827
     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
  1828
     the same container"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1829
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1830
    ^ builder booleanValueAspectFor:#canMoveSelectionIntoContainer
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1831
!
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1832
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1833
canMoveSelectionOutOfContainer
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1834
    "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
  1835
     which is contained within another component"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1836
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1837
    ^ builder booleanValueAspectFor:#canMoveSelectionOutOfContainer
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1838
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1839
118
bc196200ea8b enabled and style
ca
parents: 114
diff changeset
  1840
enableChannel
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1841
    "true if modifications are allowed otherwise running test"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1842
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1843
    ^ self painter enableChannel
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1844
!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1845
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1846
galleryShown
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1847
    "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
  1848
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1849
    |holder|
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1850
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1851
    (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
  1852
	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
  1853
	holder addDependent:self
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1854
    ].
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1855
    ^ holder
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1856
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1857
!
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1858
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1859
hasOneSelectionOtherThanCanvas
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1860
    "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
  1861
     other than the root"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1862
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1863
    ^ builder booleanValueAspectFor:#hasOneSelectionOtherThanCanvas
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1864
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1865
884
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  1866
helpIcon
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  1867
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  1868
    ^Icon helpIcon
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  1869
!
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  1870
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1871
noteBookView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1872
    "returns the notebook view; initialize the tools embedded in the notebook"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1873
1316
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1874
    |noteBook modifiedChannel applBuilder applWindow|
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1875
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1876
    (noteBook := builder bindingAt:#noteBookView) isNil ifTrue:[
1316
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1877
        modifiedChannel := self modifiedChannel.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1878
        noteBook := View new.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1879
        builder aspectAt:#noteBookView put:noteBook.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1880
1314
f22b28597a05 set level of subCanvas'es 'help layout, ...' to 0
ca
parents: 1306
diff changeset
  1881
        layoutTool := UILayoutTool new.
1316
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1882
        layoutTool createBuilder.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1883
        applBuilder := layoutTool builder.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1884
        applWindow  := SimpleView origin:0.0@0.0 corner:1.0@1.0 in:noteBook.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1885
        applWindow level:0.
1314
f22b28597a05 set level of subCanvas'es 'help layout, ...' to 0
ca
parents: 1306
diff changeset
  1886
        layoutTool masterApplication:self.
1316
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1887
        applBuilder window:applWindow.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1888
        applWindow client:layoutTool spec:#windowSpec builder:applBuilder.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1889
        applBuilder window:applWindow.
1314
f22b28597a05 set level of subCanvas'es 'help layout, ...' to 0
ca
parents: 1306
diff changeset
  1890
        layoutTool modifiedHolder:modifiedChannel.
1316
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1891
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1892
        helpTool := UIHelpTool new.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1893
        helpTool createBuilder.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1894
        applBuilder := helpTool builder.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1895
        applWindow  := SimpleView origin:0.0@0.0 corner:1.0@1.0 in:noteBook.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1896
        applWindow level:0.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1897
        helpTool buildFromClass:specClass.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1898
        helpTool masterApplication:self.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1899
        applBuilder window:applWindow.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1900
        applWindow client:helpTool spec:#windowSpec builder:applBuilder.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1901
        applBuilder window:applWindow.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1902
        helpTool modifiedHolder:modifiedChannel.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1903
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1904
        specTool := UISpecificationTool new.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1905
        specTool createBuilder.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1906
        applBuilder := specTool builder.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1907
        applWindow  := SimpleView origin:0.0@0.0 corner:1.0@1.0 in:noteBook.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1908
        specTool masterApplication:self.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1909
        applWindow level:0.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1910
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1911
        applBuilder window:applWindow.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1912
        applWindow client:specTool spec:#windowSpec builder:applBuilder.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1913
        applBuilder window:applWindow.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1914
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  1915
        specTool modifiedHolder:modifiedChannel.
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1916
    ].
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1917
    ^ noteBook
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1918
!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1919
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  1920
painterShown
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1921
    "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
  1922
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1923
    |holder|
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1924
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1925
    (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
  1926
	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
  1927
	holder addDependent:self
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1928
    ].
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1929
    ^ holder
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1930
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1931
!
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  1932
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1933
tabList
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1934
    "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
  1935
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1936
    |holder|
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1937
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1938
    (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
  1939
	builder aspectAt:#tabList put:(holder :=  #(Basics Details Layout) asValue).
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1940
    ].
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1941
    ^ holder
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1942
!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1943
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1944
tabModel
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1945
    "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
  1946
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1947
    |holder|
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1948
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1949
    (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
  1950
	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
  1951
	builder aspectAt:#tabModel put:holder.
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1952
    ].
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  1953
    ^ holder
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1954
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1955
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1956
treeView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1957
    "returns the tree view which holds all widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1958
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1959
    ^ treeView
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  1960
!
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  1961
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  1962
valueOfCanPasteWithKeepingLayout
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  1963
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  1964
    |holder|
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  1965
    (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
  1966
	builder aspectAt:#valueOfCanPasteWithKeepingLayout put:(holder :=  false asValue).
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  1967
    ].
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  1968
    ^ holder
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  1969
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  1970
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  1971
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  1972
! !
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  1973
587
dd545d089d95 Fix typos. Ensure that specClass is a string.
Stefan Vogel <sv@exept.de>
parents: 572
diff changeset
  1974
!UIPainter methodsFor:'building editors'!
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  1975
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  1976
openDataSetColumnEditor
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1977
    "opens a Table Column Editor on current widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  1978
827
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  1979
    |cls loadedFromClass loadedFromSpec editor tableColumnsOrSelector|
824
1d5adf147721 change mechanism for opening the dataset builder (step 2)
tz
parents: 819
diff changeset
  1980
1d5adf147721 change mechanism for opening the dataset builder (step 2)
tz
parents: 819
diff changeset
  1981
    (cls := self resolveName:specClass) isNil ifTrue:[
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1982
	self askForSaving ifFalse: [^self].
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1983
	cls := self resolveName:specClass.
1103
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1984
    ].
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  1985
    self modifiedChannel value ifTrue:[
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1986
	(self confirm:'Accept changes made to spec ?') ifTrue:[
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1987
	    self accept
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1988
	]
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  1989
    ].
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1990
827
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  1991
    loadedFromSpec := loadedFromClass := false.
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  1992
    editor := DataSetBuilder new.
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  1993
    editor masterApplication:self.
824
1d5adf147721 change mechanism for opening the dataset builder (step 2)
tz
parents: 819
diff changeset
  1994
    editor specClass: cls.
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  1995
    editor rowClassName:(self specTool specification rowClassName).
827
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  1996
    ((tableColumnsOrSelector := self specTool specification columnHolder) notNil and: 
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  1997
    [cls class implements: tableColumnsOrSelector]) ifTrue: [
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1998
	editor openModalOnClass: cls andSelector: tableColumnsOrSelector.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  1999
	loadedFromClass := true.
827
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  2000
    ] ifFalse: [       
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2001
	(tableColumnsOrSelector := self specTool specification columns) isNil ifTrue: [
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2002
	    editor openModal
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2003
	] ifFalse: [         
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2004
	    editor openModalOnResourceSpec:tableColumnsOrSelector.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2005
	    loadedFromSpec := true
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2006
	].
827
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  2007
    ].
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  2008
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  2009
    loadedFromClass ifTrue: [
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2010
	self specTool specification columns:nil.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2011
	self specTool specification rowClassName:nil.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2012
	self modifiedChannel value:true.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2013
	self accept.
827
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  2014
    ].
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  2015
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  2016
    (loadedFromSpec not and: [editor hasSaved and:[editor specSelector ~= tableColumnsOrSelector]]) ifTrue:[
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2017
	self specTool specification columnHolder:editor specSelector.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2018
	self modifiedChannel value:true.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2019
	self accept.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2020
	^self
827
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  2021
    ].
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  2022
    loadedFromClass ifFalse: [
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2023
	self specTool specification columns:(editor columns).
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2024
	self specTool specification rowClassName:(editor rowClassName).
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2025
	self modifiedChannel value: editor modified.
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2026
    ].
827
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  2027
824
1d5adf147721 change mechanism for opening the dataset builder (step 2)
tz
parents: 819
diff changeset
  2028
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2029
!
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2030
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2031
openEditMenu
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2032
    "opens a Menu Editor on current widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2033
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2034
    |cls selectorOrMenu editor selectedSpec spec|
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2035
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2036
    (cls := self resolveName:specClass) isNil ifTrue:[
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2037
	self askForSaving ifFalse: [^self].
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2038
	cls := self resolveName:specClass.
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2039
    ].
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2040
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2041
    cls notNil ifTrue:[
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2042
	spec := self specTool specification.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2043
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2044
	self modifiedChannel value ifTrue:[
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2045
	    (self confirm:'Accept changes made to spec ?') ifTrue:[
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2046
		self accept
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2047
	    ]
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2048
	].
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2049
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2050
	(selectorOrMenu := spec menuSelector) notNil ifTrue:[
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2051
	    selectorOrMenu := selectorOrMenu asSymbol
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2052
	] ifFalse:[
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2053
	    "/ cg: q&d hack ...
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2054
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2055
	    (selectedSpec := treeView propertySelected) notNil ifTrue:[
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2056
		Object errorSignal handle:[:ex |
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2057
		    selectorOrMenu := nil.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2058
		] do:[
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2059
		    selectorOrMenu := selectedSpec view asMenu.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2060
		]
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2061
	    ].
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2062
	].
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2063
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2064
	editor := MenuEditor new.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2065
	editor masterApplication:self.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2066
	editor specClass: cls.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2067
	editor useHelpTool: self helpTool. 
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2068
	selectorOrMenu class ~~ Menu
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2069
	    ifTrue:  [editor openModalOnClass:cls andSelector:selectorOrMenu]
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2070
	    ifFalse: [editor openModalOnMenu:selectorOrMenu].
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2071
	self helpTool updateList.
1027
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2072
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2073
"/        editor specSelector ~= selectorOrMenu ifTrue:[
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2074
	    editor hasSaved ifTrue:[
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2075
		spec menuSelector:editor specSelector.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2076
		self modifiedChannel value:true.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2077
		self accept
1027
4121bb68706b show menu in the UI-Painter
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2078
"/            ]
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2079
	].
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2080
    ]
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2081
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2082
    "Modified: / 16.7.1998 / 18:16:42 / cg"
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2083
!
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2084
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2085
openHierarchicalListEditor
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2086
    "opens a Hierarchical List Editor on current widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2087
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2088
    |selector editor spec|
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2089
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2090
    (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
  2091
	self askForSaving ifFalse: [^self]
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2092
    ].
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2093
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2094
    spec := self specTool specification.
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2095
    (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
  2096
	selector := selector asSymbol
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2097
    ].
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
  2098
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2099
    editor := HierarchicalListEditor new.
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2100
    editor masterApplication:self.
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2101
    editor openModalOnClass:specClass andSelector:selector.
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2102
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2103
    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
  2104
	editor hasSaved ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2105
	    spec hierarchicalList:editor specSelector.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2106
	    self modifiedChannel value:true.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2107
	    self accept
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2108
	]
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2109
    ]
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2110
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2111
    "Modified: / 16.7.1998 / 18:15:46 / cg"
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2112
!
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2113
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2114
openSubSpecGUIPainter
609
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2115
    "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
  2116
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2117
    |spec cls meta sel|
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2118
913
12e73e6c57b4 do open building editors after defining first new app class
tz
parents: 892
diff changeset
  2119
    (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
  2120
	self askForSaving ifFalse: [^self]
913
12e73e6c57b4 do open building editors after defining first new app class
tz
parents: 892
diff changeset
  2121
    ]. 
12e73e6c57b4 do open building editors after defining first new app class
tz
parents: 892
diff changeset
  2122
609
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2123
    spec := self specTool specification.
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2124
    cls := spec majorKey.
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2125
    cls isNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2126
	cls := specClass.
609
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2127
    ].
913
12e73e6c57b4 do open building editors after defining first new app class
tz
parents: 892
diff changeset
  2128
    (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
  2129
	spec majorKey isNil ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2130
	    ^ 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
  2131
	].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2132
	^ 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
  2133
    ].
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2134
    sel := spec minorKey.
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2135
    meta := cls class whichClassIncludesSelector:sel.
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2136
    meta isNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2137
	^ 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
  2138
    ].
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2139
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2140
    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
  2141
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2142
!
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2143
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2144
openTabListEditor
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2145
    "opens a Tab List Editor on current widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2146
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2147
    |selector editor spec|
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2148
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2149
    (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
  2150
	self askForSaving ifFalse: [^self]
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2151
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2152
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2153
    spec := self specTool specification.
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2154
    (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
  2155
	ifTrue: [^self warn: 'Cannot open the Tab List Editor on an array!!'].
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2156
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2157
    editor := TabListEditor new.
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2158
    editor masterApplication:self.
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2159
    editor openModalOnClass:specClass andSelector:selector.
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2160
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2161
    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
  2162
	editor hasSaved ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2163
	    spec listSelector:editor specSelector.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2164
	    self modifiedChannel value:true.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2165
	    self accept.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2166
	]
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2167
    ]
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2168
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2169
    "Modified: / 16.7.1998 / 18:15:14 / cg"
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2170
! !
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2171
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2172
!UIPainter methodsFor:'change & update'!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2173
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2174
layoutChanged
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2175
    "called by the painter/canvas whenever the layout of the current selected
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2176
     widget has changed"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2177
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2178
    self isModified ifFalse:[
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2179
        self layoutTool update.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2180
        self clearModifiedFlag
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2181
    ]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2182
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2183
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2184
propertyChanged
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2185
    "called by the painter/canvas whenever the property of the current selected
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2186
     widget has changed"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2187
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2188
    |property spec|
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2189
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2190
    (property := treeView propertySelected) notNil ifTrue:[
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2191
        spec := property spec copy.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2192
        self specTool specification:spec.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2193
        self setViewInLayoutTool:(property view) spec:spec.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2194
        self clearModifiedFlag
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2195
    ] ifFalse:[
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2196
        self layoutTool layoutView notNil ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2197
            self clearModifiedFlag.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2198
            self treeSelection
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2199
        ]
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2200
    ]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2201
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2202
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2203
update:something with:aParameter from:someObject
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2204
    "catches change notifications"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2205
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2206
    |window|
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2207
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2208
    someObject == treeView model ifTrue:[
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2209
	(something == #selection
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2210
	or:[something == #selectionIndex]) ifTrue:[self treeSelection].
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2211
      ^ self
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2212
    ].
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2213
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2214
    someObject == self galleryShown ifTrue:[
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2215
	"/ galleryShown toggle changed
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2216
	window := selectionPanel window.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2217
	(someObject value) ifTrue:[
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2218
	    self raiseUIView:window
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2219
	] ifFalse:[
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2220
	    self hideUIView:window
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2221
	].
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2222
      ^ self
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2223
    ].
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2224
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2225
    someObject == self painterShown ifTrue:[
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2226
	"/ canvasShown toggle changed
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2227
	window := self painter topView.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2228
	(someObject value) ifTrue:[
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2229
	    self raiseUIView:window
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2230
	] ifFalse:[
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2231
	    self hideUIView:window
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2232
	].
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2233
      ^ self
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2234
    ].
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2235
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2236
    "Modified: / 16.7.1998 / 19:09:57 / cg"
884
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2237
!
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2238
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2239
updateChannels
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2240
    "updates the channels"
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2241
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2242
    |canCutOrCopy canPaste clipboard sel treeSelection|
884
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 canMoveOrAlignSelection        value:(treeView canMoveOrAlignSelection).
1230
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2245
    self canExchangeSelectionLayouts    value:(treeView canExchangeSelectionLayouts).
884
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2246
    self canChangeOrderInContainer      value:(treeView canChangeOrderInContainer).
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2247
    self canMoveSelectionIntoContainer  value:(treeView canMoveSelectionIntoContainer).
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2248
    self canMoveSelectionOutOfContainer value:(treeView canMoveSelectionOutOfContainer).
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2249
    self hasOneSelectionOtherThanCanvas value:(treeView hasOneSelectionOtherThanCanvas).
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2250
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2251
    treeView notNil
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2252
    ifTrue:
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2253
    [
1230
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2254
        treeSelection := treeView selection.
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2255
        "/ the top-node cannot be cut, copied or pasted.
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2256
        canCutOrCopy := treeSelection size >= 1 and:[treeSelection first ~~ 1].
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2257
        clipboard := self getSelection.
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2258
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2259
        clipboard isCollection ifTrue:[clipboard notEmpty ifTrue:[sel := clipboard first]]
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2260
                              ifFalse:[sel := clipboard].
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2261
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2262
        canPaste := (sel isKindOf:UISpecification) and: 
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2263
                    [treeSelection size  = 1 
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2264
                    and:[treeSelection first == 1 
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2265
                    or: [self canPasteInto: treeView selectedNode contents view]]]
884
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2266
    ].
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2267
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2268
    self valueOfCanCut value: canCutOrCopy.
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2269
    self valueOfCanCopy value: canCutOrCopy.
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2270
    self valueOfCanPaste value: canPaste.            
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2271
    self valueOfCanPasteWithKeepingLayout value: (canPaste "&  self canKeepLayoutInSelection").
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2272
1063
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2273
"/    self modifiedChannel value: false.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2274
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2275
    "Modified: / 16.7.1998 / 19:13:30 / cg"
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2276
! !
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2277
952
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2278
!UIPainter methodsFor:'defaults'!
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2279
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2280
aboutImage
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2281
    "the image to be displayed in my about-box;
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2282
     If nil is returned, thhe ST/X default image is used."
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2283
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2284
    ^ Image fromFile:'bitmaps/xpmBitmaps/misc_tools/setup_windows.xpm'
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2285
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2286
    "Created: / 13.8.1998 / 20:33:05 / cg"
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2287
! !
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2288
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2289
!UIPainter methodsFor:'event handling'!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2290
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2291
doesNotUnderstand:aMessage
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2292
    "if does not understand incoming messages, detour them to painter"
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2293
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2294
    |painter|
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2295
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2296
    painter := self painter.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2297
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2298
    (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
  2299
	^ aMessage sendTo:painter
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2300
    ].
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2301
    super doesNotUnderstand:aMessage
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2302
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2303
! !
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2304
547
930b3df19305 help menu item aligned to the right
tz
parents: 542
diff changeset
  2305
!UIPainter methodsFor:'help'!
930b3df19305 help menu item aligned to the right
tz
parents: 542
diff changeset
  2306
572
ac2a1dd83d28 open tutorial added
tz
parents: 565
diff changeset
  2307
defaultInfoLabel
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2308
    "returns the default info label"
572
ac2a1dd83d28 open tutorial added
tz
parents: 565
diff changeset
  2309
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2310
    specClass isNil ifTrue: [^'No class and selector defined.'].
877
f31f41b29710 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 852
diff changeset
  2311
    specSelector isNil ifTrue: [^'No selector defined.'].
572
ac2a1dd83d28 open tutorial added
tz
parents: 565
diff changeset
  2312
    ^specClass printString, ' >> ', specSelector
877
f31f41b29710 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 852
diff changeset
  2313
f31f41b29710 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 852
diff changeset
  2314
    "Modified: / 20.6.1998 / 16:49:16 / cg"
297
14db1276218c change the spec;
ca
parents: 295
diff changeset
  2315
! !
14db1276218c change the spec;
ca
parents: 295
diff changeset
  2316
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2317
!UIPainter methodsFor:'private'!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2318
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2319
askForModification
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2320
    "asks for window spec modification"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2321
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2322
    self askForSectionModification.    
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2323
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2324
    (modified or: [self painter isModified or: [self helpTool modified]])
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2325
    ifTrue:
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2326
    [
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2327
	((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
  2328
	    noText:(resources string:'Cancel');
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2329
	    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
  2330
	    showAtPointer;
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2331
	    accepted) ifFalse: [^false].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2332
	modified := false.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2333
	self painter resetModification
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2334
    ].
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2335
    ^true
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
  2336
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
  2337
    "Modified: / 20.5.1998 / 02:03:16 / cg"
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2338
!
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2339
808
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2340
askForSaving
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2341
    "asks for defining an application class"
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2342
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2343
    self askForSectionModification.    
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2344
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2345
    ((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
  2346
	noText:'Cancel';
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2347
	yesText:'Define';
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2348
	showAtPointer;
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2349
	accepted) ifFalse: [^false].
808
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2350
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2351
    self doSave.
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2352
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2353
    ^true
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2354
!
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2355
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2356
askForSectionModification
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2357
    "asks for section modification in the notebook"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2358
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2359
    self isModified ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2360
	(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
  2361
	    self accept
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2362
	] ifFalse: [
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2363
	    self cancel
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2364
	]
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2365
    ]
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2366
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2367
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2368
checkClassAndSelector
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2369
    "checks for class & superclass"
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2370
1211
53cfc272acc9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1204
diff changeset
  2371
    |superclass cls|
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2372
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2373
    specClass isNil ifTrue:[^ false].
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2374
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2375
    cls := self resolveName:specClass.
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 isNil ifTrue:[
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2378
	superclass := self resolveName:specSuperclass.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2379
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2380
	superclass isNil ifTrue:[
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2381
	    self warn:'No class named ' , specSuperclass , ' exists!!'.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2382
	    ^ false.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2383
	].
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2384
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2385
	(self confirm:'Create class ' , specClass asBoldText, '?') ifTrue:[
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2386
	    cls := superclass 
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2387
			subclass:(specClass asSymbol)
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2388
			instanceVariableNames:''
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2389
			classVariableNames:''
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2390
			poolDictionaries:''
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2391
			category:'Applications'.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2392
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2393
	    cls name ~= specClass ifTrue:[
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2394
		self information:'Created new class is ' , cls name.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2395
		specClass := cls name
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2396
	    ].
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2397
	    ^ true.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2398
	].
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2399
	^ false.
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2400
    ].
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2401
    cls isBehavior ifFalse:[
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2402
	self warn:'A global named ' , specClass , ' exists, but it is no class.'.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2403
	^ false.
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2404
    ].
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2405
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2406
    specSuperclass isBehavior ifFalse:[
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2407
	specSuperclass isEmpty ifFalse:[
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2408
	    superclass := self resolveName:specSuperclass
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2409
	] ifTrue:[
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2410
	    specSuperclass := nil.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2411
	]
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2412
    ] ifTrue:[
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2413
	superclass := specSuperclass
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2414
    ].
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2415
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2416
    specSuperclass notNil ifTrue:[
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2417
	superclass isNil ifTrue:[
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2418
	    self warn:'No class named ' , specSuperclass , ' exists!!'.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2419
	    ^ false.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2420
	].
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2421
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2422
	(cls isSubclassOf:superclass) ifFalse:[
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2423
	    self information:('A global named ' , specClass , ' exists,\' ,
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2424
			      'but is not a subclass of ' , superclass name , '.\\' ,
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2425
			      'Check and try again if that is not what you want.') withCRs.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2426
	]
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2427
    ].
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2428
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2429
    superclass isNil ifTrue:[
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2430
	cls notNil ifTrue:[
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2431
	    specSuperclass := cls superclass name
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2432
	]
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2433
    ].
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2434
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2435
    ^ true
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2436
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2437
    "Modified: 12.8.1997 / 23:39:10 / cg"
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2438
!
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2439
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2440
hideUIView:aView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2441
    "hides the view which is an application or top view"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2442
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2443
    aView beIndependent.
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2444
    aView unmap.
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2445
!
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2446
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2447
raiseTabView
1316
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  2448
    |appl|
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2449
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2450
    self isLayoutToolSelected ifTrue:[
1316
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  2451
        helpTool   window unmap.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  2452
        specTool   window unmap.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  2453
        layoutTool window realize.
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2454
    ] ifFalse:[
1306
66252dfdd14c hack for tabable (becomes better)
ca
parents: 1273
diff changeset
  2455
        self isHelpToolSelected ifTrue:[
1316
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  2456
            layoutTool window unmap.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  2457
            specTool   window unmap.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  2458
            helpTool   window realize.
1306
66252dfdd14c hack for tabable (becomes better)
ca
parents: 1273
diff changeset
  2459
        ] ifFalse:[
1316
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  2460
            specTool selection:tabSelection.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  2461
            helpTool   window unmap.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  2462
            layoutTool window unmap.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  2463
            specTool   window realize.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  2464
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  2465
"/            specTool selection:tabSelection.
1306
66252dfdd14c hack for tabable (becomes better)
ca
parents: 1273
diff changeset
  2466
        ]
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2467
    ]
1306
66252dfdd14c hack for tabable (becomes better)
ca
parents: 1273
diff changeset
  2468
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2469
!
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2470
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2471
raiseUIView:aView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2472
    "raise the view which is an application or top view"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2473
1193
ada18c876301 partners must be remapped (at old position)
Claus Gittinger <cg@exept.de>
parents: 1192
diff changeset
  2474
    aView remap.
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2475
    aView bePartner.
177
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
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2478
resourceMessage: aString
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2479
    "reads the specClass and the specSelector by evaluating aString"
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2480
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2481
    (aString notNil and: [self askForModification]) 
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2482
    ifTrue:
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2483
    [            
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2484
	|msg cls sel|
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2485
	msg := aString asCollectionOfWords.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2486
	(msg size == 2 and:
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2487
	[(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
  2488
	ifTrue:
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2489
	[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2490
	    self specClass:cls.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2491
	    specSuperclass := cls superclass name.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2492
	    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
  2493
	    ^true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2494
	]
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2495
    ].
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2496
    ^false
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2497
!
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2498
177
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2499
setClass:cls selector:selector
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2500
    "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
  2501
177
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2502
    |clsName superClassName|
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2503
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2504
    clsName := cls name.
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2505
    superClassName := cls superclass name.
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2506
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2507
    (self aspectFor:#classNameChannel) value:clsName.
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2508
    (self aspectFor:#methodNameChannel) value:(selector ? '').
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2509
    (self aspectFor:#superclassNameChannel) value:superClassName.
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2510
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2511
    self painter 
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2512
	    className:clsName 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2513
	    superclassName:superClassName
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2514
	    selector:(selector ? '').
177
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2515
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2516
    self specClass:clsName.
177
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2517
    specSelector := (selector ? '').
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2518
    specSuperclass := superClassName.
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  2519
587
dd545d089d95 Fix typos. Ensure that specClass is a string.
Stefan Vogel <sv@exept.de>
parents: 572
diff changeset
  2520
    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
  2521
	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
  2522
	self updateInfoLabel
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  2523
    ].
587
dd545d089d95 Fix typos. Ensure that specClass is a string.
Stefan Vogel <sv@exept.de>
parents: 572
diff changeset
  2524
dd545d089d95 Fix typos. Ensure that specClass is a string.
Stefan Vogel <sv@exept.de>
parents: 572
diff changeset
  2525
    "Modified: / 5.2.1998 / 09:44:58 / stefan"
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2526
!
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2527
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2528
setViewInLayoutTool:aView spec:aSpec
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2529
    "sets view for layout tool"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2530
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2531
    |type|
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2532
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2533
    self painter topView == aView ifTrue:[
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  2534
	type := #Extent
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2535
    ].
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2536
    self layoutTool layoutView:aView type:type spec:aSpec
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2537
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2538
!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2539
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2540
specClass:aClass
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2541
    "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
  2542
dd545d089d95 Fix typos. Ensure that specClass is a string.
Stefan Vogel <sv@exept.de>
parents: 572
diff changeset
  2543
    specClass := aClass isBehavior ifTrue:[aClass name]
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2544
                                   ifFalse:[aClass].
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  2545
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  2546
    self helpTool buildFromClass:specClass.    
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  2547
    self helpTool updateList.
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2548
    self clearModifiedFlag. 
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  2549
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2550
! !
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2551
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2552
!UIPainter methodsFor:'private tools'!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2553
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2554
helpTool
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2555
    "returns the help tool"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2556
1316
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  2557
    helpTool isNil ifTrue:[self noteBookView].
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  2558
  ^ helpTool
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2559
!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2560
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2561
layoutTool
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2562
    "returns the layout tool"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2563
1316
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  2564
    layoutTool isNil ifTrue:[self noteBookView].
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  2565
  ^ layoutTool
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2566
!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2567
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2568
painter
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2569
    "returns the canvas view"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2570
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2571
    ^ treeView canvas
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2572
!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2573
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2574
specTool
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2575
    "returns the spec tool"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2576
1316
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  2577
    specTool isNil ifTrue:[self noteBookView].
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  2578
  ^ specTool
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2579
! !
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2580
166
cd5699643975 add tools: layout and specification tool
ca
parents: 161
diff changeset
  2581
!UIPainter methodsFor:'queries'!
cd5699643975 add tools: layout and specification tool
ca
parents: 161
diff changeset
  2582
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2583
hasSpecClass
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2584
    "answers whether an application class is defined"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2585
328
0e8a4296dec1 add DataSetBuilder
ca
parents: 321
diff changeset
  2586
    ^ (self resolveName:specClass) notNil
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2587
!
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2588
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2589
hasSpecClassAndSelector
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2590
    "answers whether an application class and a selector under which
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2591
     the window spec is stored is defined"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2592
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2593
    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
  2594
	^ self hasSpecClass
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2595
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2596
    ^ false
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2597
!
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2598
166
cd5699643975 add tools: layout and specification tool
ca
parents: 161
diff changeset
  2599
isHelpToolSelected
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2600
    "answers whether the current selected section in the noteBook is the Help Tool"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2601
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2602
    ^ tabSelection = UIHelpTool label
166
cd5699643975 add tools: layout and specification tool
ca
parents: 161
diff changeset
  2603
!
cd5699643975 add tools: layout and specification tool
ca
parents: 161
diff changeset
  2604
cd5699643975 add tools: layout and specification tool
ca
parents: 161
diff changeset
  2605
isLayoutToolSelected
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2606
    "answers whether the current selected section in the noteBook is the Layout Tool"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2607
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2608
    ^ tabSelection = UILayoutTool label
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2609
!
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2610
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2611
isModified
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2612
    "answers whether the current window spec or a layout is modified"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2613
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2614
    ^ self modifiedChannel value
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2615
!
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2616
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2617
isPainterEnabled
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2618
    "answers whether I am running in test mode"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2619
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2620
    ^ self painter enabled
166
cd5699643975 add tools: layout and specification tool
ca
parents: 161
diff changeset
  2621
! !
cd5699643975 add tools: layout and specification tool
ca
parents: 161
diff changeset
  2622
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2623
!UIPainter methodsFor:'selection'!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2624
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2625
tabSelection
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2626
    "returns the label of the current section in the notebook"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2627
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2628
    ^ tabSelection
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2629
!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2630
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2631
tabSelection:something
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2632
    "called whenever the section of the notebook has changed"
351
7cb9f9c9a872 more checks
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
  2633
7cb9f9c9a872 more checks
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
  2634
    |whatToDo|
7cb9f9c9a872 more checks
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
  2635
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2636
    (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
  2637
	^ self
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2638
    ].
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2639
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2640
    self isModified ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2641
	whatToDo := DialogBox 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2642
			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
  2643
			labels:#('Cancel' 'Ignore' 'Accept')
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2644
			default:3.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2645
	whatToDo isNil ifTrue:[^self].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2646
	whatToDo == true ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2647
	    self accept
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2648
	] ifFalse:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2649
	    self cancel
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2650
	]
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2651
    ].
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2652
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2653
    tabSelection := something.
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2654
    self raiseTabView.
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2655
    self cancel.
351
7cb9f9c9a872 more checks
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
  2656
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2657
!
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2658
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2659
treeSelection
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2660
    "called whenever the selection of the treeview has changed"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2661
890
dac91d5af289 unused local vars removed
tz
parents: 889
diff changeset
  2662
    |view list spec slices size property tabComponent|
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2663
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2664
    self isModified ifTrue:[
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2665
        (self confirm:'Accept modifications in section ' , tabSelection printString asBoldText, '?') ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2666
            self accept
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2667
        ]
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2668
    ].
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2669
281
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  2670
    treeView isCanvasSelected ifTrue:[
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2671
        spec := treeView canvasSpec.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2672
        view := self painter topView.
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2673
    ] ifFalse:[
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2674
        (property := treeView propertySelected) notNil ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2675
            treeView canResizeSelectedWidget ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2676
                view := property view.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2677
            ].
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2678
            spec := property spec copy.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2679
        ]
281
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  2680
    ].
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2681
    tabComponent := builder componentAt:#noteBook.
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2682
    self setViewInLayoutTool:view spec:spec.
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  2683
    self specTool specification:spec.
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2684
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2685
    spec notNil ifTrue:[
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2686
        self helpTool helpKey:(spec activeHelpKey).
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2687
        slices := spec class slices.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2688
        size   := slices size.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2689
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2690
        view notNil ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2691
            self treeView isCanvasSelected 
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2692
            ifFalse:
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2693
            [
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2694
                list := Array new:(size + 2).
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2695
                list at:(size + 2) put:(UILayoutTool label).
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2696
            ]
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2697
            ifTrue:
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2698
            [
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2699
                list := Array new:(size + 1).
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2700
                list at:(size + 1) put:(UILayoutTool label).
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2701
            ].
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2702
        ] ifFalse:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2703
            list := Array new:(size + 1).
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2704
        ].
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2705
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2706
        1 to:size do:[:i| list at:i put:((slices at:i) first asString)].
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2707
        self treeView isCanvasSelected ifFalse: [list at:(size + 1) put:(UIHelpTool label)].
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2708
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2709
        self tabList value:list.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2710
        self showHelp:spec class name for:self.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2711
        tabComponent enabled:true.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2712
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2713
        (tabSelection := tabComponent selection) isNil ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2714
            tabComponent setSelection:(tabSelection := list first)
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2715
        ].
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2716
        self raiseTabView
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2717
    ] ifFalse:[
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2718
        self helpTool helpKey:nil.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2719
        tabComponent enabled:false.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2720
        self defaultInfoLabel.
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2721
    ].
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2722
    self clearModifiedFlag.
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2723
884
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2724
    self updateChannels
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2725
! !
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2726
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2727
!UIPainter methodsFor:'settings'!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2728
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2729
generateAspectsAsInstanceVariables
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2730
    "if on, aspects are held as instance variables;
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2731
     if off (the default), they are kept in the bindings dictionary.
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2732
    "
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2733
    ^ UIPainterView generateAspectsAsInstanceVariables
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2734
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2735
    "Created: / 29.7.1998 / 11:17:59 / cg"
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2736
!
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2737
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2738
generateAspectsAsInstanceVariables:aBoolean
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2739
    "if on, aspects are held as instance variables;
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2740
     if off (the default), they are kept in the bindings dictionary.
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2741
    "
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2742
    ^ UIPainterView generateAspectsAsInstanceVariables:aBoolean
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2743
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2744
    "Created: / 29.7.1998 / 11:18:20 / cg"
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2745
!
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  2746
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2747
redefineAspectMethods
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2748
    "redefine methods yes or no. If a method is defined in super class
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2749
     should the message be reinstalled ?
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2750
    "
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2751
    ^ UIPainterView redefineAspectMethods
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2752
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2753
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2754
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2755
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2756
redefineAspectMethods:aBoolean
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2757
    "redefine methods yes or no. If a method is defined in super class
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2758
     should the message be reinstalled ?
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2759
    "
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2760
    UIPainterView redefineAspectMethods:aBoolean
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2761
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2762
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2763
! !
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2764
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2765
!UIPainter methodsFor:'startup / release'!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2766
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2767
closeRequest
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2768
    "close request"
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2769
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2770
    self askForModification ifFalse:[^self].
133
e12f82d3afb7 popup box caused by a closeRequest with still open
ca
parents: 130
diff changeset
  2771
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2772
    treeView model removeDependent:self.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2773
    self painter release.
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2774
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2775
    selectionPanel notNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2776
	selectionPanel masterApplication:nil.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2777
	selectionPanel closeRequest
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2778
    ].
149
e652608690b1 help ...
ca
parents: 144
diff changeset
  2779
    selectionPanel := nil.
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2780
    treeView       := nil.
149
e652608690b1 help ...
ca
parents: 144
diff changeset
  2781
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2782
    super closeRequest.
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2783
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2784
!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2785
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2786
closeRequestFor:aTopView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2787
    "handles a close request for a specific view"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2788
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2789
    |topView|
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2790
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2791
    (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
  2792
	super closeRequestFor:aTopView
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2793
    ] ifFalse:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2794
	aTopView = selectionPanel window ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2795
	    self galleryShown value:false
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2796
	] ifFalse:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2797
	    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
  2798
		self painterShown value:false
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2799
	    ] ifFalse:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2800
		aTopView closeRequest
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2801
	    ]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2802
	].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2803
	topView raise.
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2804
    ].
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2805
!
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2806
1185
6c14008722e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  2807
loadFromMessage: aMessageString
6c14008722e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  2808
    "loads a window spec by evaluating aMessageString
6c14008722e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  2809
     (which is something like 'fooClass windowSpec')"
6c14008722e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  2810
6c14008722e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  2811
    |readStream aClass aSelector|
6c14008722e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  2812
6c14008722e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  2813
    ((aMessageString size > 0) and: [self askForModification])
6c14008722e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  2814
    ifTrue:[
6c14008722e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  2815
        readStream := aMessageString readStream.
6c14008722e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  2816
        (aClass := Smalltalk at: (readStream upTo: $ ) asSymbol) notNil
6c14008722e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  2817
        ifTrue:[
6c14008722e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  2818
            aSelector :=  readStream upToEnd asSymbol.
6c14008722e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  2819
            self setClass: aClass selector: aSelector.    
6c14008722e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  2820
            (aClass respondsTo:aSelector) ifTrue:[   
6c14008722e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  2821
                self painter setupFromSpec:(aClass perform:aSelector)
6c14008722e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  2822
            ]
6c14008722e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  2823
        ]
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2824
    ]
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2825
!
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2826
345
c4d8f4c74c26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
  2827
openInterface:aSymbol
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2828
    "opens the interface on the selector aSymbol"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2829
1270
8e1a2c6db256 try my bitmaps in package directory
Claus Gittinger <cg@exept.de>
parents: 1247
diff changeset
  2830
    |cls painterView painter topView galleryWindow icon|
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2831
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2832
    modified := false.
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2833
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2834
    aspects := IdentityDictionary new.
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2835
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2836
    aspects at:#classNameChannel put:(
1192
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2837
        (specClass notNil ifTrue:[specClass]
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2838
                         ifFalse:['NewApplication']) asValue
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2839
    ).
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2840
    specSuperclass isNil ifTrue:[
1192
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2841
        specClass notNil ifTrue:[
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2842
            (cls := self resolveName:specClass) notNil ifTrue:[
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2843
                specSuperclass := cls superclass name.
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2844
            ]
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2845
        ]
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2846
    ].
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2847
    aspects at:#superclassNameChannel put:(
1192
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2848
        (specSuperclass notNil ifTrue:[specSuperclass]
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2849
                         ifFalse:['ApplicationModel']) asValue
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2850
    ).
157
ce974dce3dd4 enhanced class & method dialog
Claus Gittinger <cg@exept.de>
parents: 156
diff changeset
  2851
    aspects at:#superclassNameDefaults put:#('ApplicationModel' 'SimpleDialog') asValue.
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2852
    aspects at:#methodNameChannel put:(
1192
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2853
        (specSelector notNil ifTrue:[specSelector asValue]
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2854
                            ifFalse:[#windowSpec]) asValue
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2855
    ).
136
42a2a4494281 remove postOpen
ca
parents: 133
diff changeset
  2856
1046
b3994c5e5e2f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  2857
    "/ the canvas ...
b3994c5e5e2f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  2858
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2859
    treeView    := TreeView new.
136
42a2a4494281 remove postOpen
ca
parents: 133
diff changeset
  2860
    painterView := StandardSystemView new.
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2861
    painterView name: self class defaultNameOfCanvas.
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2862
    painterView label: self class defaultNameOfCanvas.
136
42a2a4494281 remove postOpen
ca
parents: 133
diff changeset
  2863
    painterView extent:300@300.
42a2a4494281 remove postOpen
ca
parents: 133
diff changeset
  2864
42a2a4494281 remove postOpen
ca
parents: 133
diff changeset
  2865
    painter := UIPainterView in:painterView.
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2866
    painter layout:(0.0 @ 0.0 corner:1.0 @ 1.0) asLayout.
136
42a2a4494281 remove postOpen
ca
parents: 133
diff changeset
  2867
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2868
    treeView := treeView canvas:painter.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2869
    painter treeView:treeView.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2870
    treeView model addDependent:self.
136
42a2a4494281 remove postOpen
ca
parents: 133
diff changeset
  2871
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2872
    super openInterface:aSymbol.
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2873
136
42a2a4494281 remove postOpen
ca
parents: 133
diff changeset
  2874
    topView := self window.
345
c4d8f4c74c26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
  2875
    topView label:'GUI Painter'.
136
42a2a4494281 remove postOpen
ca
parents: 133
diff changeset
  2876
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2877
    painterView openInGroup:(topView windowGroup).
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2878
    painterView application:self.
794
212bc7e46765 openOnClass....
ca
parents: 788
diff changeset
  2879
1046
b3994c5e5e2f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  2880
    "/ the selectionPanel ...
b3994c5e5e2f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  2881
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2882
    selectionPanel := UISelectionPanel new.
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2883
    selectionPanel allButOpenInterface:#windowSpec.
1193
ada18c876301 partners must be remapped (at old position)
Claus Gittinger <cg@exept.de>
parents: 1192
diff changeset
  2884
    (galleryWindow := selectionPanel window) openInGroup:(topView windowGroup).
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2885
    selectionPanel openWindow.
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2886
    selectionPanel masterApplication:self.
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2887
1273
4703a5b17114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1270
diff changeset
  2888
    icon := Smalltalk imageFromFileNamed:'UIPainter.xbm' forClass:self class.
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2889
    topView iconLabel:'GUI Painter'.
1270
8e1a2c6db256 try my bitmaps in package directory
Claus Gittinger <cg@exept.de>
parents: 1247
diff changeset
  2890
    topView icon:icon.
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2891
1046
b3994c5e5e2f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
  2892
    painterView iconLabel:'GUI Canvas'.
1270
8e1a2c6db256 try my bitmaps in package directory
Claus Gittinger <cg@exept.de>
parents: 1247
diff changeset
  2893
    painterView icon:icon.
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2894
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2895
    topView bePartner.
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2896
    painterView bePartner.
1193
ada18c876301 partners must be remapped (at old position)
Claus Gittinger <cg@exept.de>
parents: 1192
diff changeset
  2897
    galleryWindow bePartner.
ada18c876301 partners must be remapped (at old position)
Claus Gittinger <cg@exept.de>
parents: 1192
diff changeset
  2898
ada18c876301 partners must be remapped (at old position)
Claus Gittinger <cg@exept.de>
parents: 1192
diff changeset
  2899
    galleryWindow iconLabel:'GUI Gallery'.
1270
8e1a2c6db256 try my bitmaps in package directory
Claus Gittinger <cg@exept.de>
parents: 1247
diff changeset
  2900
    galleryWindow icon:icon.
1192
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2901
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2902
    painterView topView raise.
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2903
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2904
!
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2905
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2906
openOnClass:aClass
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2907
    "opens the GUI Painter on aClass and #windowSpec"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2908
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2909
    self openOnClass:aClass andSelector:#windowSpec
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2910
!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2911
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2912
openOnClass:aClass andSelector:aSelector
798
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2913
    "opens the GUI Painter on aClass and aSelector
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2914
    "
157
ce974dce3dd4 enhanced class & method dialog
Claus Gittinger <cg@exept.de>
parents: 156
diff changeset
  2915
    aClass isNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2916
	(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
  2917
	ifFalse:[^ nil].
157
ce974dce3dd4 enhanced class & method dialog
Claus Gittinger <cg@exept.de>
parents: 156
diff changeset
  2918
    ].
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2919
798
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2920
    specSelector := aSelector.
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2921
    specClass := aClass.
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2922
964
476235fbb312 setup class/selector, before opening the interface;
Claus Gittinger <cg@exept.de>
parents: 952
diff changeset
  2923
    self openInterface.
476235fbb312 setup class/selector, before opening the interface;
Claus Gittinger <cg@exept.de>
parents: 952
diff changeset
  2924
476235fbb312 setup class/selector, before opening the interface;
Claus Gittinger <cg@exept.de>
parents: 952
diff changeset
  2925
"/    specSelector := aSelector.
476235fbb312 setup class/selector, before opening the interface;
Claus Gittinger <cg@exept.de>
parents: 952
diff changeset
  2926
"/    specClass := aClass.
476235fbb312 setup class/selector, before opening the interface;
Claus Gittinger <cg@exept.de>
parents: 952
diff changeset
  2927
476235fbb312 setup class/selector, before opening the interface;
Claus Gittinger <cg@exept.de>
parents: 952
diff changeset
  2928
    "Modified: / 21.8.1998 / 20:59:15 / cg"
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2929
!
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2930
1192
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2931
postBuildWith: aBuilder
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2932
    "sets the root of the tree view as first selection;
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2933
     sets the grid parameters, if defined"
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2934
798
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2935
    |painter settings gridPara hspace vspace cls sel|
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2936
1192
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2937
    super postBuildWith:aBuilder.
798
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2938
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2939
    cls := specClass.
966
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  2940
    cls isString ifTrue:[
1192
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2941
        cls := Smalltalk at:(cls string asSymbol)
966
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  2942
    ].
798
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2943
    sel := specSelector.
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2944
    specSelector := nil.
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2945
    specClass    := nil.
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2946
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2947
    painter  := self painter.
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2948
    settings := self class settings.
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2949
    gridPara := painter gridParameters copy.
1059
ecb59576e1e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2950
    hspace   := settings at: #HGridSpace ifAbsent:10.
ecb59576e1e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2951
    vspace   := settings at: #VGridSpace ifAbsent:10.
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  2952
    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
  2953
    painter gridParameters:gridPara.
1059
ecb59576e1e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2954
    painter gridShown: (settings at: #GridShown ifAbsent:false).
ecb59576e1e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1058
diff changeset
  2955
    painter gridAlign: (settings at: #GridAlign ifAbsent:false).
1192
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2956
    painter shown ifTrue:[painter clear].
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2957
798
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2958
    cls notNil ifTrue:[
1192
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2959
        self setClass:cls selector:sel.
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2960
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2961
        (cls respondsTo:sel) ifTrue:[  
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2962
            painter setupFromSpec:(cls perform:sel).
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2963
        ]
798
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2964
    ].
1192
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2965
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2966
    "Modified: / 22.8.1998 / 17:41:34 / cg"
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2967
!
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2968
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2969
postOpenWith: aBuilder
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2970
    "sets the initial selection"
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2971
1194
651885033545 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1193
diff changeset
  2972
    |myWindow canvasWindow canvasOrg galleryWindow 
651885033545 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1193
diff changeset
  2973
     galleryOrg myOrg myCorner|
1192
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2974
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2975
    super postOpenWith: aBuilder.
798
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2976
    treeView selection: #(1).
1247
6fb170b75302 clear menuBar in keyProcessor
ca
parents: 1230
diff changeset
  2977
    aBuilder keyboardProcessor menuBar:nil.
798
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  2978
1192
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2979
    myWindow := self window.
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2980
    canvasWindow := self painter topView.
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2981
    galleryWindow := selectionPanel window.
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2982
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2983
    myOrg := myWindow origin.
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2984
    myCorner := myWindow corner.
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  2985
1197
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2986
    "/ try to lay out things non-overlapping
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2987
    "/ but only, if the window manager placed all windows
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2988
    "/ on top of each other
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2989
    myOrg = canvasWindow origin ifTrue:[
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2990
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2991
        canvasOrg := 10@20.
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2992
"/        myOrg := (device width - myWindow width - 20) @ 20.
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2993
        galleryOrg := (device width - galleryWindow width - 20) 
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2994
                      @ 
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2995
                      ((myWindow height + 20) min:(device height - galleryWindow height - 20)).
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2996
        myWindow origin:myOrg.
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2997
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2998
        canvasWindow origin:canvasOrg.
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  2999
        galleryWindow origin:galleryOrg.
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  3000
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  3001
        galleryWindow raise.
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  3002
        canvasWindow raise.
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  3003
    ].
1192
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  3004
1195
64f3537ca061 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1194
diff changeset
  3005
    "Modified: / 13.7.1999 / 21:26:52 / cg"
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  3006
! !
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  3007
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  3008
!UIPainter methodsFor:'user actions'!
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3009
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3010
accept
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3011
    "accepts all modifications done to the attributes of the current section"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3012
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3013
    |painter layout spec layoutTool layoutView t|
1068
dcb2cba5787f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  3014
dcb2cba5787f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  3015
    self acceptChannel value:true; value:false.  "/ force editFields to accept
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3016
    self clearModifiedFlag.
788
8f9f3c3fcf60 avoid modified problems
tz
parents: 787
diff changeset
  3017
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3018
    painter := self painter.
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3019
    spec := self specTool specification.
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
    self isLayoutToolSelected ifTrue:[
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3022
        layoutTool := self layoutTool.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3023
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3024
        (layout := layoutTool layout) notNil ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3025
            layoutTool layoutType == #Extent ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3026
                layoutView := layoutTool layoutView.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3027
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3028
                layoutView == painter topView ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3029
                    layoutView extent:layout
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3030
                ] ifFalse:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3031
                    spec useDefaultExtent:(layoutTool aspectFor:#useDefaultExtent) value.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3032
                    spec useDefaultExtent ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3033
                        "/ temporarily unfreeze the widgets size
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3034
                        "/ (but remember, the old setting, which is actually
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3035
                        "/ controlled by the resizeForLabel attribute)
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3036
                        t := layoutView sizeFixed.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3037
                        layoutView sizeFixed:false.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3038
                        layout := layoutView preferredExtent.    
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3039
                        layoutView sizeFixed:t.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3040
                    ].
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3041
                    painter setExtent:layout.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3042
                    painter updateFromSpec:spec.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3043
                ]
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3044
            ] ifFalse:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3045
                painter setLayout:layout
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3046
            ]
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3047
        ]
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3048
    ] ifFalse:[
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3049
        self isHelpToolSelected ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3050
            self helpTool accept.      
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3051
            spec activeHelpKey:self helpTool helpKey.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3052
        ].      
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3053
        painter updateFromSpec:spec
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3054
    ].
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3055
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3056
    modified := false.
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3057
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3058
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3059
addWidget: aSpecClass
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3060
    "adds a widget from aSpecClass to the current widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3061
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3062
    self addWidgetOfSpec: (Array with: (Smalltalk at: aSpecClass) new)
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3063
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3064
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3065
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3066
addWidgetOfSpec: aSpec
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3067
    "adds a widget from aSpec to the current widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3068
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3069
    |newSel|  
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3070
    (newSel := self pasteSpecifications:aSpec keepLayout:false at:0@0) notNil
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3071
    ifTrue:
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3072
    [
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3073
	self select: newSel
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3074
    ]
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3075
    ifFalse:
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3076
    [   
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3077
	((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
  3078
	ifTrue:
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3079
	[                          
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3080
	    treeView selection: #(1).
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3081
	]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3082
	ifFalse:
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3083
	[  
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3084
	    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
  3085
	].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3086
	self addWidgetOfSpec: aSpec
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3087
    ]
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3088
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3089
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3090
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3091
cancel
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3092
    "cancels all modifications done to the attributes of the current section; 
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3093
     reread the old attributes"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3094
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3095
    |spec key view|
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3096
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3097
    self isModified ifTrue:[
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3098
        (spec := self painter specForSelection) notNil ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3099
            key := spec activeHelpKey.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3100
        ].
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3101
        self helpTool helpKey:key.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3102
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3103
        treeView isCanvasSelected ifTrue: [
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3104
            spec := treeView canvasSpec.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3105
        ].
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3106
        self specTool specification:spec.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3107
        view := self layoutTool layoutView.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3108
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3109
        self setViewInLayoutTool:view spec:spec.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3110
        spec class == DataSetSpec ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3111
            view notNil ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3112
                view columnDescriptors:(spec columns)
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3113
            ]
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3114
        ].        
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3115
        self clearModifiedFlag.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3116
        modified := false
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3117
    ]
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3118
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3119
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3120
doBrowseAspectMethods
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3121
    "opens a browser on the aspect methods"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3122
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3123
    |methods|
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3124
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3125
    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
  3126
	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
  3127
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3128
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3129
    (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
  3130
	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
  3131
	^ self.
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3132
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3133
    SystemBrowser browseMethods:methods title:'Aspect methods'.
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3134
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3135
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3136
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3137
doBrowseClass
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3138
    "opens a System Browser on the specClass"
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3139
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3140
    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
  3141
	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
  3142
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3143
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3144
    SystemBrowser openInClass:(self resolveName:specClass)
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3145
    
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  3146
!
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  3147
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3148
doDefineClassAndSelector
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3149
    "launches a dialog for defining class, superclass, and selector of the application"
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3150
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  3151
    |again tmp helpDict helpKey helpTool|
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3152
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3153
    [
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3154
        again := false.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3155
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3156
        (tmp := specClass) isNil ifTrue:[tmp := 'NewApplication'].
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3157
        aspects at:#classNameChannel put:tmp asValue.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3158
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3159
        (tmp := specSelector) isNil ifTrue:[tmp := 'windowSpec'].
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3160
        aspects at:#methodNameChannel put:tmp asValue.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3161
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3162
        (tmp := specSuperclass) isNil ifTrue:[tmp := 'ApplicationModel'].
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3163
        aspects at:#superclassNameChannel put:tmp asValue.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3164
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3165
        (self openDialogInterface:#dialogSpecForDefiningClassAndSelector) ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3166
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3167
            specClass    := (self aspectFor:#classNameChannel) value.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3168
            specSelector := (self aspectFor:#methodNameChannel) value.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3169
            specSelector notNil ifTrue:[specSelector := specSelector asSymbol].
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3170
            specSuperclass := (self aspectFor:#superclassNameChannel) value.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3171
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3172
            (again := self checkClassAndSelector not) ifFalse:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3173
                self painter className:specClass
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3174
                        superclassName:specSuperclass
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3175
                              selector:specSelector.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3176
            ]
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3177
        ]
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3178
        ifFalse:
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3179
        [
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3180
            ^nil
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3181
        ]
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3182
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3183
    ] doWhile:[again].
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3184
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3185
    specClass := specClass isBehavior ifTrue:[specClass name]
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3186
                                      ifFalse:[specClass].
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3187
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  3188
    helpTool := self helpTool.
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  3189
    helpDict := helpTool dictionary.
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  3190
    helpKey  := helpTool helpKey.
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  3191
    helpTool buildFromClass:specClass.    
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  3192
    helpTool dictionary declareAllFrom: helpDict.
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  3193
    helpTool updateList.
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  3194
    helpTool helpKey: helpKey.
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3195
    self clearModifiedFlag.
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  3196
    helpTool modified: true.
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3197
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3198
    self updateInfoLabel
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  3199
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  3200
    "Modified: / 16.7.1998 / 18:26:33 / cg"
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3201
!
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3202
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3203
doDefineGrid
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3204
    "opens a dialog for the grid parameters"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3205
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3206
    |hspace vspace bindings painter gridPara settings|
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3207
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3208
    painter  := self painter.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3209
    bindings := IdentityDictionary new.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3210
    gridPara := painter gridParameters copy.
1021
8c1deb0281c7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3211
    settings := self class settings.
8c1deb0281c7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3212
8c1deb0281c7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3213
    bindings at:#showGrid    put:((settings at: #GridShown ifAbsent: [painter gridShown]) asValue).
8c1deb0281c7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3214
    bindings at:#alignToGrid put:((settings at: #GridAlign ifAbsent: [painter gridAlign]) asValue).
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3215
    bindings at:#hspace      put:((gridPara at:1) asValue).
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3216
    bindings at:#vspace      put:((gridPara at:2) asValue).
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3217
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3218
    (self openDialogInterface:#dialogSpecForDefiningGridParameters withBindings:bindings) ifFalse:[
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3219
	^ self
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3220
    ].
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3221
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3222
    hspace := (bindings at:#hspace) value ? 5.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3223
    vspace := (bindings at:#vspace) value ? 5.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3224
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3225
    gridPara at:1 put:hspace.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3226
    gridPara at:2 put:vspace.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3227
    gridPara at:5 put:hspace.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3228
    gridPara at:6 put:vspace.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3229
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3230
    painter gridShown:false. 
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3231
    painter gridAlign:false. 
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3232
    painter gridParameters:gridPara.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3233
    painter gridAlign:(bindings at:#alignToGrid) value.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3234
    painter gridShown:(bindings at:#showGrid) value.
1021
8c1deb0281c7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3235
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3236
    settings at: #GridShown  put: (bindings at:#showGrid) value.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3237
    settings at: #GridAlign  put: (bindings at:#alignToGrid) value.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3238
    settings at: #HGridSpace put: hspace.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3239
    settings at: #VGridSpace put: vspace.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3240
    painter clear.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3241
1021
8c1deb0281c7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3242
    "Modified: / 4.2.1999 / 15:36:34 / cg"
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3243
!
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3244
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  3245
doGenerateAspectMethods
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3246
    "generates aspect and action methods for the application class"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3247
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3248
    self askForSectionModification.
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3249
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3250
    (ReadStream on:self painter generateAspectMethods) fileIn.
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3251
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3252
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3253
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  3254
doGenerateHookMethods
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3255
    "generates hook methods for the application class"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3256
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3257
    self askForSectionModification.
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3258
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3259
    (ReadStream on:self painter generateHookMethods) fileIn.
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3260
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3261
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3262
966
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  3263
doGenerateMenuMethods
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  3264
    "generates menu stub methods for the application class"
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  3265
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  3266
    self askForSectionModification.
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  3267
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  3268
    (ReadStream on:self painter generateMenuMethods) fileIn.
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  3269
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  3270
    "Created: / 23.8.1998 / 16:10:04 / cg"
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  3271
!
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  3272
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3273
doInspectSpec
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3274
    "opens an inspector on the spec of the selected widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3275
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3276
    |spec|
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3277
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3278
    (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
  3279
	treeView isCanvasSelected ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3280
	    spec := treeView canvasSpec.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3281
	]
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3282
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3283
    spec notNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3284
	spec inspect
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3285
    ]
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3286
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3287
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3288
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3289
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3290
doInspectView
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3291
    "opens an inspector on the view of the selected widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3292
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3293
    |selection|
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3294
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3295
    ((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
  3296
	selection first inspect
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3297
    ] ifFalse: [
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3298
	selection inspect
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3299
    ]
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3300
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3301
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3302
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3303
doLoad
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3304
    "opens a ResourceSelectionBrowser for loading a window spec from a class"
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3305
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3306
    self askForModification ifFalse: [^nil].
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3307
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3308
    self loadFromMessage: 
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3309
	(ResourceSelectionBrowser
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3310
	    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
  3311
	    onSuperclass: nil
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3312
	    andClass: specClass
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3313
	    andSelector: specSelector ? #windowSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3314
	    withResourceTypes: #(canvas))
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3315
!
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3316
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3317
doLoadSubspec
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3318
    "opens a ResourceSelectionBrowser for loading a sub spec from a class"
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3319
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3320
    |subSpecMessage|
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3321
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3322
    self askForSectionModification.
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3323
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3324
    (subSpecMessage := ResourceSelectionBrowser
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3325
	    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
  3326
	    onSuperclass: nil
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3327
	    andClass: specClass
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3328
	    andSelector: specSelector
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3329
	    withResourceTypes: #(canvas)) notNil
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3330
    ifTrue:
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3331
    [
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3332
	|readStream aClass aSelector|
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3333
	readStream := subSpecMessage readStream.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3334
	(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
  3335
	ifTrue:
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3336
	[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3337
	    aSelector :=  readStream upToEnd asSymbol.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3338
	    (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
  3339
	    (aClass respondsTo:aSelector) 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3340
	    ifTrue:
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3341
	    [
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3342
		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
  3343
	    ]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3344
	]
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3345
    ]
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3346
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3347
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3348
doNew
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3349
    "removes all widgets, specClass, and specSelector"
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3350
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3351
    self askForModification ifFalse: [^nil].
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3352
    specClass := specSelector := nil.
572
ac2a1dd83d28 open tutorial added
tz
parents: 565
diff changeset
  3353
    self painter removeAll.
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3354
    treeView canvas topView name:  UIPainter defaultNameOfCanvas.
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3355
    treeView canvas topView label: UIPainter defaultNameOfCanvas.
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3356
    self helpTool doNew.
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  3357
    self treeSelection.
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  3358
    treeView selectedNode changed.
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  3359
    self tabModel value: self tabList value first.
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3360
    self updateInfoLabel.
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3361
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3362
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3363
doOpenWidgetDocumentation
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3364
    "opens documentation for the selected widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3365
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3366
    |spec document|
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3367
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3368
    (spec := self specForSelection) isNil ifTrue:[
1204
faff065c78fd replace userFriendlyName by
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  3369
        treeView isCanvasSelected ifTrue:[
faff065c78fd replace userFriendlyName by
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  3370
            spec := nil
faff065c78fd replace userFriendlyName by
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  3371
        ]
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3372
    ].
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3373
    spec notNil ifTrue:[
1204
faff065c78fd replace userFriendlyName by
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  3374
        document := 'tools/uipainter/', spec documentFileName,'.html'
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3375
    ] ifFalse: [
1204
faff065c78fd replace userFriendlyName by
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  3376
        document := 'tools/uipainter/WindowSpec.html'
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3377
    ].
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3378
    HTMLDocumentView openFullOnDocumentationFile: document 
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3379
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3380
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3381
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3382
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3383
doPickAView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3384
    "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
  3385
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3386
    |view|
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3387
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3388
    self askForModification ifFalse: [^nil].
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3389
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3390
    (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
  3391
	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
  3392
	    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
  3393
	]
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3394
    ].
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3395
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3396
    self updateInfoLabel
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3397
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3398
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3399
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3400
doSave
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3401
    "saves the window spec"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3402
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3403
    |code painter cls ns|
713
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
    self hasSpecClassAndSelector ifFalse:[
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3408
	self doDefineClassAndSelector isNil ifTrue: [^nil]
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3409
    ].
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3410
1180
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3411
    (specClass notNil and: [(cls := Smalltalk at: specClass asSymbol) isClass]) ifFalse:[   
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3412
	self warn:('Oops - cannot save - class not found: ' , specClass).
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3413
	^nil
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3414
    ].
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3415
1180
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3416
"/    specClass notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3417
"/        (specClass includes:$:) ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3418
"/            (ns := Smalltalk defaultNameSpace) notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3419
"/                cls := ns at:specClass asSymbol
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3420
"/            ].
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3421
"/        ].
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3422
"/        cls isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3423
"/            (specClass startsWith:'Smalltalk::') ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3424
"/                cls := Smalltalk at: (specClass copyFrom:12) asSymbol.
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3425
"/            ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3426
"/                cls := Smalltalk at: specClass asSymbol.
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3427
"/            ]
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3428
"/        ].
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3429
"/        ns := cls nameSpace.
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3430
"/    ].
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3431
"/    cls isClass ifFalse:[   
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3432
"/        self warn:('Oops - cannot save - class not found: ' , specClass).
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3433
"/        ^nil
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3434
"/    ].
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3435
"/
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3436
"/    ns ~~ Smalltalk defaultNameSpace ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3437
"/        specClass := ns name , '::' , cls nameWithoutNameSpacePrefix.
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3438
"/    ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3439
"/        specClass := cls name.
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
  3440
"/    ].
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3441
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3442
    painter := self painter.
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3443
    painter 
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3444
	className:specClass
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3445
	superclassName:specSuperclass
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3446
	selector:specSelector.
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3447
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3448
    code := painter generateWindowSpecMethodSource withCRs.
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3449
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3450
    Transcript showCR:'generating windowSpec code...'.
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3451
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3452
    (ReadStream on:code) fileIn.
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3453
724
7c7fb3f3a927 docu calls added
tz
parents: 721
diff changeset
  3454
    self helpTool installHelpSpecsOnClass:specClass.
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3455
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3456
    self updateInfoLabel.
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3457
    modified := false.
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3458
    painter resetModification.
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3459
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3460
    (cls class implements: specSelector) ifTrue:[
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3461
	self addToHistory: (specClass, ' ', specSelector) -> #loadFromMessage:.
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3462
    ].
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3463
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3464
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3465
!
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3466
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3467
doSaveAs
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3468
    "opens a ResourceSelectionBrowser for saving the window spec on a class"
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3469
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3470
    |resourceMessage|
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3471
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3472
    self askForSectionModification.
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3473
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3474
    (resourceMessage := ResourceSelectionBrowser
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3475
	    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
  3476
	    onSuperclass: #Object
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3477
	    andClass: (specClass ? #ApplicationModel) asSymbol
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3478
	    andSelector: specSelector ? #windowSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3479
	    withResourceTypes: #(canvas)) notNil
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3480
    ifTrue:
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3481
    [
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3482
	modified := false.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3483
	self painter resetModification.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3484
	(self resourceMessage: resourceMessage)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3485
	ifTrue:
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3486
	[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3487
	    self doSave.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3488
	    ^true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3489
	]
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3490
    ]
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3491
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3492
!
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3493
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3494
doStartApplication
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3495
    "starts the application on the editing window spec"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3496
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3497
    |cls application|
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3498
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3499
    self hasSpecClassAndSelector ifFalse:[
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3500
	self doSave isNil ifTrue: [^nil].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3501
    ] ifTrue: [
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3502
	self askForSectionModification.    
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3503
	(modified or: [self painter isModified or: [self helpTool modified]])
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3504
	ifTrue:
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3505
	[
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3506
	    ((YesNoBox title:'Window Spec was modified!!')        
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3507
		noText:'Cancel';
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3508
		yesText:'Save it and start';
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3509
		showAtPointer;
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3510
		accepted) ifFalse: [^nil].
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3511
	    self doSave isNil ifTrue: [^nil]
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3512
	]
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3513
    ].
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3514
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3515
    cls := self resolveName:specClass.
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3516
    cls isNil ifTrue:[
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3517
	self warn:'Oops cannot start application - no class:' , specClass.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3518
	^ nil
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3519
    ].
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  3520
    ((application := cls new) respondsTo:#openInterface:) ifFalse:[
1185
6c14008722e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3521
        ^ self warn:('The application does not respond to the ''openInterface:'' message.\\(maybe the spec is supposed to be used as subApplication/subCanvas)') withCRs.
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3522
    ].        
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3523
    application openInterface:specSelector
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3524
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3525
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3526
doStepDown
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3527
    "moves the selected widget one step down in the hierarchy"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3528
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3529
    treeView doStepOver:1
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3530
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3531
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3532
doStepIn
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3533
    "moves the selected widget into the next widget as child"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3534
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3535
    treeView doStepIn
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3536
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3537
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3538
doStepOut
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3539
    "moves the selected widget out of the parent widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3540
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3541
    treeView doStepOut
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3542
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3543
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3544
doStepUp
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3545
    "moves the selected widget one step up in the hierarchy"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3546
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3547
    treeView doStepOver:-1
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  3548
!
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  3549
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  3550
doWindowSpec
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3551
    "opens a code view with the contents of the window spec"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3552
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3553
    self askForSectionModification.
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3554
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3555
    CodeView 
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3556
	openWith: self painter generateWindowSpecMethodSource 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3557
	title: 'Window Spec'
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  3558
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3559
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3560
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3561
!UIPainter::TreeView class methodsFor:'documentation'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3562
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3563
documentation
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3564
"
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3565
    selection in tree view; only used by the UIPainter
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3566
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3567
    [see also:]
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3568
	SelectionInTreeView
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3569
	SelectionInTree
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3570
	TreeItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3571
	UIPainter
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3572
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3573
    [author:]
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3574
	Claus Atzkern
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3575
"
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3576
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3577
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3578
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3579
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3580
!UIPainter::TreeView methodsFor:'accessing'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3581
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3582
canvas
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3583
    "returns the canvas (UIPainterView)"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3584
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3585
    ^ model root contents view
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3586
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3587
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3588
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3589
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3590
canvas:aCanvas
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3591
    "install canvas (UIPainterView)"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3592
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3593
    |props|
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3594
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3595
    props := UIPainterView::ViewProperty new.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3596
    props view:aCanvas.
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3597
    model root:(TreeItem name: UIPainter defaultNameOfCanvas asBoldText contents:props).
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3598
    model root expand.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3599
    self enableChannel:(aCanvas enableChannel).
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3600
281
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3601
!
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3602
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3603
canvasSpec
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3604
    "returns spec assigned to canvas"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3605
281
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3606
    |spec|
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3607
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3608
    spec := WindowSpec new.
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3609
281
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3610
    spec fromView:(self canvas topView) callBack:nil.
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3611
    windowSpec notNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3612
	spec copyValuesFromSpec:windowSpec
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3613
    ].
362
55154d7a4deb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 358
diff changeset
  3614
    ^ spec
55154d7a4deb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 358
diff changeset
  3615
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3616
!
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3617
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3618
canvasSpec:aSpec
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3619
    "update canvas from spec"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3620
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3621
    |spec|
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3622
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3623
    self setAttributesFromWindowSpec:aSpec.
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3624
    spec := aSpec copy.
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3625
    spec  menu:nil.
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3626
    spec flags:nil.
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3627
394
1933896da0c3 sett UIBuilder isEditing to true
ca
parents: 375
diff changeset
  3628
    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
  3629
!
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3630
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3631
itemOfView:aView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3632
    "returns item assigned to view or nil"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3633
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3634
    aView notNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3635
	self allItemsDo:[:anItem|
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3636
	    (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
  3637
	]
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3638
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3639
    ^ nil
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3640
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3641
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3642
!
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3643
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3644
lastDrawnMaster
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3645
    "returns the lastDrawnMaster"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3646
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3647
    ^ lastDrawnMaster
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3648
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3649
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3650
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3651
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3652
!UIPainter::TreeView methodsFor:'accessing property'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3653
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3654
propertiesDo:aOneArgBlock
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3655
    "evaluates the argument a block on each property"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3656
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3657
    self allItemsDo:[:anItem| aOneArgBlock value:(anItem contents)]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3658
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
propertyDetect:aOneArgBlock
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3663
    "evaluates the block on each property"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3664
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3665
    self allItemsDo:[:anItem|
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3666
	(aOneArgBlock value:(anItem contents)) ifTrue:[^ anItem contents]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3667
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3668
    ^ nil
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3669
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3670
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3671
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3672
propertySelected
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3673
    "returns current selected property or nil in case of multi selection
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3674
     or empty selection "
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3675
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3676
    |idx|
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3677
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3678
    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
  3679
	(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
  3680
	    ^ (listOfNodes at:idx) contents
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3681
	]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3682
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3683
    ^ nil
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3684
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3685
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3686
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3687
!UIPainter::TreeView methodsFor:'adding & removing'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3688
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3689
addProperty:aProperty
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3690
    "adds a new item"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3691
533
dde823aeca4c supports loading of subspecs
tz
parents: 527
diff changeset
  3692
    |parent| 
295
114befd1c369 add some help text
ca
parents: 287
diff changeset
  3693
114befd1c369 add some help text
ca
parents: 287
diff changeset
  3694
    parent := self detectItemRespondsToView:(aProperty view superView).
114befd1c369 add some help text
ca
parents: 287
diff changeset
  3695
114befd1c369 add some help text
ca
parents: 287
diff changeset
  3696
    parent notNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3697
	model add:(TreeItem new contents:aProperty) below:parent
295
114befd1c369 add some help text
ca
parents: 287
diff changeset
  3698
    ]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3699
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3700
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3701
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3702
removeAll
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3703
    "removes all items other than canvas"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3704
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3705
    lastDrawnMaster := nil.
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3706
    windowSpec := nil.
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3707
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3708
    self canvas subViews copy do:[:aView|
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3709
	"/ care to not destroy the transparent input view
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3710
	(aView isInputOnly) ifFalse:[aView destroy]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3711
    ].
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3712
    model root name: UIPainter defaultNameOfCanvas asBoldText.
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  3713
    model removeAllOtherThanRoot.
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3714
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3715
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3716
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3717
removeView:aView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3718
    "removes a view"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3719
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3720
    |item prnt|
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3721
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3722
    ((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
  3723
	aView destroy.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3724
	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
  3725
	model remove:item
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3726
    ]
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
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3731
!UIPainter::TreeView methodsFor:'building'!
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3732
1058
243d945b1daf name the (full-)spec
tm
parents: 1046
diff changeset
  3733
generateFullSpecForComponents:aSpecArray named:specNameSymbol
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3734
    "generates a full spec from aSpecArray"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3735
351
7cb9f9c9a872 more checks
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
  3736
    |fullSpec winSpec|
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3737
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3738
    fullSpec := FullSpec new.
1058
243d945b1daf name the (full-)spec
tm
parents: 1046
diff changeset
  3739
    fullSpec name:specNameSymbol.
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3740
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3741
    fullSpec fromBuilder:(self canvas topView)
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3742
	      components:(SpecCollection new collection:aSpecArray).
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3743
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3744
    windowSpec notNil ifTrue:[
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3745
	winSpec := fullSpec window.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3746
	winSpec copyValuesFromSpec:windowSpec.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3747
	winSpec name: winSpec label.
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3748
    ].    
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3749
    ^ fullSpec literalArrayEncoding.
351
7cb9f9c9a872 more checks
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
  3750
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3751
!
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3752
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3753
setAttributesFromWindowSpec:aWindowSpec
1172
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  3754
    "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
  3755
     to the canvas."
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  3756
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  3757
    |nm canvasView builder|
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3758
362
55154d7a4deb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 358
diff changeset
  3759
    windowSpec := WindowSpec new copyValuesFromSpec:aWindowSpec.
1172
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  3760
    canvasView := self canvas.
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  3761
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  3762
    builder := UIBuilder new isEditing:true.
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  3763
    aWindowSpec setAttributesIn:canvasView with:builder.
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  3764
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  3765
    nm := aWindowSpec name.
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  3766
    canvasView topView name:nm.
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  3767
    self canvasNameChanged:nm.
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  3768
    self application treeSelection.
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3769
! !
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  3770
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3771
!UIPainter::TreeView methodsFor:'canvas selection'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3772
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3773
cvsSelection:aSelection
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3774
    "canvas changed its selection
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3775
    "
805
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3776
    |sel list size|
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3777
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3778
    ((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
  3779
	sel := Array with:sel
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  3780
    ].
805
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3781
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3782
    (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
  3783
	list := OrderedCollection new:size.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3784
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3785
	sel do:[:aView||item|
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3786
	    (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
  3787
		list add:item.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3788
		model doMakeVisible:item.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3789
	    ]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3790
	].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3791
	sel := list collect:[:anItem| self indexOfNode:anItem ].
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  3792
    ].
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3793
    self cvsEventsDisabledDo:[ self selection:sel ].            
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3794
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3795
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
cvsSelectionAdd:aView
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3801
    "canvas adds a view to current selection
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3802
    "
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  3803
    |item index oldSel|
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3804
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3805
    item := self itemOfView:aView.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3806
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3807
    item notNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3808
	model doMakeVisible:item.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3809
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3810
	(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
  3811
	    oldSel := selection copy.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3812
	    self addToSelection:index.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3813
	    self selectionChangedFrom:oldSel
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3814
	]        
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  3815
    ]            
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3816
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3817
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3818
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3819
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3820
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3821
cvsSelectionRemove:aView
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3822
    "canvas removes a view from current selection
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3823
    "
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  3824
    |item index oldSel|
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  3825
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  3826
    (     (item := self itemOfView:aView) notNil
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  3827
     and:[(index := self indexOfNode:item) ~~ 0
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  3828
     and:[self isInSelection:index]]
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  3829
    ) ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3830
	oldSel := selection copy.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3831
	self removeFromSelection:index.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3832
	self selectionChangedFrom:oldSel.
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  3833
    ].
222
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
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3838
!UIPainter::TreeView methodsFor:'change & update'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3839
281
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3840
canvasNameChanged:aName
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3841
    "called if identification name assigned to window (canvas) changed
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3842
    "
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3843
    |name node|
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3844
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3845
    node := listOfNodes at:1.
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3846
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3847
    (    aName size ~~ 0
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3848
     and:[(name := aName string withoutSeparators) size ~~ 0
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3849
     and:[(self propertyDetect:[:p| p name = name]) isNil
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3850
     and:[node name ~= name]]]
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3851
    ) ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3852
	node name: name asBoldText.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3853
	node changed.   
281
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3854
    ].
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3855
!
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  3856
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3857
layoutChanged
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3858
    "layout of any component changed; in case of single selection, the
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3859
     application will be informed to update its layout
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3860
    "
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3861
    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
  3862
	self application layoutChanged
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3863
    ]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3864
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3865
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3866
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3867
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3868
propertyChanged:aProperty
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3869
    "property of view derived from argument a property changed
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3870
    "
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3871
    |item idx end|
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3872
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3873
    item := self itemOfView:(aProperty view).
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3874
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3875
    item notNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3876
	item contents:aProperty.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3877
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3878
	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
  3879
	    idx := self firstLineShown.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3880
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3881
	    (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
  3882
		end := listOfNodes size
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3883
	    ].                          
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3884
	    item changed.   
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3885
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3886
	    [idx <= end] whileTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3887
		(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
  3888
		    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
  3889
		    end := 0
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3890
		] ifFalse:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3891
		    idx := idx + 1
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3892
		]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3893
	    ]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3894
	].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3895
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3896
	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
  3897
	    self application propertyChanged
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3898
	]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3899
    ].
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3900
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3901
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:'drag & drop'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3905
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3906
canDrop:anObjectOrCollection
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3907
    "can drop ? delegate to canvas"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3908
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3909
    ^ self canvas canDrop:anObjectOrCollection
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3910
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3911
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3912
drop:anObjectOrCollection at:aPoint
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3913
    "drop objects ? delegate to canvas"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3914
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3915
    self canvas drop:anObjectOrCollection at:aPoint
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3916
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3917
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3918
!UIPainter::TreeView methodsFor:'enumerating'!
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3919
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3920
allItemsDo:aOneArgBlock
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3921
    "evaluates the argument a block on each item other than the canvas"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3922
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3923
    model root allChildrenDo:aOneArgBlock
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3924
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3925
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3926
! !
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3927
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3928
!UIPainter::TreeView methodsFor:'event processing'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3929
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3930
cvsEventsDisabledDo:aBlock
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3931
    "evaluates the block without raising selection changed notifications
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3932
     to canvas"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3933
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3934
    |restoreCvsEvents|
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3935
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3936
    restoreCvsEvents  := cvsEventsDisabled.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3937
    cvsEventsDisabled := true.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3938
    aBlock value.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3939
    cvsEventsDisabled := restoreCvsEvents.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3940
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3941
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3942
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3943
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3944
doubleClicked
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3945
    "disables collapsing of the root item"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3946
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3947
    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
  3948
	super doubleClicked
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3949
    ]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3950
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3951
805
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3952
!
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3953
852
c24c7584abe4 replace reimplememented method:
ca
parents: 851
diff changeset
  3954
redrawLabelAt:x y:yTop index:anIndex
805
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3955
    "draws a tiny rectangle for indicating the master node (first selected node)"
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3956
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3957
    |dX|
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3958
852
c24c7584abe4 replace reimplememented method:
ca
parents: 851
diff changeset
  3959
    super redrawLabelAt:x y:yTop index:anIndex.
805
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3960
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3961
    ((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
  3962
	dX := textInset - 1.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3963
	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
  3964
	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
  3965
			  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
  3966
		      width:dX
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3967
		     height:dX
805
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  3968
    ]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3969
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3970
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3971
!UIPainter::TreeView methodsFor:'initialization'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3972
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3973
initialize
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3974
    "initialize the tree view; multiple select and tree item actions"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3975
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3976
    super initialize.
564
df1f1e84d94a add menu added
tz
parents: 547
diff changeset
  3977
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3978
    self multipleSelectOk:true.
368
9e588f397bc9 support of lineFeed character \ in the help text
ca
parents: 366
diff changeset
  3979
    cvsEventsDisabled := false.
440
1198f19712ff spec items have got individual icons
tz
parents: 437
diff changeset
  3980
    self showDirectoryIndicator: true.
656
21fe350cfa06 tree item labels changed to a more convenient style
tz
parents: 630
diff changeset
  3981
    self showDirectoryIndicatorForRoot: false.
21fe350cfa06 tree item labels changed to a more convenient style
tz
parents: 630
diff changeset
  3982
21fe350cfa06 tree item labels changed to a more convenient style
tz
parents: 630
diff changeset
  3983
    self model iconAction: 
21fe350cfa06 tree item labels changed to a more convenient style
tz
parents: 630
diff changeset
  3984
    [:aNode|
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3985
	|specClass|       
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3986
	(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
  3987
	    ifTrue: [WindowSpec icon]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3988
	    ifFalse:[specClass class icon]
656
21fe350cfa06 tree item labels changed to a more convenient style
tz
parents: 630
diff changeset
  3989
    ].
21fe350cfa06 tree item labels changed to a more convenient style
tz
parents: 630
diff changeset
  3990
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3991
    self model labelAction: 
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3992
    [:aNode|
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3993
	|spec|
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3994
	(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
  3995
	    ifTrue: [self nameForSpecInList:spec] 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3996
	    ifFalse:[aNode name]
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3997
    ]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3998
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3999
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4000
!UIPainter::TreeView methodsFor:'private'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4001
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4002
nameForSpecInList:aSpec
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4003
    "returns the tree item label for aSpec"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4004
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4005
     ^ aSpec name asBoldText, ': [', aSpec viewClass name , ']' 
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4006
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4007
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4008
selectionChangedFrom:oldSelection
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4009
    "selection has changed. update master selection and raise notification
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4010
     to canvas in case of enabled cvs events
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4011
    "
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4012
    |sel size|
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4013
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4014
    super selectionChangedFrom:oldSelection.
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4015
    size := selection size.
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4016
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4017
    cvsEventsDisabled ifFalse:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4018
	(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
  4019
	    sel := OrderedCollection new.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4020
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4021
	    selection do:[:i|
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4022
		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
  4023
	    ]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4024
	].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4025
	self canvas updateSelectionFromModel:sel
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
  4026
    ].             
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4027
    size = 1 ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4028
	oldSelection size > 1 ifTrue: [
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4029
	    (listOfNodes at:lastDrawnMaster) retrieveLabel.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4030
	    self redrawLine: lastDrawnMaster. 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4031
	    lastDrawnMaster := selection first
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4032
	]
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4033
    ].
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4034
    size > 1 ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4035
	selection first ~~ lastDrawnMaster ifTrue: [
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4036
	    (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
  4037
	    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
  4038
	    self redrawLine: lastDrawnMaster. 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4039
	    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
  4040
	]
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  4041
    ]         
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4042
    ifFalse: [
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4043
	lastDrawnMaster := nil
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  4044
    ] 
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4045
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4046
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4047
!UIPainter::TreeView methodsFor:'queries'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4048
565
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  4049
canChangeOrderInContainer
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  4050
    "returns true if any selection exists and all widgets in the selection
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4051
     can change their layout through to a move or align operation"
565
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  4052
889
39d326722589 up/down channel updating
tz
parents: 884
diff changeset
  4053
    ^(selection size == 1)  and: 
39d326722589 up/down channel updating
tz
parents: 884
diff changeset
  4054
    [(selection at: 1) ~~ 1 and:   
39d326722589 up/down channel updating
tz
parents: 884
diff changeset
  4055
    [self selectedNode parent children size > 1]] 
39d326722589 up/down channel updating
tz
parents: 884
diff changeset
  4056
39d326722589 up/down channel updating
tz
parents: 884
diff changeset
  4057
565
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  4058
!
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  4059
1230
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  4060
canExchangeSelectionLayouts 
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  4061
    "returns true if the selections size is exactly 2
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  4062
     and all widgets in the selection
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  4063
     can change their layout through to a move or align operation"
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  4064
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  4065
    selection size == 2 ifFalse:[
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  4066
        ^ false
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  4067
    ].
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  4068
    ^ self canMoveOrAlignSelection
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  4069
!
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  4070
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4071
canMoveOrAlignSelection
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4072
    "returns true if any selection exists and all widgets in the selection
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4073
     can change their layout through to a move or align operation"
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4074
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4075
    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
  4076
	^ false
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4077
    ].
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4078
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4079
    selection do:[:i|
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4080
	i == 1 ifTrue:[^ false].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4081
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4082
	(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
  4083
	    ^ false
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4084
	]
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4085
    ].
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4086
    ^ true
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4087
!
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4088
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4089
canMoveSelectionIntoContainer
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4090
    "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
  4091
     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
  4092
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4093
    |item prnt|
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4094
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4095
    (     (item := self selectedNode) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4096
      or:[(prnt := item parent) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4097
      or:[(prnt := prnt childAt:((prnt indexOfChild:item) + 1)) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4098
      or:[prnt contents spec class supportsSubComponents not]]]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4099
    ) ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4100
	^ false
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4101
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4102
    ^ true
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4103
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4104
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4105
canMoveSelectionOutOfContainer
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4106
    "returns true in case that one widget is selected which is contained within
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4107
     another widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4108
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4109
    |item prnt|
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4110
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4111
    (     (item := self selectedNode) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4112
      or:[(prnt := item parent) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4113
      or:[prnt parent isNil]]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4114
    ) ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4115
	^ false
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4116
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4117
    ^ true
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4118
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4119
301
131f874fc2a2 support of hierarchical list editor
ca
parents: 297
diff changeset
  4120
canResizeSelectedWidget
131f874fc2a2 support of hierarchical list editor
ca
parents: 297
diff changeset
  4121
    "returns true in case of one widget selected and is contained
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4122
     within a widget which allows to resize sub components"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4123
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4124
    |selectedNode|
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4125
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4126
    (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
  4127
	(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
  4128
	    ^ (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
  4129
	]
301
131f874fc2a2 support of hierarchical list editor
ca
parents: 297
diff changeset
  4130
    ].
131f874fc2a2 support of hierarchical list editor
ca
parents: 297
diff changeset
  4131
    ^ false
131f874fc2a2 support of hierarchical list editor
ca
parents: 297
diff changeset
  4132
!
131f874fc2a2 support of hierarchical list editor
ca
parents: 297
diff changeset
  4133
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4134
hasOneSelectionOtherThanCanvas
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4135
    "returns true in case that one selection exists other than the canvas"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4136
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4137
    ^ selection size == 1 and:[selection first ~~ 1]
281
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4138
!
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4139
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4140
isCanvasSelected
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4141
    "returns true in case of a single selection and the
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4142
     selection is the canvas (index 1)"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4143
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4144
    ^ selection size == 1 and:[self isInSelection:1]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4145
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4146
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4147
!UIPainter::TreeView methodsFor:'searching'!
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4148
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4149
detectItemRespondsToView:aView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4150
    "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
  4151
     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
  4152
     returned"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4153
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4154
    |view item|
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4155
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4156
    (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
  4157
	[(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
  4158
	    (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
  4159
	].
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4160
    ].
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4161
    ^ item
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4162
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4163
! !
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4164
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4165
!UIPainter::TreeView methodsFor:'user interactions'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4166
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4167
doChangeHierarchyOf:anItem
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4168
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4169
    |canvas|
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4170
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4171
    anItem isNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4172
	^ self
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4173
    ].
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4174
    self setSelection:nil.
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4175
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4176
    canvas := self canvas.
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4177
    canvas deleteSelection.
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4178
    canvas setSelection:(anItem contents view) withRedraw:false.
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4179
    canvas pasteWithLayout.
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4180
!
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4181
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4182
doStepIn
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4183
    |item prnt|
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4184
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4185
    (     (item := self selectedNode) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4186
      or:[(prnt := item parent) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4187
      or:[(prnt := prnt childAt:((prnt indexOfChild:item) + 1)) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4188
      or:[prnt contents spec class supportsSubComponents not]]]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4189
    ) ifFalse:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4190
	self doChangeHierarchyOf:prnt
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4191
    ]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4192
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4193
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4194
doStepOut
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4195
    |item|
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4196
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4197
    ((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
  4198
	self doChangeHierarchyOf:(item parent)
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4199
    ].
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4200
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4201
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4202
doStepOver:anIndex
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4203
    "moves child 'anOffset' forward or backward in list of children"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4204
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4205
    |item idx size prnt spVw view canvas|
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4206
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4207
    (    (item := self selectedNode) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4208
     or:[(prnt := item parent) isNil
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4209
     or:[(size := prnt children size) < 2
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4210
     or:[(idx  := prnt indexOfChild:item) == 0]]]
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4211
    ) ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4212
	^ self
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4213
    ].
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4214
    idx := idx + anIndex.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4215
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4216
    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
  4217
	   ifFalse:[idx > size ifTrue:[idx := 1]].
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4218
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4219
    self setSelection:nil.
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4220
    model remove:item.
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4221
    model add:item beforeIndex:idx below:prnt.
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4222
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4223
    idx    := prnt indexOfChild:item.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4224
    view   := item contents view.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4225
    spVw   := prnt contents view.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4226
    canvas := self canvas.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4227
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4228
    canvas hideSelection.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4229
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4230
 "/ input view might by contained in sequence
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4231
    ((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
  4232
	idx := idx + 1
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4233
    ].
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4234
    spVw changeSequenceOrderFor:view to:idx.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4235
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4236
    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
  4237
	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
  4238
	canvas inputView raise
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4239
    ].
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4240
    canvas showSelection.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4241
    self selectNode:item.
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4242
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4243
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  4244
!UIPainter class methodsFor:'documentation'!
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  4245
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  4246
version
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  4247
    ^ '$Header$'
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  4248
! !