UIPainter.st
author ca
Mon, 03 Dec 2007 10:57:40 +0100
changeset 2204 bde4a7ef693a
parent 2202 b465c7e48050
child 2206 1a7921b6c104
permissions -rw-r--r--
changed #processEvent:
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
"
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
    12
"{ Package: 'stx:libtool2' }"
1391
be99f3e9260e set changed label in tree-view for canvas
ca
parents: 1360
diff changeset
    13
2007
77cf7ecc9ecf embedding as special editors
Claus Gittinger <cg@exept.de>
parents: 2001
diff changeset
    14
ResourceSpecEditor subclass:#UIPainter
77cf7ecc9ecf embedding as special editors
Claus Gittinger <cg@exept.de>
parents: 2001
diff changeset
    15
	instanceVariableNames:'specSuperclassName treeView selectionPanel specTool layoutTool
2012
3a3b694c8288 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
    16
		helpTool painterView painter'
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
1466
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
    23
	instanceVariableNames:'lastDrawnMaster cvsEventsDisabled windowSpec windowSpecClass'
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
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
    74
    "open a GUI Painter on aClass and (windowSpec) aSelector"
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
    75
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
    76
    ^ self new openOnClass:aClass theNonMetaclass 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
1545
4f8b08f745eb flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1540
diff changeset
   100
flyByHelpSpec
4f8b08f745eb flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1540
diff changeset
   101
    <resource: #help>
4f8b08f745eb flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1540
diff changeset
   102
4f8b08f745eb flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1540
diff changeset
   103
    ^super flyByHelpSpec addPairsFrom:#(
4f8b08f745eb flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1540
diff changeset
   104
4f8b08f745eb flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1540
diff changeset
   105
#fileSave
2198
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
   106
'Save Spec'
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
   107
1545
4f8b08f745eb flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1540
diff changeset
   108
4f8b08f745eb flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1540
diff changeset
   109
)
4f8b08f745eb flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1540
diff changeset
   110
!
4f8b08f745eb flyByHelp stuff
Claus Gittinger <cg@exept.de>
parents: 1540
diff changeset
   111
193
450d9e5c6f4a checkin from browser
ca
parents: 187
diff changeset
   112
helpSpec
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   113
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   114
     by the UIHelpTool of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   115
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   116
    "Do not manually edit this!! If it is corrupted,
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   117
     the UIHelpTool may not be able to read the specification."
295
114befd1c369 add some help text
ca
parents: 287
diff changeset
   118
193
450d9e5c6f4a checkin from browser
ca
parents: 187
diff changeset
   119
    "
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   120
     UIHelpTool openOnClass:UIPainter    
295
114befd1c369 add some help text
ca
parents: 287
diff changeset
   121
    "
114befd1c369 add some help text
ca
parents: 287
diff changeset
   122
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   123
    <resource: #help>
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   124
1827
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
   125
    ^ super helpSpec addPairsFrom:#(
193
450d9e5c6f4a checkin from browser
ca
parents: 187
diff changeset
   126
934
b32cfce56571 help specs
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   127
#align
b32cfce56571 help specs
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   128
'Widget alignment functions.'
b32cfce56571 help specs
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   129
466
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   130
#alignSelectionBottom
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   131
'Aligns the selected widgets bottom edges with the bottom of 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
#alignSelectionCenterHor
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   134
'Aligns the selected widgets centers vertically with the center 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
#alignSelectionCenterVer
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   137
'Aligns the selected widgets centers horizontally with the center 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
#alignSelectionLeft
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   140
'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
   141
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   142
#alignSelectionLeftAndRight
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   143
'Aligns the selected widgets left & right edges with the dominant widget.'
466
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   144
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   145
#alignSelectionRight
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   146
'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
   147
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   148
#alignSelectionTop
934
b32cfce56571 help specs
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   149
'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
   150
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   151
#alignSelectionTopAndBottom
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   152
'Aligns the selected widgets top and bottom edges with the dominant widget.'
466
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   153
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   154
#centerSelectionHor
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   155
'Centers the selected widgets horizontally within their containing widget.'
466
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   156
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   157
#centerSelectionVer
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   158
'Centers the selected widgets vertically within their containing widget.'
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
#changePositionDown
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
   161
'Moves the selected widget(s) towards the bottom.'
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
#changePositionLeft
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
   164
'Moves the selected widget(s) towards the left.'
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
#changePositionRight
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
   167
'Moves the selected widget(s) towards the right.'
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
#changePositionUp
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
   170
'Moves the selected widget(s) towards the top.'
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   171
1827
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
   172
#drawEdit
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
   173
''
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
   174
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
   175
#editBrowseViewClass
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
   176
'Opens a browser on the class of the selected widget.'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
   177
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   178
#editDimensionCopyExtent
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   179
'Copies the extent of the selected widget.'
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
#editDimensionCopyLayout
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   182
'Copies the layout of the selected widget.'
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
#editDimensionDefaultExtent
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   185
'Sets the selected widget(s) extent to their default.'
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   186
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   187
#editDimensionDefaultHeight
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   188
'Sets the selected widget(s) height to their default.'
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   189
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   190
#editDimensionDefaultWidth
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   191
'Sets the selected widget(s) width to their default.'
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   192
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   193
#editDimensionPasteExtent
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   194
'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
   195
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   196
#editDimensionPasteHeight
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   197
'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
   198
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   199
#editDimensionPasteLayout
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   200
'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
   201
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   202
#editDimensionPasteWidth
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   203
'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
   204
724
7c7fb3f3a927 docu calls added
tz
parents: 721
diff changeset
   205
#editInspectSpec
7c7fb3f3a927 docu calls added
tz
parents: 721
diff changeset
   206
'Opens an inspector on the spec of the selected widget.'
7c7fb3f3a927 docu calls added
tz
parents: 721
diff changeset
   207
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
   208
#editInspectView
1742
4c39c2f1dcc7 help texts
Claus Gittinger <cg@exept.de>
parents: 1739
diff changeset
   209
'Opens an inspector on the selected widget.'
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
   210
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   211
#editOpenSpecDocumentation
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   212
'Opens the documentation of the selected widget.'
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   213
1827
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
   214
#fileBrowseAspectMethods
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
   215
'Opens a System Browser on the applications aspect methods.'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
   216
1742
4c39c2f1dcc7 help texts
Claus Gittinger <cg@exept.de>
parents: 1739
diff changeset
   217
#fileBrowseClass
4c39c2f1dcc7 help texts
Claus Gittinger <cg@exept.de>
parents: 1739
diff changeset
   218
'Open a System Browser on the applications class.'
4c39c2f1dcc7 help texts
Claus Gittinger <cg@exept.de>
parents: 1739
diff changeset
   219
498
43a78c5f806c help texts added
tz
parents: 496
diff changeset
   220
#fileLoad
1032
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   221
'Opens a dialog to load a window specification from a classes spec method.'
498
43a78c5f806c help texts added
tz
parents: 496
diff changeset
   222
533
dde823aeca4c supports loading of subspecs
tz
parents: 527
diff changeset
   223
#fileLoadSubspec
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   224
'Opens a dialog to load a sub specification from a classes windowSpec method.'
533
dde823aeca4c supports loading of subspecs
tz
parents: 527
diff changeset
   225
498
43a78c5f806c help texts added
tz
parents: 496
diff changeset
   226
#fileNew
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   227
'Creates a new window spec.'
498
43a78c5f806c help texts added
tz
parents: 496
diff changeset
   228
43a78c5f806c help texts added
tz
parents: 496
diff changeset
   229
#filePickAnInterface
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   230
'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
   231
43a78c5f806c help texts added
tz
parents: 496
diff changeset
   232
#fileSave
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   233
'Saves the window spec in the current class (as spec method).'
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   234
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   235
#fileSaveAs
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
   236
'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
   237
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   238
#fileShowWindowSpec
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   239
'Opens a Workspace showing the current window spec.'
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   240
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   241
#generateAspectMethods
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   242
'Generates aspect methods for defined aspect selectors of the widgets.'
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   243
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   244
#generateHookMethods
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   245
'Generates startup/release methods. (#closeRequest, #postBuildWith:, #postOpenWith:)'
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   246
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
   247
#helpExamples
935
43e8ce3b62ca help specs again.
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
   248
'Show some examples uses of the GUI Painter.'
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
   249
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
   250
#helpFunctions
935
43e8ce3b62ca help specs again.
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
   251
'Show the documentation on the GUI Painters menu and button functions.'
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
   252
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
   253
#helpLayoutTool
935
43e8ce3b62ca help specs again.
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
   254
'Show the Layout Tools documentation.'
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
   255
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
   256
#helpSelectedWidget
935
43e8ce3b62ca help specs again.
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
   257
'Show the documentation of the selected widget.'
43e8ce3b62ca help specs again.
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
   258
43e8ce3b62ca help specs again.
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
   259
#helpTutorial
43e8ce3b62ca help specs again.
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
   260
'Show the GUI Painters documentation.'
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
   261
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   262
#historyMenuItem
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   263
'Edit this windowSpec.'
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   264
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   265
#moveWidgetDown
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   266
'Moves the selected widget one step down.'
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   267
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   268
#moveWidgetInto
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   269
'Moves the selected widget into next widget as child widget.'
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   270
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   271
#moveWidgetOut
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   272
'Moves the selected widget out of its parent widget.'
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   273
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   274
#moveWidgetUp
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   275
'Moves the selected widget one step up.'
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
   276
466
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   277
#pasteBuffer
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
   278
'Pastes the widgets of the clipboard at the current mouse position.'
466
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   279
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   280
#pasteWithLayout
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   281
'Pastes the widgets of the clipboard without a changing of their layouts.'
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   282
1827
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
   283
#referToCOnfigDatabase
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
   284
''
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
   285
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
   286
#settingsAspectsAsInstances
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
   287
'Generate aspects as instance variables (or bindings, if off).'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
   288
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   289
#settingsCanvas
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   290
'Shows or hides the canvas window.'
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   291
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   292
#settingsGallery
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   293
'Shows or hides the gallery window.'
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   294
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   295
#settingsGridManager
1032
abe3ed3bebc9 help texts
Claus Gittinger <cg@exept.de>
parents: 1027
diff changeset
   296
'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
   297
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   298
#settingsRedefineAspectMethods
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   299
'Toggles the permission to overwrite existing aspect methods.'
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   300
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   301
#settingsTranscriptHelp
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   302
'Toggles display of help texts (after opening a new GUI Painter).'
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   303
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   304
#settingsUndoManager
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
   305
'Opens a dialog to undo modifications.'
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
   306
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
   307
#spreadSelectionHor
1862
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   308
'Sets the horizontal spaces between the selected widgets to the same value.'
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
   309
466
daba7254ed49 no separate help saves
tz
parents: 453
diff changeset
   310
#spreadSelectionVer
1862
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   311
'Sets the vertical spaces between the selected widgets to the same value.'
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   312
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
   313
#testGeometryTestMode
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
   314
'Toggles geometry test mode (to define ratios of variable panels and top-window dimension).'
498
43a78c5f806c help texts added
tz
parents: 496
diff changeset
   315
43a78c5f806c help texts added
tz
parents: 496
diff changeset
   316
#testStartApplication
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
   317
'Starts the application with the current window spec.'
194
2b05bd327785 recompute property list when changing view ordering by
ca
parents: 193
diff changeset
   318
193
450d9e5c6f4a checkin from browser
ca
parents: 187
diff changeset
   319
)
450d9e5c6f4a checkin from browser
ca
parents: 187
diff changeset
   320
! !
450d9e5c6f4a checkin from browser
ca
parents: 187
diff changeset
   321
297
14db1276218c change the spec;
ca
parents: 295
diff changeset
   322
!UIPainter class methodsFor:'helpers'!
14db1276218c change the spec;
ca
parents: 295
diff changeset
   323
368
9e588f397bc9 support of lineFeed character \ in the help text
ca
parents: 366
diff changeset
   324
convertString:aString maxLineSize:maxCharactersPerLine skipLineFeed:skipLineFeed
297
14db1276218c change the spec;
ca
parents: 295
diff changeset
   325
    "converts a string to a string collection with maximum characters
14db1276218c change the spec;
ca
parents: 295
diff changeset
   326
     per line
14db1276218c change the spec;
ca
parents: 295
diff changeset
   327
    "
14db1276218c change the spec;
ca
parents: 295
diff changeset
   328
    |stream
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   329
	max     "{ Class:SmallInteger }"
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   330
	size    "{ Class:SmallInteger }"
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   331
	start   "{ Class:SmallInteger }"
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   332
	stop    "{ Class:SmallInteger }"
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   333
	cpySz   "{ Class:SmallInteger }"
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   334
	lnSz    "{ Class:SmallInteger }"
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   335
	atBeginOfLine|
297
14db1276218c change the spec;
ca
parents: 295
diff changeset
   336
14db1276218c change the spec;
ca
parents: 295
diff changeset
   337
    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
   338
			       ifTrue:[max := 20].
297
14db1276218c change the spec;
ca
parents: 295
diff changeset
   339
14db1276218c change the spec;
ca
parents: 295
diff changeset
   340
    (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
   341
	^ aString
297
14db1276218c change the spec;
ca
parents: 295
diff changeset
   342
    ].
14db1276218c change the spec;
ca
parents: 295
diff changeset
   343
    start  := 1.
14db1276218c change the spec;
ca
parents: 295
diff changeset
   344
    lnSz   := 0.
14db1276218c change the spec;
ca
parents: 295
diff changeset
   345
    stream := (String new:size) writeStream.
14db1276218c change the spec;
ca
parents: 295
diff changeset
   346
542
11be1353d34c author in doc method
Claus Gittinger <cg@exept.de>
parents: 538
diff changeset
   347
    atBeginOfLine := true.
11be1353d34c author in doc method
Claus Gittinger <cg@exept.de>
parents: 538
diff changeset
   348
297
14db1276218c change the spec;
ca
parents: 295
diff changeset
   349
    [start <= size] whileTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   350
	(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
   351
	    ^ stream contents
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   352
	].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   353
	(aString at:start) == $\ ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   354
	    skipLineFeed ifFalse:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   355
		stream nextPut:$\
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   356
	    ].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   357
	    start := start + 1.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   358
	    stream cr.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   359
	    start := start + 1.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   360
	    lnSz := 0.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   361
	] ifFalse:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   362
	    (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
   363
		stop := size + 1
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   364
	    ].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   365
	    (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
   366
		stop := stop - 1
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   367
	    ].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   368
	    cpySz := stop - start.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   369
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   370
	    lnSz == 0 ifFalse:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   371
		(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
   372
					     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
   373
	    ] ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   374
		lnSz := cpySz
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   375
	    ].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   376
	    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
   377
	    start := stop.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   378
	]
297
14db1276218c change the spec;
ca
parents: 295
diff changeset
   379
    ].
14db1276218c change the spec;
ca
parents: 295
diff changeset
   380
    ^ stream contents
542
11be1353d34c author in doc method
Claus Gittinger <cg@exept.de>
parents: 538
diff changeset
   381
11be1353d34c author in doc method
Claus Gittinger <cg@exept.de>
parents: 538
diff changeset
   382
    "Modified: / 1.2.1998 / 14:42:56 / cg"
297
14db1276218c change the spec;
ca
parents: 295
diff changeset
   383
! !
14db1276218c change the spec;
ca
parents: 295
diff changeset
   384
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   385
!UIPainter class methodsFor:'image specs'!
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   386
1883
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   387
arrowDown
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   388
    "This resource specification was automatically generated
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   389
     by the ImageEditor of ST/X."
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   390
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   391
    "Do not manually edit this!! If it is corrupted,
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   392
     the ImageEditor may not be able to read the specification."
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   393
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   394
    "
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   395
     self arrowDown inspect
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   396
     ImageEditor openOnClass:self andSelector:#arrowDown
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   397
     Icon flushCachedIcons
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   398
    "
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   399
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   400
    <resource: #image>
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   401
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   402
    ^Icon
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   403
        constantNamed:#'UIPainter class arrowDown'
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   404
        ifAbsentPut:[(Depth1Image new) width: 11; height: 11; photometric:(#palette); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?>C?8O? ?>C@XNC <^C;8O? ?>C?8@@a') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 11; height: 11; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   405
@@@@@@@@@@@? A<@C @D@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   406
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   407
!
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   408
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   409
arrowLeft
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   410
    "This resource specification was automatically generated
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   411
     by the ImageEditor of ST/X."
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   412
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   413
    "Do not manually edit this!! If it is corrupted,
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   414
     the ImageEditor may not be able to read the specification."
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   415
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   416
    "
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   417
     self arrowLeft inspect
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   418
     ImageEditor openOnClass:self andSelector:#arrowLeft
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   419
     Icon flushCachedIcons
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   420
    "
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   421
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   422
    <resource: #image>
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   423
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   424
    ^Icon
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   425
        constantNamed:#'UIPainter class arrowLeft'
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   426
        ifAbsentPut:[(Depth1Image new) width: 11; height: 11; photometric:(#palette); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?>C?8O7 >^C18NG <^C98O7 ?>C?8@@a') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 11; height: 11; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@H@A @N@A8@C PF@@H@@@@@@@@a') ; yourself); yourself]
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   427
!
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   428
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   429
arrowRight
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   430
    "This resource specification was automatically generated
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   431
     by the ImageEditor of ST/X."
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   432
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   433
    "Do not manually edit this!! If it is corrupted,
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   434
     the ImageEditor may not be able to read the specification."
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   435
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   436
    "
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   437
     self arrowRight inspect
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   438
     ImageEditor openOnClass:self andSelector:#arrowRight
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   439
     Icon flushCachedIcons
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   440
    "
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   441
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   442
    <resource: #image>
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   443
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   444
    ^Icon
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   445
        constantNamed:#'UIPainter class arrowRight'
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   446
        ifAbsentPut:[(Depth1Image new) width: 11; height: 11; photometric:(#palette); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?>C?8O_ <>C18OC <^C38O_ ?>C?8@@a') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 11; height: 11; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@ @C@@NA@<@C @L@@ @@@@@@@@a') ; yourself); yourself]
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   447
!
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   448
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   449
arrowUp
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   450
    "This resource specification was automatically generated
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   451
     by the ImageEditor of ST/X."
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   452
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   453
    "Do not manually edit this!! If it is corrupted,
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   454
     the ImageEditor may not be able to read the specification."
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   455
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   456
    "
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   457
     self arrowUp inspect
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   458
     ImageEditor openOnClass:self andSelector:#arrowUp
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   459
     Icon flushCachedIcons
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   460
    "
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   461
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   462
    <resource: #image>
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   463
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   464
    ^Icon
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   465
        constantNamed:#'UIPainter class arrowUp'
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   466
        ifAbsentPut:[(Depth1Image new) width: 11; height: 11; photometric:(#palette); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?>C?8O? >>C18NC 0FC?8O? ?>C?8@@a') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 11; height: 11; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@A@@NG1<@O8@@@@@@@@@@AP@a') ; yourself); yourself]
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   467
!
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
   468
2157
76aadc90818e mask of icons
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
   469
defaultIcon
2175
f8dd64f73dfc icon resource
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
   470
    <resource: #programImage>
f8dd64f73dfc icon resource
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
   471
2157
76aadc90818e mask of icons
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
   472
    ^ ToolbarIconLibrary startUIPainterIcon
76aadc90818e mask of icons
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
   473
76aadc90818e mask of icons
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
   474
    "Created: / 10-02-2007 / 14:45:56 / cg"
2175
f8dd64f73dfc icon resource
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
   475
    "Modified: / 17-09-2007 / 11:36:33 / cg"
2157
76aadc90818e mask of icons
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
   476
!
76aadc90818e mask of icons
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
   477
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   478
iconAlignB
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   479
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   480
     by the ImageEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   481
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
   482
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   483
     the ImageEditor may not be able to read the specification."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   484
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   485
    "
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   486
     ImageEditor openOnClass:self andSelector:#iconAlignB
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   487
    "
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   488
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   489
    <resource: #image>
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   490
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   491
    ^Icon
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   492
	constantNamed:#'UIPainter iconAlignB'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   493
	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
   494
!
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   495
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   496
iconAlignL
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   497
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   498
     by the ImageEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   499
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
   500
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   501
     the ImageEditor may not be able to read the specification."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   502
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   503
    "
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   504
     ImageEditor openOnClass:self andSelector:#iconAlignL
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   505
    "
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   506
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   507
    <resource: #image>
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   508
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   509
    ^Icon
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   510
	constantNamed:#'UIPainter iconAlignL'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   511
	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
   512
!
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   513
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   514
iconAlignLR
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   515
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   516
     by the ImageEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   517
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
   518
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   519
     the ImageEditor may not be able to read the specification."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   520
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   521
    "
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   522
     ImageEditor openOnClass:self andSelector:#iconAlignLR
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   523
    "
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   524
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   525
    <resource: #image>
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   526
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   527
    ^Icon
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   528
	constantNamed:#'UIPainter iconAlignLR'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   529
	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
   530
!
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   531
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   532
iconAlignR
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   533
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   534
     by the ImageEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   535
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
   536
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   537
     the ImageEditor may not be able to read the specification."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   538
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   539
    "
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   540
     ImageEditor openOnClass:self andSelector:#iconAlignR
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   541
    "
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   542
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   543
    <resource: #image>
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   544
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   545
    ^Icon
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   546
	constantNamed:#'UIPainter iconAlignR'
1432
c032f34cd7bb remove shortcutKeyCharacter's from menu
ca
parents: 1397
diff changeset
   547
	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]
c032f34cd7bb remove shortcutKeyCharacter's from menu
ca
parents: 1397
diff changeset
   548
!
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   549
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   550
iconAlignT
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   551
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   552
     by the ImageEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   553
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
   554
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   555
     the ImageEditor may not be able to read the specification."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   556
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   557
    "
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   558
     ImageEditor openOnClass:self andSelector:#iconAlignT
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   559
    "
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   560
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   561
    <resource: #image>
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   562
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   563
    ^Icon
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   564
	constantNamed:#'UIPainter iconAlignT'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   565
	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
   566
!
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   567
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   568
iconAlignTB
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   569
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   570
     by the ImageEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   571
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
   572
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   573
     the ImageEditor may not be able to read the specification."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   574
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   575
    "
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   576
     ImageEditor openOnClass:self andSelector:#iconAlignTB
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   577
    "
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   578
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   579
    <resource: #image>
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   580
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   581
    ^Icon
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   582
	constantNamed:#'UIPainter iconAlignTB'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   583
	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]
1862
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   584
!
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   585
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   586
iconCenterH
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   587
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   588
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   589
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   590
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   591
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   592
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   593
    "
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   594
     self iconCenterH inspect
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   595
     ImageEditor openOnClass:self andSelector:#iconCenterH
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   596
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   597
    "
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   598
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   599
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   600
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   601
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   602
        constantNamed:#'UIPainter class iconCenterH'
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   603
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   604
@@@@@@@@@@@@@@@@@(@J@B @@(@J@B @@(UZUR @@(?:?R @@(@J@B @@(@J@B @@(@J@B @@@@J@@@@@EUZUU@@@O?:?=@@@@@J@@@@@(@J@B @@(@J@B @
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   605
@(@J@B @@(EZUB@@@(O:=B @@(@J@B @@(@J@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:'@@@@@@@@@C@@A?>@A?>@A?>@A?>@@C@@@C@@G?? G?? G?? G??#@C@@@C@C@?<@@?<A@?<@@?<@@C@@@@@A@@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   606
!
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   607
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   608
iconCenterHInFrame
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   609
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   610
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   611
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   612
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   613
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   614
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   615
    "
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   616
     self iconCenterHInFrame inspect
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   617
     ImageEditor openOnClass:self andSelector:#iconCenterHInFrame
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   618
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   619
    "
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   620
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   621
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   622
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   623
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   624
        constantNamed:#'UIPainter class iconCenterHInFrame'
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   625
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   626
@@@@@@@@J******@H@@@@@B@HL@@@CB@H8UUUR2@HH???RB@H8@@@B2@HH@@@BB@H8@@@B2@H@@@@@B@HEUUUUB@HO???=B@H@@@@@B@H8@@@@2@HH@@@@B@
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   627
H8@@@@2@HHEUUBB@H8O?=B2@HL@@@CB@H@@@@@B@J******@@@@@@@@@') ; 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:'@@@@_??8P@@HW??(U?>(U?>(U?>(T@@(T@@(W??(W??(W??(W??+T@@(T@@+T?<(T?<)T?<(W??(P@@H_??9@@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   628
!
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   629
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   630
iconCenterV
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   631
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   632
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   633
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   634
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   635
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   636
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   637
    "
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   638
     self iconCenterV inspect
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   639
     ImageEditor openOnClass:self andSelector:#iconCenterV
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   640
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   641
    "
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   642
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   643
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   644
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   645
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   646
        constantNamed:#'UIPainter class iconCenterV'
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   647
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   648
@@@@@@@@@@@@@@@@@@@@@@@@B**@J*(@B**MJ*(@@@@M@@@@@@@M@M@@@M@M@M@@@M@M@M@@@M@M@M@@B*****(@B*****(@@M@M@M@@@M@M@M@@@E@M@M@@
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   649
@@@M@E@@@@@M@@@@B**EJ*(@B(*@J*(@@@@@@@@@@@@@@@@@@@@@@@@@') ; 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 @@G @@G'' G''''!!G'''' G'''' G'''' O??0O??0G'''' G'''' G'''' G'''' @G''#@G @@G C@@@@@@@@@@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   650
!
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   651
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   652
iconCenterVInFrame
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   653
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   654
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   655
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   656
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   657
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   658
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   659
    "
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   660
     self iconCenterVInFrame inspect
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   661
     ImageEditor openOnClass:self andSelector:#iconCenterVInFrame
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   662
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   663
    "
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   664
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   665
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   666
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   667
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   668
        constantNamed:#'UIPainter class iconCenterVInFrame'
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   669
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   670
@@@@@@@@J******@H@@@@@B@HL3@L3B@H:*GJ*2@H@@G@@B@HG@G@@B@HG@G@GB@HG@G@GB@HG@G@GB@HG@G@GB@HG@G@GB@HG@G@GB@HG@G@GB@HG@G@EB@
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   671
HE@G@@B@H@@G@@B@H:*E@J2@HL3@L3B@H@@@@@B@J******@@@@@@@@@') ; 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:'@@@B_??9P@@HW??(TG (W'' (W''''*W''''(W''''*W'''')W''''(W'''')W''''+W''''*W''''*W''''(W'' )TG (W??(P@@H_??8@@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   672
!
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   673
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   674
iconDistributeH
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   675
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   676
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   677
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   678
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   679
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   680
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   681
    "
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   682
     self iconDistributeH inspect
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   683
     ImageEditor openOnClass:self andSelector:#iconDistributeH
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   684
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   685
    "
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   686
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   687
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   688
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   689
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   690
        constantNamed:#'UIPainter class iconDistributeH'
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   691
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
1863
f9a8e3c20143 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
   692
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@E@@E@@E@G@@G@@G@G@@G@@G@GHBGHBG@GHBGHBG@GJ*GJ*G@GHBGHBG@GHBGHBG@GB*GJ G@GB*GJ G@
f9a8e3c20143 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
   693
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:'@@@@@@@@@@@@@@@@<G <<G <<G ?<G =>O1?>O1????<>O1<>O1><G <<G ><G <<G ?@@@A@@@@@@@@@@@@@@@A') ; yourself); yourself]
1862
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   694
!
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   695
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   696
iconDistributeV
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   697
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   698
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   699
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   700
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   701
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   702
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   703
    "
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   704
     self iconDistributeV inspect
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   705
     ImageEditor openOnClass:self andSelector:#iconDistributeV
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   706
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   707
    "
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   708
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   709
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   710
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   711
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   712
        constantNamed:#'UIPainter class iconDistributeV'
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
   713
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
1863
f9a8e3c20143 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
   714
@@@@@@@@@@UUUT@@@@???4@@@@@@@@@@@@@*(@@@@@JB@@@@@@JB@@@@@@JB@@@@@@J*(@@@@@@@@@@@@@UUUT@@@@???4@@@@@@@@@@@@J*(@@@@@JB@@@@
f9a8e3c20143 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1862
diff changeset
   715
@@JB@@@@@@@B@@@@@@@*(@@@@@@@@@@@@@UUUT@@@@???4@@@@@@@@@@') ; 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??CA??@@G0@@A@@@A@@@A@@@G0CA??@A??@A??@A??@@G0C@A@@@A@@@A@@@G0AA??AA??@A??@A??B') ; yourself); yourself]
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
   716
! !
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
   717
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
   718
!UIPainter class methodsFor:'interface specs'!
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
   719
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   720
dialogSpecForDefiningClassAndSelector
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   721
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   722
     by the UIPainter of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   723
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
   724
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   725
     the UIPainter may not be able to read the specification."
366
68b0e0a329a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   726
68b0e0a329a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   727
    "
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   728
     UIPainter new openOnClass:UIPainter andSelector:#dialogSpecForDefiningClassAndSelector
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   729
     UIPainter new openInterface:#dialogSpecForDefiningClassAndSelector
366
68b0e0a329a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   730
    "
68b0e0a329a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   731
68b0e0a329a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   732
    <resource: #canvas>
68b0e0a329a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   733
68b0e0a329a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   734
    ^
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
   735
     
366
68b0e0a329a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   736
       #(#FullSpec
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   737
	  #window: 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   738
	   #(#WindowSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   739
	      #name: 'GUI Painter'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   740
	      #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
   741
	      #label: 'GUI Painter'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   742
	      #min: #(#Point 350 160)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   743
	      #max: #(#Point 500 160)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   744
	      #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
   745
	      #usePreferredExtent: false
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   746
	  )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   747
	  #component: 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   748
	   #(#SpecCollection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   749
	      #collection: 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   750
	       #(
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   751
		 #(#FramedBoxSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   752
		    #name: 'FramedBox'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   753
		    #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
   754
		    #component: 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   755
		     #(#SpecCollection
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   756
			#collection: 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   757
			 #(
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   758
			   #(#LabelSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   759
			      #name: 'selectorLabel'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   760
			      #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
   761
			      #label: 'Selector:'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   762
			      #translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   763
			      #adjust: #right
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   764
			      #resizeForLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   765
			  )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   766
			   #(#InputFieldSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   767
			      #name: 'methodNameField'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   768
			      #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
   769
			      #tabable: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   770
			      #model: #methodNameChannel
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   771
			      #group: #inputGroup
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   772
			  )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   773
			   #(#LabelSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   774
			      #name: 'classLabel'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   775
			      #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
   776
			      #label: 'Class:'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   777
			      #translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   778
			      #adjust: #right
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   779
			      #resizeForLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   780
			  )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   781
			   #(#InputFieldSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   782
			      #name: 'classNameField'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   783
			      #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
   784
			      #tabable: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   785
			      #model: #classNameChannel
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   786
			      #group: #inputGroup
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   787
			  )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   788
			   #(#LabelSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   789
			      #name: 'superClassLabel'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   790
			      #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
   791
			      #label: 'Superclass:'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   792
			      #translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   793
			      #adjust: #right
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   794
			      #resizeForLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   795
			  )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   796
			   #(#ComboBoxSpec
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   797
			      #name: 'superclassNameComboBox'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   798
			      #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
   799
			      #tabable: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   800
			      #model: #superclassNameChannel
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   801
			      #comboList: #superclassNameDefaults
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   802
			  )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   803
			)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   804
		    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   805
		    #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
   806
		    #labelPosition: #topLeft
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   807
		    #translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   808
		)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   809
		 #(#UISubSpecification
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   810
		    #name: 'subSpec'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   811
		    #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
   812
		    #majorKey: #ToolApplicationModel
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   813
		    #minorKey: #windowSpecForCommitWithoutChannels
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   814
		)
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   815
	      )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
   816
	  )
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   817
      )
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
   818
950
3e227dc788be fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents: 939
diff changeset
   819
    "Modified: / 13.8.1998 / 19:59:44 / cg"
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   820
!
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   821
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   822
dialogSpecForDefiningGridParameters
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   823
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   824
     by the UIPainter of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   825
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
   826
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   827
     the UIPainter may not be able to read the specification."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   828
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   829
    "
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   830
     UIPainter new openOnClass:UIPainter andSelector:#dialogSpecForDefiningGridParameters
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   831
     UIPainter new openInterface:#dialogSpecForDefiningGridParameters
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   832
    "
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   833
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   834
    <resource: #canvas>
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   835
1782
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   836
    ^ 
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   837
     #(FullSpec
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   838
        name: dialogSpecForDefiningGridParameters
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   839
        window: 
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   840
       (WindowSpec
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   841
          label: 'GUI Painter'
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   842
          name: 'GUI Painter'
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   843
          min: (Point 300 200)
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   844
          max: (Point 300 200)
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   845
          bounds: (Rectangle 16 46 298 244)
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   846
        )
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   847
        component: 
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   848
       (SpecCollection
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   849
          collection: (
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   850
           (FramedBoxSpec
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   851
              label: 'Grid Parameter'
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   852
              name: 'FramedBox'
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   853
              layout: (LayoutFrame 0 0.0 3 0.0 0 1.0 -35 1.0)
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   854
              labelPosition: topLeft
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   855
              translateLabel: true
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   856
              component: 
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   857
             (SpecCollection
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   858
                collection: (
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   859
                 (CheckBoxSpec
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   860
                    label: 'Show Grid'
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   861
                    name: 'ShowGridCheckBox'
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   862
                    layout: (Point 13 14)
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   863
                    model: showGrid
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   864
                    translateLabel: true
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   865
                  )
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   866
                 (CheckBoxSpec
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   867
                    label: 'Align To Grid'
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   868
                    name: 'AlignCheckBox'
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   869
                    layout: (Point 13 42)
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   870
                    model: alignToGrid
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   871
                    translateLabel: true
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   872
                  )
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   873
                 (LabelSpec
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   874
                    label: 'Horizontal Pixels:'
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   875
                    name: 'HorizontalPixelsLabel'
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   876
                    layout: (AlignmentOrigin 138 0 89 0 1 0.5)
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   877
                    translateLabel: true
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   878
                    resizeForLabel: true
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   879
                    adjust: right
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   880
                  )
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   881
                 (InputFieldSpec
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   882
                    name: 'HorizontalPixelsField'
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   883
                    layout: (LayoutFrame 144 0 77 0 197 0 99 0)
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   884
                    model: hspace
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   885
                    group: inputGroup
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   886
                    type: numberOrNil
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   887
                    acceptOnPointerLeave: false
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   888
                  )
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   889
                 (LabelSpec
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   890
                    label: 'Vertical Pixels:'
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   891
                    name: 'VerticalPixelsLabel'
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   892
                    layout: (AlignmentOrigin 139 0 114 0 1 0.5)
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   893
                    translateLabel: true
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   894
                    resizeForLabel: true
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   895
                    adjust: right
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   896
                  )
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   897
                 (InputFieldSpec
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   898
                    name: 'VerticalPixelsField'
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   899
                    layout: (LayoutFrame 144 0 102 0 197 0 124 0)
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   900
                    model: vspace
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   901
                    group: inputGroup
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   902
                    type: numberOrNil
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   903
                    acceptOnPointerLeave: false
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   904
                  )
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   905
                 )
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   906
               
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   907
              )
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   908
            )
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   909
           (UISubSpecification
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   910
              name: 'subSpec'
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   911
              layout: (LayoutFrame 0 0.0 -29 1 0 1.0 -5 1)
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   912
              majorKey: ToolApplicationModel
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   913
              minorKey: windowSpecForCommitWithoutChannels
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   914
            )
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   915
           )
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   916
         
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
   917
        )
366
68b0e0a329a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   918
      )
68b0e0a329a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   919
!
68b0e0a329a4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   920
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   921
windowSpec
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   922
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   923
     by the UIPainter of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   924
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   925
    "Do not manually edit this!! If it is corrupted,
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   926
     the UIPainter may not be able to read the specification."
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
   927
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
   928
    "
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   929
     UIPainter new openOnClass:UIPainter andSelector:#windowSpec
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   930
     UIPainter new openInterface:#windowSpec
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
   931
     UIPainter open
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
   932
    "
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
   933
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
   934
    <resource: #canvas>
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
   935
1115
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
   936
    ^ 
1739
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   937
     #(FullSpec
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   938
        name: windowSpec
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   939
        window: 
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   940
       (WindowSpec
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   941
          label: 'GUI Painter'
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   942
          name: 'GUI Painter'
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   943
          min: (Point 560 460)
1790
51711e3c7046 translateLabel in NoteBookView
ca
parents: 1782
diff changeset
   944
          bounds: (Rectangle 12 22 620 545)
2157
76aadc90818e mask of icons
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
   945
          icon: defaultIcon
1739
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   946
          menu: menu
1317
49d6dac15a57 update focusSequence in UIPainter
ca
parents: 1316
diff changeset
   947
        )
1739
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   948
        component: 
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   949
       (SpecCollection
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   950
          collection: (
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   951
           (MenuPanelSpec
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   952
              name: 'menuToolbarView'
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   953
              layout: (LayoutFrame 0 0.0 0 0 0 1.0 32 0)
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   954
              level: 1
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   955
              tabable: true
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   956
              menu: menuToolbar
1317
49d6dac15a57 update focusSequence in UIPainter
ca
parents: 1316
diff changeset
   957
            )
1739
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   958
           (VariableHorizontalPanelSpec
2001
b12d9b4dd6f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
   959
              name: 'mainPanel'
1739
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   960
              layout: (LayoutFrame 0 0.0 32 0.0 0 1.0 -24 1.0)
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   961
              level: 1
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   962
              component: 
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   963
             (SpecCollection
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   964
                collection: (
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   965
                 (ArbitraryComponentSpec
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   966
                    name: 'treeView'
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   967
                    tabable: true
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   968
                    menu: menuEdit
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   969
                    hasHorizontalScrollBar: true
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   970
                    hasVerticalScrollBar: true
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   971
                    miniScrollerHorizontal: true
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   972
                    miniScrollerVertical: true
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   973
                    hasBorder: false
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   974
                    component: treeView
1317
49d6dac15a57 update focusSequence in UIPainter
ca
parents: 1316
diff changeset
   975
                  )
1739
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   976
                 (ViewSpec
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   977
                    name: 'specHolderView'
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   978
                    level: 0
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   979
                    component: 
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   980
                   (SpecCollection
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   981
                      collection: (
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   982
                       (MenuPanelSpec
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   983
                          name: 'menuToolbar2View'
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   984
                          layout: (LayoutFrame 2 0.0 2 0 -2 1.0 32 0)
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   985
                          level: 0
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   986
                          tabable: true
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   987
                          menu: menuToolbar2
1317
49d6dac15a57 update focusSequence in UIPainter
ca
parents: 1316
diff changeset
   988
                        )
1739
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   989
                       (NoteBookViewSpec
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   990
                          name: 'noteBook'
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   991
                          layout: (LayoutFrame 2 0.0 32 0.0 -2 1.0 -28 1.0)
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   992
                          level: 0
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   993
                          enableChannel: enableChannel
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   994
                          tabable: true
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   995
                          model: tabModel
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   996
                          menu: tabList
1790
51711e3c7046 translateLabel in NoteBookView
ca
parents: 1782
diff changeset
   997
                          translateLabel: true
1739
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
   998
                          canvas: noteBookView
1317
49d6dac15a57 update focusSequence in UIPainter
ca
parents: 1316
diff changeset
   999
                        )
1739
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1000
                       (HorizontalPanelViewSpec
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1001
                          name: 'HorizontalPanel1'
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1002
                          layout: (LayoutFrame 2 0 -26 1 -2 1 -2 1)
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1003
                          horizontalLayout: fit
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1004
                          verticalLayout: fit
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1005
                          horizontalSpace: 3
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1006
                          verticalSpace: 3
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1007
                          reverseOrderIfOKAtLeft: true
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1008
                          component: 
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1009
                         (SpecCollection
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1010
                            collection: (
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1011
                             (ActionButtonSpec
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1012
                                label: 'Cancel'
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1013
                                name: 'cancelButton'
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1014
                                activeHelpKey: commitCancel
1782
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
  1015
                                translateLabel: true
1739
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1016
                                tabable: true
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1017
                                model: cancel
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1018
                                enableChannel: modifiedChannel
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1019
                                extent: (Point 201 24)
1457
8c15098c3469 ok button is left in some viewStyles
Claus Gittinger <cg@exept.de>
parents: 1456
diff changeset
  1020
                              )
1739
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1021
                             (ActionButtonSpec
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1022
                                label: 'OK'
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1023
                                name: 'acceptButton'
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1024
                                activeHelpKey: commitOK
1782
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
  1025
                                translateLabel: true
1739
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1026
                                tabable: true
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1027
                                model: accept
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1028
                                enableChannel: modifiedChannel
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1029
                                extent: (Point 201 24)
1457
8c15098c3469 ok button is left in some viewStyles
Claus Gittinger <cg@exept.de>
parents: 1456
diff changeset
  1030
                              )
8c15098c3469 ok button is left in some viewStyles
Claus Gittinger <cg@exept.de>
parents: 1456
diff changeset
  1031
                             )
8c15098c3469 ok button is left in some viewStyles
Claus Gittinger <cg@exept.de>
parents: 1456
diff changeset
  1032
                           
1317
49d6dac15a57 update focusSequence in UIPainter
ca
parents: 1316
diff changeset
  1033
                          )
49d6dac15a57 update focusSequence in UIPainter
ca
parents: 1316
diff changeset
  1034
                        )
49d6dac15a57 update focusSequence in UIPainter
ca
parents: 1316
diff changeset
  1035
                       )
1115
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
  1036
                     
1317
49d6dac15a57 update focusSequence in UIPainter
ca
parents: 1316
diff changeset
  1037
                    )
49d6dac15a57 update focusSequence in UIPainter
ca
parents: 1316
diff changeset
  1038
                  )
49d6dac15a57 update focusSequence in UIPainter
ca
parents: 1316
diff changeset
  1039
                 )
1115
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
  1040
               
1317
49d6dac15a57 update focusSequence in UIPainter
ca
parents: 1316
diff changeset
  1041
              )
1739
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1042
              handles: (Any 0.318868 1.0)
1317
49d6dac15a57 update focusSequence in UIPainter
ca
parents: 1316
diff changeset
  1043
            )
1739
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1044
           (UISubSpecification
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1045
              name: 'infoBarSubSpec'
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1046
              layout: (LayoutFrame 0 0.0 -24 1 0 1.0 0 1.0)
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1047
              level: 1
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1048
              majorKey: ToolApplicationModel
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  1049
              minorKey: windowSpecForInfoBar
1317
49d6dac15a57 update focusSequence in UIPainter
ca
parents: 1316
diff changeset
  1050
            )
49d6dac15a57 update focusSequence in UIPainter
ca
parents: 1316
diff changeset
  1051
           )
1115
1d0ff67419fc arrowButtons smaller
Claus Gittinger <cg@exept.de>
parents: 1103
diff changeset
  1052
         
1317
49d6dac15a57 update focusSequence in UIPainter
ca
parents: 1316
diff changeset
  1053
        )
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1054
      )
2157
76aadc90818e mask of icons
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  1055
76aadc90818e mask of icons
Claus Gittinger <cg@exept.de>
parents: 2138
diff changeset
  1056
    "Modified: / 10-02-2007 / 14:45:31 / cg"
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1057
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1058
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1059
!UIPainter class methodsFor:'menu specs'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  1060
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1061
menu
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1062
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1063
     by the MenuEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1064
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1065
    "Do not manually edit this!! If it is corrupted,
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1066
     the MenuEditor may not be able to read the specification."
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  1067
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  1068
    "
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1069
     MenuEditor new openOnClass:UIPainter andSelector:#menu
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1070
     (Menu new fromLiteralArrayEncoding:(UIPainter menu)) startUp
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1071
    "
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1072
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1073
    <resource: #menu>
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1074
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1075
    ^ 
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1076
     #(Menu
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1077
        (
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1078
         (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1079
            enabled: enableChannel
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1080
            label: '&File'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1081
            translateLabel: true
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1082
            submenu: 
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1083
           (Menu
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1084
              (
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1085
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1086
                  activeHelpKey: fileNew
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1087
                  label: 'New'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1088
                  itemValue: doNew
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1089
                  translateLabel: true
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1090
                  isVisible: isStandAlone
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1091
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1092
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1093
                  label: '-'
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1094
                  isVisible: isStandAlone
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1095
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1096
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1097
                  activeHelpKey: fileLoad
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1098
                  label: 'Load...'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1099
                  itemValue: doLoad
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1100
                  translateLabel: true
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1101
                  isVisible: isStandAlone
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1102
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1103
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1104
                  activeHelpKey: fileLoadSubspec
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1105
                  label: 'Load Subspec...'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1106
                  itemValue: doLoadSubspec
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1107
                  translateLabel: true
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1108
                  isVisible: isStandAlone
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1109
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1110
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1111
                  label: '-'
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1112
                  isVisible: isStandAlone
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1113
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1114
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1115
                  activeHelpKey: fileSave
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1116
                  label: 'Save'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1117
                  itemValue: doSave
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1118
                  translateLabel: true
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1119
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1120
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1121
                  activeHelpKey: fileSaveAs
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1122
                  label: 'Save As...'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1123
                  itemValue: doSaveAs
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1124
                  translateLabel: true
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1125
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1126
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1127
                  activeHelpKey: fileSaveAs
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1128
                  label: 'Define Class and Selector...'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1129
                  itemValue: doDefineClassAndSelector
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1130
                  translateLabel: true
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1131
                  isVisible: isStandAlone
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1132
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1133
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1134
                  label: '-'
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1135
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1136
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1137
                  activeHelpKey: filePickAnInterface
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1138
                  label: 'Pick a Window Spec...'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1139
                  itemValue: doPickAView
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1140
                  translateLabel: true
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1141
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1142
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1143
                  label: '-'
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1144
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1145
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1146
                  activeHelpKey: fileShowWindowSpec
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1147
                  label: 'Show Window Spec'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1148
                  itemValue: doWindowSpec
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1149
                  translateLabel: true
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1150
                  isVisible: isStandAlone
1498
817cce99fc96 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1487
diff changeset
  1151
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1152
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1153
                  activeHelpKey: fileBrowseClass
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1154
                  enabled: hasSpecClass
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1155
                  label: 'Browse Applications Class'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1156
                  itemValue: doBrowseClass
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1157
                  translateLabel: true
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1158
                  isVisible: isStandAlone
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1159
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1160
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1161
                  activeHelpKey: fileBrowseAspectMethods
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1162
                  enabled: hasSpecClass
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1163
                  label: 'Browse Applications Aspect Methods'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1164
                  itemValue: doBrowseAspectMethods
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1165
                  translateLabel: true
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1166
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1167
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1168
                  label: '-'
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1169
                  isVisible: isStandAlone
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1170
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1171
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1172
                  activeHelpKey: fileExit
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1173
                  label: 'Exit'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1174
                  itemValue: closeRequest
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1175
                  translateLabel: true
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1176
                  isVisible: isStandAlone
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1177
                )
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1178
               )
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1179
              nil
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1180
              nil
1498
817cce99fc96 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1487
diff changeset
  1181
            )
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1182
          )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1183
         (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1184
            label: 'Edit'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1185
            translateLabel: true
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1186
            submenuChannel: menuEdit
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1187
          )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1188
         (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1189
            label: 'Align'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1190
            translateLabel: true
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1191
            submenuChannel: menuAlign
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1192
          )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1193
         (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1194
            label: 'Generate'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1195
            translateLabel: true
2198
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  1196
            isVisible: isNotEditingSpecOnly
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1197
            submenu: 
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1198
           (Menu
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1199
              (
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1200
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1201
                  activeHelpKey: generateAspectMethods
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1202
                  enabled: hasSpecClass
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1203
                  label: 'Aspect Methods'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1204
                  itemValue: doGenerateAspectMethods
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1205
                  translateLabel: true
1498
817cce99fc96 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1487
diff changeset
  1206
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1207
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1208
                  activeHelpKey: generateAspectMethodFor
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1209
                  enabled: hasSpecClass
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1210
                  label: 'Aspect Method For...'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1211
                  itemValue: doGenerateAspectMethodFor
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1212
                  translateLabel: true
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1213
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1214
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1215
                  enabled: hasSpecClass
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1216
                  label: 'Menu Stub Methods'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1217
                  itemValue: doGenerateMenuMethods
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1218
                  translateLabel: true
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1219
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1220
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1221
                  label: '-'
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1222
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1223
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1224
                  activeHelpKey: generateHookMethods
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1225
                  enabled: hasSpecClass
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1226
                  label: 'Hook Methods'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1227
                  itemValue: doGenerateHookMethods
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1228
                  translateLabel: true
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1229
                )
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1230
               )
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1231
              nil
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1232
              nil
1498
817cce99fc96 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1487
diff changeset
  1233
            )
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1234
          )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1235
         (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1236
            label: 'Test'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1237
            translateLabel: true
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1238
            submenu: 
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1239
           (Menu
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1240
              (
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1241
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1242
                  activeHelpKey: testStartApplication
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1243
                  label: 'Start Application'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1244
                  itemValue: doStartApplication
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1245
                  translateLabel: true
2198
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  1246
                  isVisible: isNotEditingSpecOnly
1498
817cce99fc96 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1487
diff changeset
  1247
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1248
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1249
                  label: '-'
2198
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  1250
                  isVisible: isNotEditingSpecOnly
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1251
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1252
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1253
                  activeHelpKey: testGeometryTestMode
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1254
                  label: 'Geometry Test Mode'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1255
                  translateLabel: true
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1256
                  indication: testMode:
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1257
                )
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1258
               )
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1259
              nil
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1260
              nil
1498
817cce99fc96 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1487
diff changeset
  1261
            )
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1262
          )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1263
         (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1264
            label: 'Settings'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1265
            translateLabel: true
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1266
            submenu: 
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1267
           (Menu
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1268
              (
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1269
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1270
                  activeHelpKey: settingsCanvas
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1271
                  label: 'Canvas'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1272
                  translateLabel: true
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1273
                  indication: painterShown
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1274
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1275
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1276
                  activeHelpKey: settingsGallery
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1277
                  label: 'Gallery'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1278
                  translateLabel: true
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1279
                  indication: galleryShown
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1280
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1281
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1282
                  label: '-'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1283
                )
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1284
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1285
                  activeHelpKey: settingsRedefineAspectMethods
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1286
                  enabled: hasSpecClass
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1287
                  label: 'Redefine Aspect Methods'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1288
                  translateLabel: true
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1289
                  indication: redefineAspectMethods:
2198
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  1290
                  isVisible: isNotEditingSpecOnly
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1291
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1292
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1293
                  activeHelpKey: settingsAspectsAsInstances
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1294
                  enabled: hasSpecClass
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1295
                  label: 'Aspects as InstanceVariables'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1296
                  translateLabel: true
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1297
                  indication: generateAspectsAsInstanceVariables:
2198
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  1298
                  isVisible: isNotEditingSpecOnly
1498
817cce99fc96 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1487
diff changeset
  1299
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1300
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1301
                  label: 'AutoAccept on Selection-Change '
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1302
                  translateLabel: true
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1303
                  indication: autoAcceptOnSelectionChange
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1304
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1305
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1306
                  label: '-'
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1307
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1308
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1309
                  activeHelpKey: settingsUndoManager
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1310
                  enabled: hasUndoHistory
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1311
                  label: 'Undo Manager...'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1312
                  itemValue: openUndoMenu
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1313
                  translateLabel: true
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1314
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1315
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1316
                  activeHelpKey: settingsGridManager
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1317
                  label: 'Grid Manager...'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1318
                  itemValue: doDefineGrid
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1319
                  translateLabel: true
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1320
                )
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1321
               )
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1322
              nil
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1323
              nil
1498
817cce99fc96 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1487
diff changeset
  1324
            )
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1325
          )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1326
         (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1327
            label: 'History'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1328
            translateLabel: true
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1329
            isVisible: isStandAlone
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1330
            submenuChannel: menuHistory
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1331
          )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1332
         (MenuItem
2138
55f338a77eb0 support '?' as help (for now: controlled by resources)
Claus Gittinger <cg@exept.de>
parents: 2124
diff changeset
  1333
            label: 'MENU_Help'
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1334
            translateLabel: true
2124
214c0d1d3c5a #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2117
diff changeset
  1335
            startGroup: conditionalRight
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1336
            submenu: 
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1337
           (Menu
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1338
              (
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1339
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1340
                  activeHelpKey: helpTutorial
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1341
                  label: 'Tutorial'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1342
                  itemValue: openHTMLDocument:
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1343
                  translateLabel: true
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1344
                  argument: 'tools/uipainter/TOP.html'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1345
                )
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1346
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1347
                  label: '-'
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1348
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1349
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1350
                  activeHelpKey: helpFunctions
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1351
                  label: 'Functions'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1352
                  itemValue: openHTMLDocument:
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1353
                  translateLabel: true
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1354
                  argument: 'tools/uipainter/Functions.html'
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1355
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1356
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1357
                  activeHelpKey: helpExamples
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1358
                  label: 'Examples'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1359
                  itemValue: openHTMLDocument:
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1360
                  translateLabel: true
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1361
                  argument: 'tools/uipainter/Examples.html'
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1362
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1363
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1364
                  label: '-'
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1365
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1366
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1367
                  activeHelpKey: helpHelpTool
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1368
                  label: 'Help Tool'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1369
                  itemValue: openHTMLDocument:
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1370
                  translateLabel: true
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1371
                  argument: 'tools/uipainter/HelpTool.html'
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1372
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1373
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1374
                  activeHelpKey: helpLayoutTool
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1375
                  label: 'Layout Tool'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1376
                  itemValue: openHTMLDocument:
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1377
                  translateLabel: true
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1378
                  argument: 'tools/uipainter/LayoutTool.html'
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1379
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1380
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1381
                  label: '-'
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1382
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1383
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1384
                  activeHelpKey: helpSelectedWidget
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1385
                  label: 'Selected Widget'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1386
                  itemValue: doOpenWidgetDocumentation
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1387
                  translateLabel: true
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1388
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1389
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1390
                  label: '-'
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1391
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1392
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1393
                  activeHelpKey: helpShowHelp
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1394
                  label: 'Show Help Texts'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1395
                  translateLabel: true
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1396
                  indication: showingHelp:
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1397
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1398
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1399
                  label: '-'
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1400
                )
1775
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1401
               (MenuItem
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1402
                  activeHelpKey: aboutThisAppliaction
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1403
                  label: 'About this Application...'
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1404
                  itemValue: openAboutThisApplication
695f10f213d1 no flyByHelp for menu
ca
parents: 1772
diff changeset
  1405
                  translateLabel: true
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1406
                )
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1407
               )
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1408
              nil
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1409
              nil
1498
817cce99fc96 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1487
diff changeset
  1410
            )
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1411
          )
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1412
         )
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1413
        nil
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  1414
        nil
564
df1f1e84d94a add menu added
tz
parents: 547
diff changeset
  1415
      )
df1f1e84d94a add menu added
tz
parents: 547
diff changeset
  1416
!
df1f1e84d94a add menu added
tz
parents: 547
diff changeset
  1417
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1418
menuAlign
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1419
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1420
     by the MenuEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1421
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
  1422
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1423
     the MenuEditor may not be able to read the specification."
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1424
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1425
    "
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1426
     MenuEditor new openOnClass:UIPainter andSelector:#menuAlign
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1427
     (Menu new fromLiteralArrayEncoding:(UIPainter menuAlign)) startUp
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  1428
    "
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  1429
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  1430
    <resource: #menu>
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  1431
1862
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1432
    ^ 
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1433
     #(Menu
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1434
        (
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1435
         (MenuItem
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1436
            activeHelpKey: alignSelectionLeft
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1437
            enabled: canMoveOrAlignSelection
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1438
            label: 'Left'
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1439
            itemValue: alignSelectionLeft
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1440
            translateLabel: true
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1441
            labelImage: (ResourceRetriever UIPainter iconAlignL 'Left')
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1442
          )
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1443
         (MenuItem
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1444
            activeHelpKey: alignSelectionRight
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1445
            enabled: canMoveOrAlignSelection
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1446
            label: 'Right'
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1447
            itemValue: alignSelectionRight
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1448
            translateLabel: true
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1449
            labelImage: (ResourceRetriever UIPainter iconAlignR 'Right')
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1450
          )
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1451
         (MenuItem
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1452
            activeHelpKey: alignSelectionLeftAndRight
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1453
            enabled: canMoveOrAlignSelection
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1454
            label: 'Left && Right'
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1455
            itemValue: alignSelectionLeftAndRight
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1456
            translateLabel: true
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1457
            labelImage: (ResourceRetriever UIPainter iconAlignLR 'Left & Right')
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1458
          )
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1459
         (MenuItem
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1460
            activeHelpKey: alignSelectionTop
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1461
            enabled: canMoveOrAlignSelection
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1462
            label: 'Top'
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1463
            itemValue: alignSelectionTop
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1464
            translateLabel: true
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1465
            labelImage: (ResourceRetriever UIPainter iconAlignT 'Top')
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1466
          )
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1467
         (MenuItem
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1468
            activeHelpKey: alignSelectionBottom
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1469
            enabled: canMoveOrAlignSelection
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1470
            label: 'Bottom'
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1471
            itemValue: alignSelectionBottom
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1472
            translateLabel: true
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1473
            labelImage: (ResourceRetriever UIPainter iconAlignB 'Bottom')
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1474
          )
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1475
         (MenuItem
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1476
            activeHelpKey: alignSelectionTopAndBottom
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1477
            enabled: canMoveOrAlignSelection
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1478
            label: 'Top && Bottom'
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1479
            itemValue: alignSelectionTopAndBottom
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1480
            translateLabel: true
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1481
            labelImage: (ResourceRetriever UIPainter iconAlignTB 'Top & Bottom')
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1482
          )
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1483
         (MenuItem
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1484
            label: '-'
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1485
          )
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1486
         (MenuItem
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1487
            activeHelpKey: alignSelectionCenterHor
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1488
            enabled: canMoveOrAlignSelection
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1489
            label: 'Center Horizontal'
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1490
            itemValue: alignSelectionCenterHor
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1491
            translateLabel: true
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1492
            labelImage: (ResourceRetriever UIPainter iconCenterH '')
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1493
          )
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1494
         (MenuItem
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1495
            activeHelpKey: centerSelectionHor
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1496
            enabled: canMoveOrAlignSelection
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1497
            label: 'Center Horizontal in Frame'
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1498
            itemValue: centerSelectionHor
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1499
            translateLabel: true
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1500
            labelImage: (ResourceRetriever UIPainter iconCenterHInFrame '')
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1501
          )
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1502
         (MenuItem
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1503
            activeHelpKey: alignSelectionCenterVer
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1504
            enabled: canMoveOrAlignSelection
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1505
            label: 'Center Vertical'
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1506
            itemValue: alignSelectionCenterVer
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1507
            translateLabel: true
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1508
            labelImage: (ResourceRetriever UIPainter iconCenterV '')
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1509
          )
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1510
         (MenuItem
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1511
            activeHelpKey: centerSelectionVer
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1512
            enabled: canMoveOrAlignSelection
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1513
            label: 'Center Vertical in Frame'
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1514
            itemValue: centerSelectionVer
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1515
            translateLabel: true
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1516
            labelImage: (ResourceRetriever UIPainter iconCenterVInFrame '')
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1517
          )
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1518
         (MenuItem
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1519
            label: '-'
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1520
          )
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1521
         (MenuItem
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1522
            activeHelpKey: spreadSelectionHor
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1523
            enabled: canMoveOrAlignSelection
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1524
            label: 'Distribute Horizontal'
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1525
            itemValue: spreadSelectionHor
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1526
            translateLabel: true
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1527
            labelImage: (ResourceRetriever UIPainter iconDistributeH '')
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1528
          )
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1529
         (MenuItem
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1530
            activeHelpKey: spreadSelectionVer
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1531
            enabled: canMoveOrAlignSelection
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1532
            label: 'Distribute Vertical'
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1533
            itemValue: spreadSelectionVer
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1534
            translateLabel: true
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1535
            labelImage: (ResourceRetriever UIPainter iconDistributeV '')
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1536
          )
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1537
         )
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1538
        nil
Claus Gittinger <cg@exept.de>
parents: 1851
diff changeset
  1539
        nil
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1540
      )
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1541
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1542
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1543
menuEdit
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1544
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1545
     by the MenuEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1546
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  1547
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1548
     the MenuEditor may not be able to read the specification."
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1549
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1550
    "
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1551
     MenuEditor new openOnClass:UIPainter andSelector:#menuEdit
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1552
     (Menu new fromLiteralArrayEncoding:(UIPainter menuEdit)) startUp
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1553
    "
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1554
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1555
    <resource: #menu>
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1556
1827
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1557
    ^ 
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1558
     #(Menu
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1559
        (
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1560
         (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1561
            activeHelpKey: editUndo
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1562
            enabled: hasUndoHistory
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1563
            label: 'Undo'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1564
            itemValue: undoLast
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1565
            nameKey: undo
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1566
            translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1567
          )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1568
         (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1569
            label: '-'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1570
          )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1571
         (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1572
            activeHelpKey: editCut
1991
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  1573
            enabled: canCutHolder
1827
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1574
            label: 'Cut'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1575
            itemValue: deleteSelection
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1576
            translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1577
          )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1578
         (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1579
            activeHelpKey: editCopy
1991
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  1580
            enabled: canCopyHolder
1827
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1581
            label: 'Copy'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1582
            itemValue: copySelection
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1583
            translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1584
          )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1585
         (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1586
            activeHelpKey: pasteBuffer
1991
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  1587
            enabled: canPasteHolder
1827
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1588
            label: 'Paste'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1589
            itemValue: pasteBuffer
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1590
            translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1591
          )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1592
         (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1593
            activeHelpKey: pasteWithLayout
1991
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  1594
            enabled: canPasteKeepingLayoutHolder
1827
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1595
            label: 'Paste with Layout'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1596
            itemValue: pasteWithLayout
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1597
            translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1598
          )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1599
         (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1600
            activeHelpKey: editPaste
1991
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  1601
            enabled: canPasteKeepingLayoutHolder
1827
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1602
            label: 'Paste Keeping Absolute Position'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1603
            itemValue: pasteKeepingPosition
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1604
            translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1605
          )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1606
         (MenuItem
1940
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1607
            activeHelpKey: editDelete
1991
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  1608
            enabled: canCutHolder
1940
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1609
            label: 'Delete'
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1610
            itemValue: deleteTotalSelection
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1611
            translateLabel: true
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1612
          )
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1613
         (MenuItem
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1614
            activeHelpKey: moveWidgetUp
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1615
            enabled: canReplaceSelection
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1616
            label: 'Replace...'
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1617
            itemValue: doAskAndReplaceWidgetBy
1940
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1618
            translateLabel: true
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1619
          )
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1620
         (MenuItem
1827
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1621
            label: '-'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1622
          )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1623
         (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1624
            enabled: canMoveSelection
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1625
            label: 'Move'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1626
            translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1627
            submenuChannel: menuMove
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1628
          )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1629
         (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1630
            enabled: hasSelection
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1631
            label: 'Dimension'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1632
            translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1633
            submenu: 
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1634
           (Menu
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1635
              (
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1636
               (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1637
                  activeHelpKey: editDimensionDefaultExtent
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1638
                  enabled: canMoveOrAlignSelection
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1639
                  label: 'Default Extent'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1640
                  itemValue: setToDefaultExtent
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1641
                  translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1642
                )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1643
               (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1644
                  activeHelpKey: editDimensionDefaultWidth
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1645
                  enabled: canMoveOrAlignSelection
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1646
                  label: 'Default Width'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1647
                  itemValue: setToDefaultWidth
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1648
                  translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1649
                )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1650
               (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1651
                  activeHelpKey: editDimensionDefaultHeight
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1652
                  enabled: canMoveOrAlignSelection
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1653
                  label: 'Default Height'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1654
                  itemValue: setToDefaultHeight
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1655
                  translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1656
                )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1657
               (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1658
                  label: '-'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1659
                )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1660
               (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1661
                  activeHelpKey: editDimensionCopyLayout
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1662
                  enabled: hasSingleSelection
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1663
                  label: 'Copy Layout'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1664
                  itemValue: copyLayout
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1665
                  translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1666
                )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1667
               (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1668
                  activeHelpKey: editDimensionPasteLayout
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1669
                  enabled: canMoveOrAlignSelection
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1670
                  label: 'Paste Layout'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1671
                  itemValue: pasteLayout
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1672
                  translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1673
                )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1674
               (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1675
                  activeHelpKey: editDimensionExchangeLayouts
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1676
                  enabled: canExchangeSelectionLayouts
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1677
                  label: 'Exchange Layouts'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1678
                  itemValue: exchangeLayouts
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1679
                  translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1680
                )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1681
               (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1682
                  label: '-'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1683
                )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1684
               (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1685
                  activeHelpKey: editDimensionCopyExtent
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1686
                  enabled: hasSingleSelection
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1687
                  label: 'Copy Extent'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1688
                  itemValue: copyExtent
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1689
                  translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1690
                )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1691
               (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1692
                  activeHelpKey: editDimensionPasteExtent
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1693
                  enabled: canMoveOrAlignSelection
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1694
                  label: 'Paste Extent'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1695
                  itemValue: pasteExtent
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1696
                  translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1697
                )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1698
               (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1699
                  activeHelpKey: editDimensionPasteWidth
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1700
                  enabled: canMoveOrAlignSelection
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1701
                  label: 'Paste Width'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1702
                  itemValue: pasteWidth
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1703
                  translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1704
                )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1705
               (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1706
                  activeHelpKey: editDimensionPasteHeight
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1707
                  enabled: canMoveOrAlignSelection
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1708
                  label: 'Paste Height'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1709
                  itemValue: pasteHeight
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1710
                  translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1711
                )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1712
               )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1713
              nil
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1714
              nil
1230
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  1715
            )
1827
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1716
          )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1717
         (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1718
            label: '-'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1719
          )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1720
         (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1721
            activeHelpKey: editOpenSpecDocumentation
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1722
            label: 'Open Widget Documentation'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1723
            itemValue: doOpenWidgetDocumentation
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1724
            translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1725
          )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1726
         (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1727
            activeHelpKey: referToCOnfigDatabase
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1728
            label: 'Refer to Config Database'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1729
            itemValue: configSelection
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1730
            translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1731
            isVisible: false
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1732
          )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1733
         (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1734
            label: '-'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1735
            isVisible: false
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1736
          )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1737
         (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1738
            activeHelpKey: drawEdit
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1739
            label: 'Draw Edit'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1740
            itemValue: shapeEdit
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1741
            translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1742
            isVisible: false
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1743
          )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1744
         (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1745
            label: '-'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1746
          )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1747
         (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1748
            activeHelpKey: group
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1749
            enabled: enGroup
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1750
            label: 'Group'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1751
            itemValue: group
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1752
            translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1753
          )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1754
         (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1755
            activeHelpKey: groupWithLayout
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1756
            enabled: enGroup
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1757
            label: 'Group with Layout'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1758
            itemValue: groupWithLayout
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1759
            translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1760
          )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1761
         (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1762
            activeHelpKey: ungroup
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1763
            enabled: enUngroup
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1764
            label: 'Ungroup'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1765
            itemValue: ungroup
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1766
            translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1767
          )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1768
         (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1769
            activeHelpKey: ungroupWithLayout
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1770
            enabled: enUngroup
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1771
            label: 'Ungroup with Layout'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1772
            itemValue: ungroupWithLayout
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1773
            translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1774
          )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1775
         (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1776
            label: '-'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1777
          )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1778
         (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1779
            activeHelpKey: editBrowseViewClass
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1780
            enabled: hasOneSelectionOtherThanCanvas
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1781
            label: 'Browse Widget Class'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1782
            itemValue: doBrowseViewClass
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1783
            translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1784
          )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1785
         (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1786
            activeHelpKey: editInspectView
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1787
            enabled: hasOneSelectionOtherThanCanvas
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1788
            label: 'Inspect Widget'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1789
            itemValue: doInspectView
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1790
            translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1791
          )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1792
         (MenuItem
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1793
            activeHelpKey: editInspectSpec
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1794
            label: 'Inspect Spec'
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1795
            itemValue: doInspectSpec
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1796
            translateLabel: true
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1797
          )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1798
         )
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1799
        nil
691d1471cd3e WOs changes
werner
parents: 1820
diff changeset
  1800
        nil
498
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1801
      )
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1802
!
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1803
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1804
menuMove
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1805
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1806
     by the MenuEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1807
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  1808
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1809
     the MenuEditor may not be able to read the specification."
498
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1810
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1811
    "
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1812
     MenuEditor new openOnClass:UIPainter andSelector:#menuMove
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1813
     (Menu new fromLiteralArrayEncoding:(UIPainter menuMove)) startUp
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1814
    "
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1815
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1816
    <resource: #menu>
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1817
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1818
    ^
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1819
     
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1820
       #(#Menu
43a78c5f806c help texts added
tz
parents: 496
diff changeset
  1821
          
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1822
	   #(
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1823
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1824
		#label: 'Up'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1825
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1826
		#value: #doStepUp
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1827
		#activeHelpKey: #moveWidgetUp
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1828
		#enabled: #canChangeOrderInContainer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1829
		#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
  1830
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1831
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1832
		#label: 'Down'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1833
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1834
		#value: #doStepDown
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1835
		#activeHelpKey: #moveWidgetDown
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1836
		#enabled: #canChangeOrderInContainer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1837
		#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
  1838
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1839
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1840
		#label: 'Into'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1841
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1842
		#value: #doStepIn
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1843
		#activeHelpKey: #moveWidgetInto
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1844
		#enabled: #canMoveSelectionIntoContainer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1845
		#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
  1846
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1847
	     #(#MenuItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1848
		#label: 'Out'
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1849
		#translateLabel: true
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1850
		#value: #doStepOut
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1851
		#activeHelpKey: #moveWidgetOut
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1852
		#enabled: #canMoveSelectionOutOfContainer
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1853
		#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
  1854
	    )
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1855
	  ) nil
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1856
	  nil
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1857
      )
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1858
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1859
1940
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1860
menuReplaceWidget
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1861
    "This resource specification was automatically generated
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1862
     by the MenuEditor of ST/X."
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1863
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1864
    "Do not manually edit this!! If it is corrupted,
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1865
     the MenuEditor may not be able to read the specification."
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1866
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1867
    "
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1868
     MenuEditor new openOnClass:UIPainter andSelector:#menuReplaceWidget
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1869
     (Menu new fromLiteralArrayEncoding:(UIPainter menuReplaceWidget)) startUp
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1870
    "
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1871
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1872
    <resource: #menu>
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1873
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1874
    ^ 
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1875
     #(Menu
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1876
        (
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1877
         (MenuItem
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1878
            activeHelpKey: moveWidgetUp
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1879
            enabled: canChangeOrderInContainer
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1880
            label: 'Replace By...'
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1881
            itemValue: doAskAndReplaceWidgetBy
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1882
            translateLabel: true
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1883
          )
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1884
         )
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1885
        nil
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1886
        nil
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1887
      )
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1888
!
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  1889
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1890
menuToolbar
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1891
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1892
     by the MenuEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1893
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
  1894
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  1895
     the MenuEditor may not be able to read the specification."
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1896
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1897
    "
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1898
     MenuEditor new openOnClass:UIPainter andSelector:#menuToolbar
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1899
     (Menu new fromLiteralArrayEncoding:(UIPainter menuToolbar)) startUp
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1900
    "
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1901
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1902
    <resource: #menu>
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  1903
1690
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
  1904
    ^ 
1750
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1905
     #(Menu
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1906
        (
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1907
         (MenuItem
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1908
            activeHelpKey: testStartApplication
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1909
            label: 'Start'
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1910
            itemValue: doStartApplication
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1911
            translateLabel: true
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1912
            isButton: true
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1913
            labelImage: (ResourceRetriever ToolbarIconLibrary start22x22Icon)
1690
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
  1914
          )
1750
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1915
         (MenuItem
1917
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  1916
            label: '-'
1690
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
  1917
          )
1750
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1918
         (MenuItem
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1919
            activeHelpKey: fileNew
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1920
            label: 'New'
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1921
            itemValue: doNew
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1922
            translateLabel: true
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1923
            isButton: true
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1924
            isVisible: isStandAlone
2198
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  1925
            labelImage: (ResourceRetriever ToolbarIconLibrary newWindowSpecIcon)
1690
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
  1926
          )
1750
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1927
         (MenuItem
1950
aaf6499564ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
  1928
            label: '-'
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1929
            isVisible: isStandAlone
1950
aaf6499564ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
  1930
          )
aaf6499564ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1940
diff changeset
  1931
         (MenuItem
1750
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1932
            activeHelpKey: fileLoad
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1933
            label: 'Load'
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1934
            itemValue: doLoad
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1935
            translateLabel: true
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1936
            isButton: true
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1937
            isVisible: isStandAlone
2198
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  1938
            labelImage: (ResourceRetriever ToolbarIconLibrary loadFromMethodIcon)
1690
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
  1939
          )
1750
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1940
         (MenuItem
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1941
            activeHelpKey: fileSave
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1942
            label: 'Save'
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1943
            itemValue: doSave
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1944
            translateLabel: true
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1945
            isButton: true
1883
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
  1946
            labelImage: (ResourceRetriever ToolbarIconLibrary saveAsMethodIcon)
1690
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
  1947
          )
1750
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1948
         (MenuItem
1917
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  1949
            label: '-'
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  1950
          )
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  1951
         (MenuItem
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  1952
            activeHelpKey: editUndo
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  1953
            enabled: hasUndoHistoryHolder
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  1954
            label: 'Undo'
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  1955
            itemValue: undoLast
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  1956
            translateLabel: true
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  1957
            isButton: true
2198
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  1958
            labelImage: (ResourceRetriever ToolbarIconLibrary undoIcon)
1917
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  1959
          )
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  1960
         (MenuItem
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  1961
            label: '-'
1690
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
  1962
          )
1750
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1963
         (MenuItem
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1964
            activeHelpKey: editCut
1991
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  1965
            enabled: canCutHolder
1750
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1966
            label: 'Cut'
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1967
            itemValue: deleteSelection
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1968
            translateLabel: true
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1969
            isButton: true
1883
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
  1970
            labelImage: (ResourceRetriever ToolbarIconLibrary cutWidgetIcon)
1690
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
  1971
          )
1750
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1972
         (MenuItem
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1973
            activeHelpKey: editCopy
1991
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  1974
            enabled: canCopyHolder
1750
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1975
            label: 'Copy'
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1976
            itemValue: copySelection
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1977
            translateLabel: true
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1978
            isButton: true
1883
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
  1979
            labelImage: (ResourceRetriever ToolbarIconLibrary copyWidgetIcon)
1690
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
  1980
          )
1750
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1981
         (MenuItem
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1982
            activeHelpKey: editPaste
1991
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  1983
            enabled: canPasteKeepingLayoutHolder
1750
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1984
            label: 'Paste With Layout'
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1985
            itemValue: pasteWithLayout
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1986
            translateLabel: true
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1987
            isButton: true
1883
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
  1988
            labelImage: (ResourceRetriever ToolbarIconLibrary pasteWidgetIcon)
1690
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
  1989
          )
1750
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1990
         (MenuItem
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1991
            activeHelpKey: editDelete
1991
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  1992
            enabled: canCutHolder
1750
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1993
            label: 'Delete'
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1994
            itemValue: deleteTotalSelection
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1995
            translateLabel: true
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  1996
            isButton: true
1820
3d834d5e5bb4 toolbar icons & help texts
Claus Gittinger <cg@exept.de>
parents: 1819
diff changeset
  1997
            isVisible: false
1883
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
  1998
            labelImage: (ResourceRetriever ToolbarIconLibrary deleteWidgetIcon)
1690
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
  1999
          )
1750
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2000
         (MenuItem
1917
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2001
            label: '-'
1690
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
  2002
          )
1750
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2003
         (MenuItem
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2004
            activeHelpKey: moveWidgetUp
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2005
            enabled: canChangeOrderInContainer
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2006
            label: 'Move Up'
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2007
            itemValue: doStepUp
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2008
            translateLabel: true
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2009
            isButton: true
1883
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
  2010
            labelImage: (ResourceRetriever ToolbarIconLibrary moveWidgetUpIcon)
1690
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
  2011
          )
1750
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2012
         (MenuItem
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2013
            activeHelpKey: moveWidgetDown
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2014
            enabled: canChangeOrderInContainer
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2015
            label: 'Move Down'
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2016
            itemValue: doStepDown
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2017
            translateLabel: true
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2018
            isButton: true
1883
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
  2019
            labelImage: (ResourceRetriever ToolbarIconLibrary moveWidgetDownIcon)
1690
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
  2020
          )
1750
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2021
         (MenuItem
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2022
            activeHelpKey: moveWidgetInto
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2023
            enabled: canMoveSelectionIntoContainer
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2024
            label: 'Move Into'
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2025
            itemValue: doStepIn
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2026
            translateLabel: true
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2027
            isButton: true
1883
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
  2028
            labelImage: (ResourceRetriever ToolbarIconLibrary moveWidgetDownRightIcon)
1690
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
  2029
          )
1750
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2030
         (MenuItem
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2031
            activeHelpKey: moveWidgetOut
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2032
            enabled: canMoveSelectionOutOfContainer
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2033
            label: 'Move Out'
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2034
            itemValue: doStepOut
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2035
            translateLabel: true
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2036
            isButton: true
1883
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
  2037
            labelImage: (ResourceRetriever ToolbarIconLibrary moveWidgetLeftDownIcon)
1690
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
  2038
          )
1750
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2039
         (MenuItem
1917
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2040
            label: '-'
1820
3d834d5e5bb4 toolbar icons & help texts
Claus Gittinger <cg@exept.de>
parents: 1819
diff changeset
  2041
            startGroup: right
1690
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
  2042
          )
1750
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2043
         (MenuItem
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2044
            activeHelpKey: settingsCanvas
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2045
            label: 'Canvas'
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2046
            translateLabel: true
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2047
            indication: painterShown
1690
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
  2048
          )
1750
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2049
         (MenuItem
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2050
            activeHelpKey: settingsGallery
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2051
            label: 'Gallery'
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2052
            translateLabel: true
f175cc37a17a toolBar: button image
Claus Gittinger <cg@exept.de>
parents: 1742
diff changeset
  2053
            indication: galleryShown
1690
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
  2054
          )
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
  2055
         )
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
  2056
        nil
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
  2057
        nil
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2058
      )
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2059
!
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2060
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2061
menuToolbar2
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2062
    "This resource specification was automatically generated
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2063
     by the MenuEditor of ST/X."
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2064
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
  2065
    "Do not manually edit this!! If it is corrupted,
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2066
     the MenuEditor may not be able to read the specification."
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2067
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2068
    "
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2069
     MenuEditor new openOnClass:UIPainter andSelector:#menuToolbar2
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2070
     (Menu new fromLiteralArrayEncoding:(UIPainter menuToolbar2)) startUp
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2071
    "
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2072
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2073
    <resource: #menu>
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  2074
1565
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2075
    ^ 
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2076
     #(#Menu
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2077
        #(
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2078
         #(#MenuItem
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2079
            #label: 'Align Left'
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2080
            #isButton: true
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2081
            #value: #alignSelectionLeft
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2082
            #activeHelpKey: #alignSelectionLeft
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2083
            #enabled: #canMoveOrAlignSelection
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2084
            #labelImage: #(#ResourceRetriever nil #iconAlignL)
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2085
          )
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2086
         #(#MenuItem
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2087
            #label: 'Align Right'
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2088
            #isButton: true
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2089
            #value: #alignSelectionRight
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2090
            #activeHelpKey: #alignSelectionRight
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2091
            #enabled: #canMoveOrAlignSelection
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2092
            #labelImage: #(#ResourceRetriever nil #iconAlignR)
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2093
          )
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2094
         #(#MenuItem
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2095
            #label: 'Align Left & Right'
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2096
            #isButton: true
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2097
            #value: #alignSelectionLeftAndRight
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2098
            #activeHelpKey: #alignSelectionLeftAndRight
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2099
            #enabled: #canMoveOrAlignSelection
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2100
            #labelImage: #(#ResourceRetriever nil #iconAlignLR)
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2101
          )
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2102
         #(#MenuItem
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2103
            #label: ''
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2104
          )
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2105
         #(#MenuItem
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2106
            #label: 'Align Top'
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2107
            #isButton: true
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2108
            #value: #alignSelectionTop
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2109
            #activeHelpKey: #alignSelectionTop
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2110
            #enabled: #canMoveOrAlignSelection
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2111
            #labelImage: #(#ResourceRetriever nil #iconAlignT)
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2112
          )
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2113
         #(#MenuItem
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2114
            #label: 'Align Bottom'
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2115
            #isButton: true
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2116
            #value: #alignSelectionBottom
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2117
            #activeHelpKey: #alignSelectionBottom
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2118
            #enabled: #canMoveOrAlignSelection
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2119
            #labelImage: #(#ResourceRetriever nil #iconAlignB)
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2120
          )
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2121
         #(#MenuItem
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2122
            #label: 'Align Top & Bottom'
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2123
            #isButton: true
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2124
            #value: #alignSelectionTopAndBottom
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2125
            #activeHelpKey: #alignSelectionTopAndBottom
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2126
            #enabled: #canMoveOrAlignSelection
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2127
            #labelImage: #(#ResourceRetriever nil #iconAlignTB)
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2128
          )
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2129
         #(#MenuItem
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2130
            #label: ''
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2131
          )
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2132
         #(#MenuItem
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2133
            #label: 'Move Left'
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2134
            #isButton: true
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2135
            #triggerOnDown: true
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2136
            #hideMenuOnActivated: false
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2137
            #value: #moveSelectionLeft
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2138
            #activeHelpKey: #changePositionLeft
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2139
            #enabled: #canMoveOrAlignSelection
1883
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
  2140
            #labelImage: #(#ResourceRetriever nil #arrowLeft)
1565
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2141
          )
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2142
         #(#MenuItem
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2143
            #label: 'Move Right'
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2144
            #isButton: true
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2145
            #triggerOnDown: true
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2146
            #hideMenuOnActivated: false
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2147
            #value: #moveSelectionRight
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2148
            #activeHelpKey: #changePositionRight
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2149
            #enabled: #canMoveOrAlignSelection
1883
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
  2150
            #labelImage: #(#ResourceRetriever nil #arrowRight)
1565
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2151
          )
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2152
         #(#MenuItem
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2153
            #label: 'Move Up'
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2154
            #isButton: true
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2155
            #triggerOnDown: true
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2156
            #value: #moveSelectionUp
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2157
            #activeHelpKey: #changePositionUp
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2158
            #enabled: #canMoveOrAlignSelection
1883
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
  2159
            #labelImage: #(#ResourceRetriever nil #arrowUp)
1565
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2160
          )
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2161
         #(#MenuItem
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2162
            #label: 'Move Down'
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2163
            #isButton: true
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2164
            #triggerOnDown: true
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2165
            #value: #moveSelectionDown
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2166
            #activeHelpKey: #changePositionDown
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2167
            #enabled: #canMoveOrAlignSelection
1883
577a267a87cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1872
diff changeset
  2168
            #labelImage: #(#ResourceRetriever nil #arrowDown)
1565
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2169
          )
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2170
         #(#MenuItem
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2171
            #label: 'Widget Documentation'
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2172
            #translateLabel: true
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2173
            #isButton: true
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2174
            #startGroup: #right
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2175
            #value: #doOpenWidgetDocumentation
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2176
            #activeHelpKey: #editOpenSpecDocumentation
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2177
            #labelImage: #(#ResourceRetriever #Icon #helpIcon)
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2178
          )
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2179
         )
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2180
        nil
3282f44c5ca4 *** empty log message ***
ca
parents: 1563
diff changeset
  2181
        nil
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  2182
      )
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  2183
! !
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  2184
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2185
!UIPainter methodsFor:'aspects'!
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2186
724
7c7fb3f3a927 docu calls added
tz
parents: 721
diff changeset
  2187
aspectFor:aKey
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2188
    "returns the aspect for aKey"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2189
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2190
    ^aspects at:aKey ifAbsent:[ super aspectFor:aKey ]
724
7c7fb3f3a927 docu calls added
tz
parents: 721
diff changeset
  2191
!
7c7fb3f3a927 docu calls added
tz
parents: 721
diff changeset
  2192
565
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  2193
canChangeOrderInContainer
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2194
    "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
  2195
     within their container"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2196
565
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  2197
    ^ builder booleanValueAspectFor:#canChangeOrderInContainer
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  2198
!
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  2199
1230
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2200
canExchangeSelectionLayouts
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2201
    "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
  2202
     consists of exactly 2 components
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2203
     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
  2204
     align operation"
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2205
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2206
    ^ builder booleanValueAspectFor:#canExchangeSelectionLayouts
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2207
!
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2208
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2209
canMoveOrAlignSelection
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2210
    "returns a boolean value holder which is true in case that any selection exists
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2211
     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
  2212
     align operation"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2213
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2214
    ^ builder booleanValueAspectFor:#canMoveOrAlignSelection
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2215
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2216
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  2217
canMoveSelection
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  2218
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2219
    ^self canChangeOrderInContainer value or: [ 
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2220
     self canMoveSelectionOutOfContainer value or: [
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2221
     self canMoveSelectionOutOfContainer value]]
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  2222
!
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  2223
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2224
canMoveSelectionIntoContainer
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2225
    "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
  2226
     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
  2227
     the same container"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2228
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2229
    ^ builder booleanValueAspectFor:#canMoveSelectionIntoContainer
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2230
!
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2231
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2232
canMoveSelectionOutOfContainer
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2233
    "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
  2234
     which is contained within another component"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2235
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2236
    ^ builder booleanValueAspectFor:#canMoveSelectionOutOfContainer
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2237
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2238
1991
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  2239
canPasteKeepingLayoutHolder
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  2240
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  2241
    |holder|
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  2242
    (holder := builder bindingAt:#valueOfCanPasteWithKeepingLayout) isNil ifTrue:[
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  2243
        builder aspectAt:#valueOfCanPasteWithKeepingLayout put:(holder :=  false asValue).
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  2244
    ].
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  2245
    ^ holder
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  2246
!
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  2247
1940
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  2248
canReplaceSelection
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  2249
    treeView isCanvasSelected ifTrue:[^ false].
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  2250
    ^ true
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  2251
!
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  2252
118
bc196200ea8b enabled and style
ca
parents: 114
diff changeset
  2253
enableChannel
2012
3a3b694c8288 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  2254
    "true if modifications are allowed otherwise in test mode"
3a3b694c8288 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  2255
3a3b694c8288 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  2256
    ^ builder valueAspectFor:#enableChannel initialValue:true
3a3b694c8288 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  2257
!
3a3b694c8288 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  2258
3a3b694c8288 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  2259
enableChannel2
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2260
    "true if modifications are allowed otherwise running test"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2261
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2262
    ^ self painter enableChannel
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2263
!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2264
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2265
galleryShown
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2266
    "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
  2267
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2268
    |holder|
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2269
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2270
    (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
  2271
	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
  2272
	holder addDependent:self
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2273
    ].
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2274
    ^ holder
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2275
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2276
!
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2277
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2278
hasOneSelectionOtherThanCanvas
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2279
    "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
  2280
     other than the root"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2281
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2282
    ^ builder booleanValueAspectFor:#hasOneSelectionOtherThanCanvas
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2283
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2284
1917
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2285
hasUndoHistory
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2286
    ^ self painter hasUndoHistory
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2287
!
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2288
1954
1344ec1f99eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1953
diff changeset
  2289
hasUndoHistoryHolder
1344ec1f99eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1953
diff changeset
  2290
    ^ self painter hasUndoHistoryHolder
1344ec1f99eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1953
diff changeset
  2291
!
1344ec1f99eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1953
diff changeset
  2292
884
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2293
helpIcon
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2294
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2295
    ^Icon helpIcon
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2296
!
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2297
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2298
noteBookView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2299
    "returns the notebook view; initialize the tools embedded in the notebook"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2300
2159
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  2301
    |noteBook|
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2302
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2303
    (noteBook := builder bindingAt:#noteBookView) isNil ifTrue:[
1316
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  2304
        noteBook := View new.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  2305
        builder aspectAt:#noteBookView put:noteBook.
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  2306
2159
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  2307
        layoutTool := self createToolApplication:UILayoutTool        spec:#windowSpec in:noteBook.
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  2308
        helpTool   := self createToolApplication:UIHelpTool          spec:#innerSpec  in:noteBook.
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  2309
        specTool   := self createToolApplication:UISpecificationTool spec:#windowSpec in:noteBook.
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  2310
2072
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  2311
        helpTool loadFromClass:specClass.
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2312
    ].
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2313
    ^ noteBook
2072
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  2314
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  2315
    "Modified: / 31-08-2006 / 10:11:15 / cg"
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2316
!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2317
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2318
painterShown
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2319
    "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
  2320
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2321
    |holder|
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2322
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2323
    (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
  2324
	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
  2325
	holder addDependent:self
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2326
    ].
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2327
    ^ holder
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2328
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2329
!
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2330
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2331
tabList
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2332
    "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
  2333
1782
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
  2334
    |tabs holder|
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2335
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2336
    (holder := builder bindingAt:#tabList) isNil ifTrue:[
1782
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
  2337
        tabs := #(Basics Details Layout).
8108839cc262 translate label
Claus Gittinger <cg@exept.de>
parents: 1775
diff changeset
  2338
        builder aspectAt:#tabList put:(holder :=  (resources array:tabs) asValue).
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2339
    ].
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2340
    ^ holder
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2341
!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2342
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2343
tabModel
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2344
    "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
  2345
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2346
    |holder|
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2347
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2348
    (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
  2349
	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
  2350
	builder aspectAt:#tabModel put:holder.
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2351
    ].
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2352
    ^ holder
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2353
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2354
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2355
treeView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2356
    "returns the tree view which holds all widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2357
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2358
    ^ treeView
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2359
!
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2360
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2361
valueOfCanPasteWithKeepingLayout
1991
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  2362
    self obsoleteMethodWarning:'stupid name - use #canPasteKeepingLayoutHolder'.
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  2363
    ^ self canPasteKeepingLayoutHolder
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2364
! !
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  2365
587
dd545d089d95 Fix typos. Ensure that specClass is a string.
Stefan Vogel <sv@exept.de>
parents: 572
diff changeset
  2366
!UIPainter methodsFor:'building editors'!
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2367
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2368
openDataSetColumnEditor
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2369
    "opens a Table Column Editor on current widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2370
1453
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2371
    |cls editor specTool columnHolder tableSelector columns|
824
1d5adf147721 change mechanism for opening the dataset builder (step 2)
tz
parents: 819
diff changeset
  2372
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2373
    (cls := self resolveName:specClassName) isNil ifTrue:[
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2374
        self askForSaving ifTrue:[cls := self resolveName:specClassName].
1103
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2375
    ].
1453
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2376
    cls isNil ifTrue:[^ self].
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2377
1103
ecc91379704b accept before opening an editor
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
  2378
    self modifiedChannel value ifTrue:[
1453
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2379
        (self confirm:'Accept changes made to spec ?') ifTrue:[
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2380
            self accept
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2381
        ]
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2382
    ].
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2383
1453
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2384
    editor   := DataSetBuilder new.
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2385
    specTool := self specTool.
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2386
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2387
    editor masterApplication:self.
824
1d5adf147721 change mechanism for opening the dataset builder (step 2)
tz
parents: 819
diff changeset
  2388
    editor specClass: cls.
1453
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2389
    editor rowClassName:(specTool specification rowClassName).
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2390
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2391
    columnHolder  := specTool aspectFor:#columnHolder.
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2392
    tableSelector := columnHolder value.
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2393
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2394
    tableSelector := tableSelector size ~~ 0 ifTrue:[tableSelector asSymbol]
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2395
                                            ifFalse:[nil].
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2396
1554
d5e4612bf7cf implements -> includesSelector
Claus Gittinger <cg@exept.de>
parents: 1545
diff changeset
  2397
    (tableSelector notNil and:[cls class includesSelector:tableSelector]) ifTrue:[
1453
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2398
        editor openModalOnClass:cls andSelector:tableSelector
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2399
    ] ifFalse:[
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2400
        columns := specTool specification columns.
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2401
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2402
        columns size ~~ 0 ifTrue:[
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2403
            editor openModalOnResourceSpec:columns
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2404
        ] ifFalse:[
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2405
            editor openModal
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2406
        ]
827
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  2407
    ].
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  2408
1453
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2409
    editor hasSaved ifTrue:[
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2410
        specTool specification columns:nil.
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2411
        specTool specification rowClassName:(editor rowClassName).
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2412
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2413
        tableSelector = editor specSelector ifFalse:[
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2414
            columnHolder value:(editor specSelector).
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2415
            self accept.
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2416
        ].
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2417
        ^ self
827
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  2418
    ].
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  2419
1453
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2420
    (editor modified and:[tableSelector isNil]) ifTrue:[
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2421
        specTool specification columns:(editor columns).
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2422
        specTool specification rowClassName:(editor rowClassName).
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2423
        self modifiedChannel value:true.
827
aa8f49da0f22 change mechanism for opening the dataset builder (step 3)
tz
parents: 824
diff changeset
  2424
    ].
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2425
!
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2426
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2427
openEditMenu
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2428
    "opens a Menu Editor on current widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2429
1453
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2430
    |cls selectorOrMenu editor selectedSpec spec holder|
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2431
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2432
    (cls := self resolveName:specClassName) isNil ifTrue:[
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2433
        self askForSaving ifTrue:[cls := self resolveName:specClassName].
1453
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2434
    ].
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2435
    cls isNil ifTrue:[^ self].
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2436
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2437
    self modifiedChannel value ifTrue:[
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2438
        (self confirm:'Accept changes made to spec ?') ifTrue:[
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2439
            self accept
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2440
        ]
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2441
    ].
1453
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2442
    spec := self specTool specification.
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2443
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2444
    (selectorOrMenu := spec menuSelector) notNil ifTrue:[
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2445
        selectorOrMenu := selectorOrMenu asSymbol
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2446
    ] ifFalse:[
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2447
        "/ cg: q&d hack ...
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2448
        selectorOrMenu := nil.
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2449
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2450
        (selectedSpec := treeView propertySelected) notNil ifTrue:[
1688
389815b12d3a Convert Object>>errorSignal -> Error
Stefan Vogel <sv@exept.de>
parents: 1684
diff changeset
  2451
            Error handle:[:ex |
1453
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2452
                selectorOrMenu := nil.
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2453
            ] do:[
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2454
                selectorOrMenu := selectedSpec view asMenu.
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2455
            ]
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2456
        ].
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2457
    ].
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2458
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2459
    editor := MenuEditor new.
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2460
    editor masterApplication:self.
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2461
    editor specClass: cls.
1669
e6ea33c843a0 *** empty log message ***
ca
parents: 1663
diff changeset
  2462
    editor useHelpTool:(self helpTool).
1453
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2463
1698
28250498a2b3 *** empty log message ***
penk
parents: 1690
diff changeset
  2464
    selectorOrMenu class == Menu
28250498a2b3 *** empty log message ***
penk
parents: 1690
diff changeset
  2465
        ifTrue: [editor openModalOnMenu:selectorOrMenu]
28250498a2b3 *** empty log message ***
penk
parents: 1690
diff changeset
  2466
        ifFalse:  [editor openModalOnClass:cls andSelector:selectorOrMenu].
1453
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2467
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2468
    editor hasSaved ifTrue:[
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2469
        holder := self specTool aspectFor:#menuSelector.
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2470
        holder value:(editor specSelector).
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2471
        self accept.
1669
e6ea33c843a0 *** empty log message ***
ca
parents: 1663
diff changeset
  2472
        ^ self
1453
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2473
    ].
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2474
!
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2475
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2476
openHierarchicalListEditor
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2477
    "opens a Hierarchical List Editor on current widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2478
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2479
    |selector editor spec|
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2480
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2481
    (self resolveName:specClassName) isNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2482
	self askForSaving ifFalse: [^self]
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2483
    ].
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2484
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2485
    spec := self specTool specification.
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2486
    (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
  2487
	selector := selector asSymbol
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2488
    ].
735
29c8681ce68d no picking for hierarchical lists + error handler for the starting phase
tz
parents: 729
diff changeset
  2489
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2490
    editor := HierarchicalListEditor new.
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2491
    editor masterApplication:self.
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2492
    editor openModalOnClass:specClassName andSelector:selector.
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2493
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2494
    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
  2495
	editor hasSaved ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2496
	    spec hierarchicalList:editor specSelector.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2497
	    self modifiedChannel value:true.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2498
	    self accept
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2499
	]
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2500
    ]
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2501
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2502
    "Modified: / 16.7.1998 / 18:15:46 / cg"
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2503
!
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2504
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2505
openSubSpecGUIPainter
609
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2506
    "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
  2507
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2508
    |spec cls meta sel|
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2509
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2510
    (self resolveName:specClassName) isNil ifTrue:[
1523
a8fe5e15220b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1521
diff changeset
  2511
        self askForSaving ifFalse: [^self]
913
12e73e6c57b4 do open building editors after defining first new app class
tz
parents: 892
diff changeset
  2512
    ]. 
12e73e6c57b4 do open building editors after defining first new app class
tz
parents: 892
diff changeset
  2513
609
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2514
    spec := self specTool specification.
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2515
    cls := spec majorKey.
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2516
    cls isNil ifTrue:[
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2517
        cls := specClassName.
609
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2518
    ].
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2519
    (cls := self resolveName:cls inClass:(Smalltalk at: specClassName asSymbol)) isNil ifTrue:[
1523
a8fe5e15220b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1521
diff changeset
  2520
        spec majorKey isNil ifTrue:[
a8fe5e15220b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1521
diff changeset
  2521
            ^ self warn:'Cannot find class (no majorKey specified).'.
a8fe5e15220b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1521
diff changeset
  2522
        ].
a8fe5e15220b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1521
diff changeset
  2523
        ^ 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
  2524
    ].
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2525
    sel := spec minorKey.
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2526
    meta := cls class whichClassIncludesSelector:sel.
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2527
    meta isNil ifTrue:[
1523
a8fe5e15220b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1521
diff changeset
  2528
        ^ 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
  2529
    ].
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2530
1523
a8fe5e15220b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1521
diff changeset
  2531
    self class 
a8fe5e15220b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1521
diff changeset
  2532
        openOnClass:meta soleInstance 
a8fe5e15220b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1521
diff changeset
  2533
        andSelector:spec minorKey.
a8fe5e15220b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1521
diff changeset
  2534
a8fe5e15220b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1521
diff changeset
  2535
    "Modified: / 5.11.2001 / 16:51:46 / cg"
609
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2536
!
60f89fba074a Allow opening of a GUI Painter for a subSpecification.
Stefan Vogel <sv@exept.de>
parents: 587
diff changeset
  2537
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2538
openTabListEditor
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2539
    "opens a Tab List Editor on current widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2540
1453
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2541
    |selector editor spec cls holder|
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2542
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2543
    (cls := self resolveName:specClassName) isNil ifTrue:[
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2544
        self askForSaving ifTrue:[cls := self resolveName:specClassName].
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2545
    ].
1453
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2546
    cls isNil ifTrue:[^ self].
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2547
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2548
    self modifiedChannel value ifTrue:[
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2549
        (self confirm:'Accept changes made to spec ?') ifTrue:[
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2550
            self accept
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2551
        ]
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2552
    ].
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2553
    spec := self specTool specification.
1453
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2554
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2555
    (selector := spec listSelector) isArray 
1453
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2556
        ifTrue: [^self warn: 'Cannot open the Tab List Editor on an array!!'].
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2557
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2558
    editor := TabListEditor new.
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2559
    editor masterApplication:self.
1453
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2560
    editor openModalOnClass:cls andSelector:selector.
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2561
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2562
    editor hasSaved ifTrue:[
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2563
        holder := self specTool aspectFor:#listSelector.
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2564
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2565
        holder value ~= editor specSelector ifTrue:[
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2566
            holder value:editor specSelector.
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2567
            self accept.
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2568
        ]
0cf534cc29a9 bugfix when after close subtool (table menu ..) when reading selector
ca
parents: 1444
diff changeset
  2569
    ].
513
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2570
! !
a0d00fecb49a support of TabItemEditor
ca
parents: 512
diff changeset
  2571
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2572
!UIPainter methodsFor:'change & update'!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2573
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2574
layoutChanged
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2575
    "called by the painter/canvas whenever the layout of the current selected
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2576
     widget has changed"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2577
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2578
    self isModified ifFalse:[
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2579
        self layoutTool update.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2580
        self clearModifiedFlag
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2581
    ]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2582
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2583
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2584
propertyChanged
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2585
    "called by the painter/canvas whenever the property of the current selected
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2586
     widget has changed"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2587
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  2588
    |property spec|
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2589
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2590
    (property := treeView propertySelected) notNil ifTrue:[
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2591
        spec := property spec copy.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2592
        self specTool specification:spec.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2593
        self setViewInLayoutTool:(property view) spec:spec.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2594
        self clearModifiedFlag
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2595
    ] ifFalse:[
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2596
        self layoutTool layoutView notNil ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2597
            self clearModifiedFlag.
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  2598
            self treeSelectionChanged
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  2599
        ]
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  2600
    ]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2601
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2602
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2603
update:something with:aParameter from:someObject
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2604
    "catches change notifications"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2605
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  2606
    |window lbl|
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2607
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  2608
    someObject == treeView model ifTrue:[
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  2609
        (something == #selection
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  2610
        or:[something == #selectionIndex]) ifTrue:[self treeSelectionChanged].
2198
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  2611
        ^ self
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2612
    ].
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2613
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2614
    someObject == self galleryShown ifTrue:[
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  2615
        "/ galleryShown toggle changed
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  2616
        window := selectionPanel window.
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  2617
        (someObject value) ifTrue:[
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  2618
            self raiseUIView:window
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  2619
        ] ifFalse:[
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  2620
            self hideUIView:window
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  2621
        ].
2198
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  2622
        ^ self
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2623
    ].
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2624
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2625
    someObject == self painterShown ifTrue:[
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  2626
        "/ canvasShown toggle changed
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  2627
        window := self painter topView.
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  2628
        (someObject value) ifTrue:[
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  2629
            self raiseUIView:window
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  2630
        ] ifFalse:[
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  2631
            self hideUIView:window
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  2632
        ].
2198
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  2633
        ^ self
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2634
    ].
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  2635
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  2636
    someObject == self autoAcceptOnSelectionChange ifTrue:[
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  2637
        lbl := someObject value ifTrue:['Apply'] ifFalse:['OK'].
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  2638
        (builder componentAt:'acceptButton') label:(resources string:lbl).
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  2639
        ^ self
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  2640
    ].
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  2641
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2642
    "Modified: / 16.7.1998 / 19:09:57 / cg"
884
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2643
!
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2644
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2645
updateChannels
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2646
    "updates the channels"
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2647
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2648
    |canCutOrCopy canPaste clipboard sel treeSelection|
884
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2649
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2650
    self canMoveOrAlignSelection        value:(treeView canMoveOrAlignSelection).
1230
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2651
    self canExchangeSelectionLayouts    value:(treeView canExchangeSelectionLayouts).
884
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2652
    self canChangeOrderInContainer      value:(treeView canChangeOrderInContainer).
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2653
    self canMoveSelectionIntoContainer  value:(treeView canMoveSelectionIntoContainer).
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2654
    self canMoveSelectionOutOfContainer value:(treeView canMoveSelectionOutOfContainer).
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2655
    self hasOneSelectionOtherThanCanvas value:(treeView hasOneSelectionOtherThanCanvas).
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2656
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2657
    treeView notNil
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2658
    ifTrue:
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2659
    [
1230
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2660
        treeSelection := treeView selection.
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2661
        "/ the top-node cannot be cut, copied or pasted.
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2662
        canCutOrCopy := treeSelection size >= 1 and:[treeSelection first ~~ 1].
1872
ab5cc43b193a get selection interface changed
ca
parents: 1870
diff changeset
  2663
        clipboard := self getClipboardObject.
ab5cc43b193a get selection interface changed
ca
parents: 1870
diff changeset
  2664
ab5cc43b193a get selection interface changed
ca
parents: 1870
diff changeset
  2665
        clipboard isCollection 
ab5cc43b193a get selection interface changed
ca
parents: 1870
diff changeset
  2666
                ifTrue:[clipboard notEmpty ifTrue:[sel := clipboard first]]
ab5cc43b193a get selection interface changed
ca
parents: 1870
diff changeset
  2667
                ifFalse:[sel := clipboard].
1230
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  2668
1621
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  2669
        canPaste := (sel isKindOf:UISpecification) 
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  2670
"/                    and:[treeSelection size  = 1 
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  2671
"/                    and:[treeSelection first == 1 
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  2672
"/                         or: [self canPasteInto: treeView selectedNode contents view]]]
884
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2673
    ].
a291fc248a8b images moved to class Icon
tz
parents: 877
diff changeset
  2674
1991
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  2675
    self canCutHolder value: canCutOrCopy.
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  2676
    self canCopyHolder value: canCutOrCopy.
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  2677
    self canPasteHolder value: canPaste.            
feaad07cb3cf valueOf* methods renamed
Claus Gittinger <cg@exept.de>
parents: 1983
diff changeset
  2678
    self canPasteKeepingLayoutHolder value: (canPaste "&  self canKeepLayoutInSelection").
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2679
1063
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2680
"/    self modifiedChannel value: false.
9e710dbc7c92 inputFields use modified & acceptChannels
Claus Gittinger <cg@exept.de>
parents: 1059
diff changeset
  2681
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  2682
    "Modified: / 16.7.1998 / 19:13:30 / cg"
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2683
! !
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2684
952
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2685
!UIPainter methodsFor:'defaults'!
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2686
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2687
aboutImage
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2688
    "the image to be displayed in my about-box;
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2689
     If nil is returned, thhe ST/X default image is used."
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2690
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2691
    ^ Image fromFile:'bitmaps/xpmBitmaps/misc_tools/setup_windows.xpm'
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2692
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2693
    "Created: / 13.8.1998 / 20:33:05 / cg"
1466
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
  2694
!
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
  2695
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
  2696
defaultWindowSpecClass
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
  2697
    ^ WindowSpec
952
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2698
! !
c6408190dc6d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  2699
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2700
!UIPainter methodsFor:'event handling'!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2701
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2702
doesNotUnderstand:aMessage
1940
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  2703
    "forward misunderstood messages to the painter"
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2704
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2705
    |painter|
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2706
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2707
    painter := self painter.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2708
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2709
    (painter respondsTo:(aMessage selector)) ifTrue:[
1940
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  2710
        ^ aMessage sendTo:painter
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2711
    ].
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2712
    super doesNotUnderstand:aMessage
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2713
1957
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2714
!
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2715
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2716
processEvent:anEvent
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2717
    "filter keyboard events.
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2718
     Return true, if I have eaten the event"
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2719
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2720
    |key|
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2721
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2722
    anEvent isKeyPressEvent ifTrue:[ 
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2723
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2724
        anEvent targetView == treeView ifFalse:[^ false].
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2725
        treeView hasFocus ifFalse:[^ false].
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2726
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2727
        key := anEvent key.
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2728
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2729
"/        (anEvent rawKey == #Cmdr) ifTrue:[
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2730
"/            self openNameEditorOnTreeSelection.
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2731
"/            ^ true.
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2732
"/        ].
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2733
        (anEvent rawKey == #CtrlCursorUp) ifTrue:[ 
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2734
            self doStepUp.
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2735
            ^ true.
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2736
        ].
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2737
        (anEvent rawKey == #CtrlCursorDown) ifTrue:[ 
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2738
            self doStepDown.
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2739
            ^ true.
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2740
        ].
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2741
        (anEvent rawKey == #CtrlCursorLeft) ifTrue:[ 
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2742
            self doStepOut.
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2743
            ^ true.
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2744
        ].
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2745
        (anEvent rawKey == #CtrlCursorRight) ifTrue:[ 
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2746
            self doStepIn.
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2747
            ^ true.
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2748
        ].
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2749
    ].
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2750
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  2751
    ^ false.
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2752
! !
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  2753
547
930b3df19305 help menu item aligned to the right
tz
parents: 542
diff changeset
  2754
!UIPainter methodsFor:'help'!
930b3df19305 help menu item aligned to the right
tz
parents: 542
diff changeset
  2755
572
ac2a1dd83d28 open tutorial added
tz
parents: 565
diff changeset
  2756
defaultInfoLabel
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2757
    "returns the default info label"
572
ac2a1dd83d28 open tutorial added
tz
parents: 565
diff changeset
  2758
2072
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  2759
    specClassName isNil ifTrue: [^'No class defined.'].
877
f31f41b29710 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 852
diff changeset
  2760
    specSelector isNil ifTrue: [^'No selector defined.'].
2001
b12d9b4dd6f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
  2761
    ^ specClassName printString, ' >> ', specSelector
877
f31f41b29710 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 852
diff changeset
  2762
2072
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  2763
    "Modified: / 31-08-2006 / 10:12:03 / cg"
297
14db1276218c change the spec;
ca
parents: 295
diff changeset
  2764
! !
14db1276218c change the spec;
ca
parents: 295
diff changeset
  2765
1917
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2766
!UIPainter methodsFor:'help spec'!
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2767
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2768
flyByHelpSpec
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2769
    |spec|
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2770
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2771
    spec := self class flyByHelpSpec.
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2772
    spec at:#editUndo put:(resources string:'Undo (%1)' 
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2773
                        with:(resources string:self painter undoHistory labelOfLastUndo)).
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2774
    ^ spec
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2775
!
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2776
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2777
helpSpec
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2778
    |spec|
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2779
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2780
    spec := self class helpSpec.
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2781
    spec at:#editUndo put:(resources string:'Undo (%1)' 
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2782
                        with:(resources string:self painter undoHistory labelOfLastUndo)).
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2783
    ^ spec
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2784
! !
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2785
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2786
!UIPainter methodsFor:'initialization'!
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2787
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2788
initialize
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2789
    |name|
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2790
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2791
    super initialize.
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2792
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2793
    modified := false.
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2794
    aspects := IdentityDictionary new.
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2795
    aspects at:#classNameChannel put:'NewApplication' asValue.
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2796
    aspects at:#superclassNameChannel put:'ApplicationModel' asValue.
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2797
    aspects at:#methodNameChannel put:'windowSpec' asValue.
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2798
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2799
    treeView := TreeView new.
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2800
    treeView windowSpecClass:(self defaultWindowSpecClass).
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2801
    treeView 
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2802
        selectConditionBlock:[:newSelection | self selectionChangeAllowed:newSelection ].
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2803
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2804
    painterView := StandardSystemView new.
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2805
    name := name ? UIPainter defaultNameOfCanvas.
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2806
    painterView beToolWindow.
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2807
    painterView name:name.
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2808
    painterView label:name.
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2809
    painterView extent:(treeView windowSpecClass defaultExtentInUIPainter).
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2810
    painter := UIPainterView in:painterView.
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2811
    painter layout:(0.0 @ 0.0 corner:1.0 @ 1.0) asLayout.
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2812
    treeView := treeView canvas:painter specName:name.
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2813
    painter treeView:treeView.
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2814
    treeView model addDependent:self.
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2815
    painter enableChannel:(self enableChannel).
2198
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  2816
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  2817
    selectionPanel := self selectionPanelClass new.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  2818
    selectionPanel allButOpenInterface:#windowSpec.
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2819
! !
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  2820
1718
aedf32fc1715 method category rename
Claus Gittinger <cg@exept.de>
parents: 1716
diff changeset
  2821
!UIPainter methodsFor:'menus-dynamic'!
1521
2efd2b9419c4 undo: show type of undo in menu;
Claus Gittinger <cg@exept.de>
parents: 1499
diff changeset
  2822
2efd2b9419c4 undo: show type of undo in menu;
Claus Gittinger <cg@exept.de>
parents: 1499
diff changeset
  2823
menuEdit
1528
4136505d3cbe oops - menu was wrong
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
  2824
    ^ [
4136505d3cbe oops - menu was wrong
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
  2825
        |m i|
4136505d3cbe oops - menu was wrong
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
  2826
4136505d3cbe oops - menu was wrong
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
  2827
        m := self class menuEdit.
4136505d3cbe oops - menu was wrong
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
  2828
        m := m decodeAsLiteralArray.
4136505d3cbe oops - menu was wrong
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
  2829
        i := m detectItem:[:item | item nameKey == #undo] ifNone:nil.
4136505d3cbe oops - menu was wrong
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
  2830
        i notNil ifTrue:[
1917
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2831
            i label:(resources string:(i label , ' (%1)') 
53832fa044f1 undo button
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2832
                        with:(resources string:self painter undoHistory labelOfLastUndo)).
1528
4136505d3cbe oops - menu was wrong
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
  2833
        ].
1540
dda0bf556ebc findGuiResources... now sets the receiver, if not yet set
Claus Gittinger <cg@exept.de>
parents: 1528
diff changeset
  2834
        "/ m receiver:self.   -- now done in findGuiResources ...
1528
4136505d3cbe oops - menu was wrong
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
  2835
        m findGuiResourcesIn:self.
4136505d3cbe oops - menu was wrong
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
  2836
        m
4136505d3cbe oops - menu was wrong
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
  2837
      ].
1940
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  2838
!
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  2839
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  2840
menuReplaceWidget
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  2841
    ^ [
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  2842
        |m i specAndView spec usefulReplacementSpecClasses|
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  2843
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  2844
        m := self class menuReplaceWidget.
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  2845
        m := m decodeAsLiteralArray.
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  2846
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  2847
        specAndView := self selectedSpecAndView.
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  2848
        spec := specAndView first.
1968
1a8b9416db6e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
  2849
        spec notNil ifTrue:[
1a8b9416db6e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
  2850
            usefulReplacementSpecClasses := spec usefulReplacementSpecClasses.
1a8b9416db6e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
  2851
            usefulReplacementSpecClasses notEmptyOrNil ifTrue:[
1a8b9416db6e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
  2852
                m addSeparator.
1a8b9416db6e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
  2853
                usefulReplacementSpecClasses do:[:eachClass |      
1a8b9416db6e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
  2854
                    |item|
1a8b9416db6e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
  2855
1a8b9416db6e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
  2856
                    item := MenuItem new label:(resources string:'Replace by %1' with:eachClass userFriendlyName).
1a8b9416db6e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
  2857
                    item value:#replaceWidgetByClass:.
1a8b9416db6e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
  2858
                    item argument:eachClass.
1a8b9416db6e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
  2859
                    m addItem:item.
1a8b9416db6e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1957
diff changeset
  2860
                ].
1940
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  2861
            ].
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  2862
        ].
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  2863
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  2864
        m findGuiResourcesIn:self.
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  2865
        m
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  2866
      ].
1521
2efd2b9419c4 undo: show type of undo in menu;
Claus Gittinger <cg@exept.de>
parents: 1499
diff changeset
  2867
! !
2efd2b9419c4 undo: show type of undo in menu;
Claus Gittinger <cg@exept.de>
parents: 1499
diff changeset
  2868
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2869
!UIPainter methodsFor:'private'!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  2870
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2871
askForModification
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2872
    "asks for window spec modification"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2873
1341
83fe4fae7c10 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1338
diff changeset
  2874
    |painter|
83fe4fae7c10 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1338
diff changeset
  2875
83fe4fae7c10 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1338
diff changeset
  2876
    painter := self painter.
83fe4fae7c10 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1338
diff changeset
  2877
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2878
    self askForSectionModification.    
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2879
1341
83fe4fae7c10 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1338
diff changeset
  2880
    (modified or: [painter isModified or: [self helpTool modified]])
83fe4fae7c10 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1338
diff changeset
  2881
    ifTrue:[
1772
e33aee13defe Use 'Discard Changes and Exit' instead of 'Forget it...'
Stefan Vogel <sv@exept.de>
parents: 1760
diff changeset
  2882
        ((YesNoBox title:(resources string:'Window spec was modified. Exit anyway?'))        
1341
83fe4fae7c10 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1338
diff changeset
  2883
            noText:(resources string:'Cancel');
1772
e33aee13defe Use 'Discard Changes and Exit' instead of 'Forget it...'
Stefan Vogel <sv@exept.de>
parents: 1760
diff changeset
  2884
            yesText:(resources string:'Discard Changes and Exit');
1341
83fe4fae7c10 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1338
diff changeset
  2885
            showAtPointer;
83fe4fae7c10 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1338
diff changeset
  2886
            accepted) ifFalse: [^false].
2007
77cf7ecc9ecf embedding as special editors
Claus Gittinger <cg@exept.de>
parents: 2001
diff changeset
  2887
        self clearModified.
1341
83fe4fae7c10 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1338
diff changeset
  2888
        painter resetModification
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2889
    ].
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2890
    ^true
838
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
  2891
0ac5a26498c1 help texts & national strings
Claus Gittinger <cg@exept.de>
parents: 827
diff changeset
  2892
    "Modified: / 20.5.1998 / 02:03:16 / cg"
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2893
!
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  2894
808
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2895
askForSaving
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2896
    "asks for defining an application class"
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2897
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2898
    self askForSectionModification.    
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2899
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2900
    ((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
  2901
	noText:'Cancel';
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2902
	yesText:'Define';
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2903
	showAtPointer;
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2904
	accepted) ifFalse: [^false].
808
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2905
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2906
    self doSave.
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2907
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2908
    ^true
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2909
!
4e2ab5e77344 ask first for saving before calling other editors
tz
parents: 807
diff changeset
  2910
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2911
askForSectionModification
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2912
    "asks for section modification in the notebook"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2913
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2914
    self isModified ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2915
	(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
  2916
	    self accept
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2917
	] ifFalse: [
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2918
	    self cancel
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  2919
	]
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2920
    ]
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2921
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2922
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2923
checkClassAndSelector
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  2924
    "checks for class & superclass"
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2925
1211
53cfc272acc9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1204
diff changeset
  2926
    |superclass cls|
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2927
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2928
    specClassName isNil ifTrue:[^ false].
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2929
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2930
    cls := self resolveName:specClassName.
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2931
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2932
    cls isNil ifTrue:[
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2933
        superclass := self resolveName:specSuperclassName.
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2934
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2935
        superclass isNil ifTrue:[
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2936
            self warn:'No class named ' , specSuperclassName , ' exists!!'.
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2937
            ^ false.
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2938
        ].
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2939
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2940
        (self confirm:'Create class ' , specClassName asBoldText, '?') ifTrue:[
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2941
            cls := superclass 
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2942
                        subclass:(specClassName asSymbol)
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2943
                        instanceVariableNames:''
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2944
                        classVariableNames:''
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2945
                        poolDictionaries:''
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2946
                        category:'Applications'.
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2947
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2948
            cls name ~= specClassName ifTrue:[
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2949
                self information:'Created new class is ' , cls name.
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2950
                specClassName := cls name
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2951
            ].
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2952
            ^ true.
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2953
        ].
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2954
        ^ false.
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2955
    ].
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2956
    cls isBehavior ifFalse:[
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2957
        self warn:'A global named ' , specClassName , ' exists, but it is no class.'.
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2958
        ^ false.
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2959
    ].
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2960
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2961
    specSuperclassName isBehavior ifFalse:[
2001
b12d9b4dd6f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
  2962
        specSuperclassName notEmptyOrNil ifTrue:[
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2963
            superclass := self resolveName:specSuperclassName
2001
b12d9b4dd6f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
  2964
        ] ifFalse:[
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2965
            specSuperclassName := nil.
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2966
        ]
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2967
    ] ifTrue:[
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2968
        superclass := specSuperclassName
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2969
    ].
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2970
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2971
    specSuperclassName notNil ifTrue:[
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2972
        superclass isNil ifTrue:[
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2973
            self warn:'No class named ' , specSuperclassName , ' exists!!'.
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2974
            ^ false.
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2975
        ].
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2977
        (cls isSubclassOf:superclass) ifFalse:[
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  2978
            self information:('A global named ' , specClassName , ' exists,\' ,
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2979
                              'but is not a subclass of ' , superclass name , '.\\' ,
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2980
                              'Check and try again if that is not what you want.') withCRs.
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2981
        ]
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2982
    ].
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2983
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2984
    superclass isNil ifTrue:[
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2985
        cls notNil ifTrue:[
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2986
            specSuperclassName := cls superclass name
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  2987
        ]
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2988
    ].
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2989
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2990
    ^ true
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2991
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2992
    "Modified: 12.8.1997 / 23:39:10 / cg"
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2993
!
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  2994
2159
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  2995
createToolApplication:anApplicationClass spec:aSpec in:aView
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  2996
    |appl applBuilder applWindow|
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  2997
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  2998
    appl := anApplicationClass new.
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  2999
    appl createBuilder.
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3000
    applBuilder := appl builder.
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3001
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3002
    applWindow  := ApplicationSubView origin:0.0@0.0 corner:1.0@1.0 in:aView.
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3003
    applWindow level:0.
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3004
    applWindow hiddenOnRealize:true.
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3005
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3006
    appl masterApplication:self.
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3007
    applBuilder window:applWindow.
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3008
    applWindow client:appl spec:aSpec builder:applBuilder.
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3009
    appl modifiedHolder:(self modifiedChannel).
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3010
    applBuilder window:applWindow.
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3011
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3012
    ^ appl
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3013
!
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3014
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  3015
hideUIView:aView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3016
    "hides the view which is an application or top view"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3017
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  3018
    aView beIndependent.
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  3019
    aView unmap.
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  3020
!
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  3021
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3022
raiseTabView
2159
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3023
    |tool|
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3024
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3025
             self isLayoutToolSelected ifTrue:[tool := layoutTool ]
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3026
    ifFalse:[self isHelpToolSelected   ifTrue:[tool := helpTool   ]
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3027
    ifFalse:[
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3028
        tool := specTool.
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3029
        tool notNil ifTrue:[ specTool selection:tabSelection ].
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3030
    ]].
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3031
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3032
    (Array with:helpTool with:layoutTool with:specTool) do:[:aTool|
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3033
        aTool ~~ tool ifTrue:[
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3034
            aTool window beInvisible.
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3035
        ].
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3036
    ].
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3037
    tool notNil ifTrue:[
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3038
        tool window beVisible.
7f02407f0bbf focus handling
ca
parents: 2157
diff changeset
  3039
    ].
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  3040
!
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  3041
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  3042
raiseUIView:aView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3043
    "raise the view which is an application or top view"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3044
1193
ada18c876301 partners must be remapped (at old position)
Claus Gittinger <cg@exept.de>
parents: 1192
diff changeset
  3045
    aView remap.
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  3046
    aView bePartner.
177
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  3047
!
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  3048
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  3049
setClass:cls selector:selector
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3050
    "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
  3051
177
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  3052
    |clsName superClassName|
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  3053
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  3054
    clsName := cls name.
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  3055
    superClassName := cls superclass name.
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  3056
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  3057
    (self aspectFor:#classNameChannel) value:clsName.
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  3058
    (self aspectFor:#methodNameChannel) value:(selector ? '').
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  3059
    (self aspectFor:#superclassNameChannel) value:superClassName.
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  3060
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  3061
    self painter 
1760
8419c463c4f6 use #and: - not #& you lazy bone, you
Claus Gittinger <cg@exept.de>
parents: 1750
diff changeset
  3062
            className:clsName 
8419c463c4f6 use #and: - not #& you lazy bone, you
Claus Gittinger <cg@exept.de>
parents: 1750
diff changeset
  3063
            superclassName:superClassName
8419c463c4f6 use #and: - not #& you lazy bone, you
Claus Gittinger <cg@exept.de>
parents: 1750
diff changeset
  3064
            selector:(selector ? '').
177
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  3065
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3066
    self specClass:clsName.
177
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  3067
    specSelector := (selector ? '').
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3068
    specSuperclassName := superClassName.
177
eefd69a52f5b fixed setup of class/selector when picking/fetching via
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
  3069
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  3070
    (specClassName notNil and:[ selector notNil ]) ifTrue:[
2072
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3071
        self addHistoryEntryForClass:specClass selector:specSelector.
1760
8419c463c4f6 use #and: - not #& you lazy bone, you
Claus Gittinger <cg@exept.de>
parents: 1750
diff changeset
  3072
        self updateInfoLabel
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3073
    ].
587
dd545d089d95 Fix typos. Ensure that specClass is a string.
Stefan Vogel <sv@exept.de>
parents: 572
diff changeset
  3074
2072
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3075
    "Modified: / 05-02-1998 / 09:44:58 / stefan"
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3076
    "Modified: / 31-08-2006 / 10:14:49 / cg"
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3077
!
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3078
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3079
setViewInLayoutTool:aView spec:aSpec
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3080
    "sets view for layout tool"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3081
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3082
    |type|
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3083
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3084
    self painter topView == aView ifTrue:[
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  3085
	type := #Extent
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3086
    ].
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3087
    self layoutTool layoutView:aView type:type spec:aSpec
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3088
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3089
!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3090
2072
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3091
specClass
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3092
    specClass isNil ifTrue:[
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3093
        specClassName notNil ifTrue:[
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3094
            specClass := Smalltalk classNamed:specClassName.
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3095
        ]
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3096
    ].
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3097
    ^ specClass
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3098
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3099
    "Created: / 31-08-2006 / 10:08:43 / cg"
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3100
    "Modified: / 04-09-2006 / 10:39:21 / cg"
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3101
!
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3102
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3103
specClass:aClassOrClassName
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3104
    "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
  3105
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3106
    aClassOrClassName isBehavior 
2072
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3107
        ifTrue: [ specClass := aClassOrClassName.
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3108
                  specClassName := aClassOrClassName name ]
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3109
        ifFalse:[ specClass := Smalltalk classNamed:aClassOrClassName.
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3110
                  specClassName := aClassOrClassName ].
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3111
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3112
    self helpTool loadFromClass:specClass.    
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3113
    self clearModifiedFlag.
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3114
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3115
    "Modified: / 31-08-2006 / 10:10:22 / cg"
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3116
! !
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3117
1714
f57812a56d17 method category rename
Claus Gittinger <cg@exept.de>
parents: 1712
diff changeset
  3118
!UIPainter methodsFor:'private-tools'!
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3119
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3120
helpTool
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3121
    "returns the help tool"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3122
1316
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  3123
    helpTool isNil ifTrue:[self noteBookView].
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  3124
  ^ helpTool
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3125
!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3126
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3127
layoutTool
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3128
    "returns the layout tool"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3129
1316
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  3130
    layoutTool isNil ifTrue:[self noteBookView].
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  3131
  ^ layoutTool
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3132
!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3133
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3134
painter
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3135
    "returns the canvas view"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3136
2077
bf7f7207fa07 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2072
diff changeset
  3137
    ^ painter.
bf7f7207fa07 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2072
diff changeset
  3138
"/    ^ treeView canvas
bf7f7207fa07 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2072
diff changeset
  3139
bf7f7207fa07 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2072
diff changeset
  3140
    "Modified: / 05-09-2006 / 18:36:32 / cg"
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3141
!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3142
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3143
specTool
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3144
    "returns the spec tool"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3145
1316
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  3146
    specTool isNil ifTrue:[self noteBookView].
d66f0b84aa6b *** empty log message ***
ca
parents: 1314
diff changeset
  3147
  ^ specTool
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  3148
! !
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  3149
166
cd5699643975 add tools: layout and specification tool
ca
parents: 161
diff changeset
  3150
!UIPainter methodsFor:'queries'!
cd5699643975 add tools: layout and specification tool
ca
parents: 161
diff changeset
  3151
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  3152
hasSpecClass
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3153
    "answers whether an application class is defined"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3154
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  3155
    ^ (self resolveName:specClassName) notNil
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  3156
!
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  3157
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  3158
hasSpecClassAndSelector
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3159
    "answers whether an application class and a selector under which
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3160
     the window spec is stored is defined"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3161
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  3162
    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
  3163
	^ self hasSpecClass
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  3164
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3165
    ^ false
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  3166
!
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  3167
166
cd5699643975 add tools: layout and specification tool
ca
parents: 161
diff changeset
  3168
isHelpToolSelected
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3169
    "answers whether the current selected section in the noteBook is the Help Tool"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3170
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3171
    ^ tabSelection = UIHelpTool label
166
cd5699643975 add tools: layout and specification tool
ca
parents: 161
diff changeset
  3172
!
cd5699643975 add tools: layout and specification tool
ca
parents: 161
diff changeset
  3173
cd5699643975 add tools: layout and specification tool
ca
parents: 161
diff changeset
  3174
isLayoutToolSelected
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3175
    "answers whether the current selected section in the noteBook is the Layout Tool"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3176
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3177
    ^ tabSelection = UILayoutTool label
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  3178
!
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  3179
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  3180
isModified
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3181
    "answers whether the current window spec or a layout is modified"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3182
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  3183
    ^ self modifiedChannel value
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  3184
!
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  3185
2198
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3186
isNotEditingSpecOnly
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3187
    ^ true
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3188
!
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3189
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  3190
isPainterEnabled
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3191
    "answers whether I am running in test mode"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3192
217
354ba46948b4 access MenuEditor for specs
ca
parents: 206
diff changeset
  3193
    ^ self painter enabled
1608
2ad8ca8b5260 isUIPainter query added
penk
parents: 1596
diff changeset
  3194
!
2ad8ca8b5260 isUIPainter query added
penk
parents: 1596
diff changeset
  3195
2ad8ca8b5260 isUIPainter query added
penk
parents: 1596
diff changeset
  3196
isUIPainter
2ad8ca8b5260 isUIPainter query added
penk
parents: 1596
diff changeset
  3197
    ^ true
166
cd5699643975 add tools: layout and specification tool
ca
parents: 161
diff changeset
  3198
! !
cd5699643975 add tools: layout and specification tool
ca
parents: 161
diff changeset
  3199
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  3200
!UIPainter methodsFor:'selection'!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  3201
1621
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3202
askForUnsavedModifications
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3203
    |whatToDo|
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3204
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3205
    self isModified ifFalse:[^ true].
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3206
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3207
    whatToDo := DialogBox 
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3208
                    confirmWithCancel:'Accept modifications in section ' , tabSelection printString asBoldText, ' ?'
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3209
                    labels:#('Cancel' 'Ignore' 'Accept')
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3210
                    default:3.
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3211
    whatToDo isNil ifTrue:[^ false].
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3212
    whatToDo == true ifTrue:[
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3213
        self accept
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3214
    ] ifFalse:[
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3215
        self cancel
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3216
    ].
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3217
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3218
    ^ true
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3219
!
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3220
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3221
copySelection
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3222
    self painter copySelection.
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3223
    self updateChannels.
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3224
!
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3225
1940
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3226
selectedSpec
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3227
    |specAndView|
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3228
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3229
    specAndView := self selectedSpecAndView.
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3230
    ^ specAndView first
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3231
!
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3232
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3233
selectedSpecAndView
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3234
    |spec view property|
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3235
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3236
    treeView isCanvasSelected ifTrue:[
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3237
        spec := treeView canvasSpec.
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3238
        view := self painter topView.
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3239
    ] ifFalse:[
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3240
        (property := treeView propertySelected) notNil ifTrue:[
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3241
            treeView canResizeSelectedWidget ifTrue:[
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3242
                view := property view.
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3243
            ].
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3244
            spec := property spec copy.
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3245
        ]
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3246
    ].
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3247
    ^ Array with:spec with:view
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3248
!
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3249
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  3250
tabSelection
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3251
    "returns the label of the current section in the notebook"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3252
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  3253
    ^ tabSelection
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  3254
!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  3255
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  3256
tabSelection:something
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3257
    "called whenever the section of the notebook has changed"
351
7cb9f9c9a872 more checks
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
  3258
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  3259
    (something isNil or:[tabSelection = something]) ifTrue:[
1621
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3260
        ^ self
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  3261
    ].
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  3262
2202
b465c7e48050 changed #tabSelection:
ca
parents: 2198
diff changeset
  3263
    self isModified ifTrue:[
b465c7e48050 changed #tabSelection:
ca
parents: 2198
diff changeset
  3264
        self autoAcceptOnSelectionChange value ifTrue:[
b465c7e48050 changed #tabSelection:
ca
parents: 2198
diff changeset
  3265
            self accept
b465c7e48050 changed #tabSelection:
ca
parents: 2198
diff changeset
  3266
        ] ifFalse:[
b465c7e48050 changed #tabSelection:
ca
parents: 2198
diff changeset
  3267
            self askForUnsavedModifications ifFalse:[^ self].
b465c7e48050 changed #tabSelection:
ca
parents: 2198
diff changeset
  3268
        ].
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  3269
    ].
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  3270
    tabSelection := something.
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3271
    self raiseTabView.
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  3272
    self cancel.
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  3273
!
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  3274
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  3275
treeSelectionChanged
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3276
    "called whenever the selection of the treeview has changed"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3277
1940
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3278
    |specAndView view spec|
1621
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3279
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3280
    self askForUnsavedModifications ifFalse:[^ self].
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3281
"/    self isModified ifTrue:[
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3282
"/        (self confirm:'Accept modifications in section ' , tabSelection printString asBoldText, '?') ifTrue:[
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3283
"/            self accept
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3284
"/        ]
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3285
"/    ].
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3286
1940
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3287
    specAndView := self selectedSpecAndView.
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3288
    spec := specAndView first.
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3289
    view := specAndView last.
1621
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3290
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3291
    self setViewInLayoutTool:view spec:spec.
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 282
diff changeset
  3292
    self specTool specification:spec.
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3293
1621
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3294
    self updateSlicesForSpec:spec andView:view.
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3295
    self clearModifiedFlag.
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3296
    self updateChannels.
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3297
!
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3298
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3299
updateSlicesForSpec:spec andView:view
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3300
    |slices "size" list tabComponent|
1621
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3301
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3302
    tabComponent := self componentAt:#noteBook.
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  3303
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3304
    spec notNil ifTrue:[
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3305
        self helpTool helpKey:(spec activeHelpKey).
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3306
        slices := spec class slices.
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3307
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3308
        list := slices collect:[:eachSlice | eachSlice first asString].
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3309
        self treeView isCanvasSelected ifFalse:[
2040
2df23da6484a you shalt not add to Arrays !
ab
parents: 2023
diff changeset
  3310
            list := list copyWith:(UIHelpTool label)
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3311
        ].
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3312
        view notNil ifTrue:[
2040
2df23da6484a you shalt not add to Arrays !
ab
parents: 2023
diff changeset
  3313
            list := list copyWith:UILayoutTool label.
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3314
        ].
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3315
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3316
"/        size   := slices size.
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3317
"/        view notNil ifTrue:[
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3318
"/            self treeView isCanvasSelected ifFalse:[
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3319
"/                list := Array new:(size + 2).
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3320
"/                list at:(size + 2) put:(UILayoutTool label).
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3321
"/            ] ifTrue:[
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3322
"/                list := Array new:(size + 1).
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3323
"/                list at:(size + 1) put:(UILayoutTool label).
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3324
"/            ].
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3325
"/        ] ifFalse:[
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3326
"/            list := Array new:(size + 1).
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3327
"/        ].
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3328
"/
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3329
"/        1 to:size do:[:i| list at:i put:((slices at:i) first asString)].
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3330
"/        self treeView isCanvasSelected ifFalse: [
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3331
"/            list at:(size + 1) put:(UIHelpTool label)
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3332
"/        ].
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3333
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3334
        self tabList value:list.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3335
        self showHelp:spec class name for:self.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3336
        tabComponent enabled:true.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3337
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3338
        (tabSelection := tabComponent selection) isNil ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3339
            tabComponent setSelection:(tabSelection := list first)
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3340
        ].
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3341
        self raiseTabView
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  3342
    ] ifFalse:[
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3343
        self helpTool helpKey:nil.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3344
        tabComponent enabled:false.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3345
        self defaultInfoLabel.
272
99de6af43afa confirm/cancel changes before switching a section or widget
ca
parents: 271
diff changeset
  3346
    ].
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  3347
! !
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  3348
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3349
!UIPainter methodsFor:'settings'!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3350
924
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  3351
generateAspectsAsInstanceVariables
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  3352
    "if on, aspects are held as instance variables;
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  3353
     if off (the default), they are kept in the bindings dictionary.
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  3354
    "
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  3355
    ^ UIPainterView generateAspectsAsInstanceVariables
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  3356
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  3357
    "Created: / 29.7.1998 / 11:17:59 / cg"
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  3358
!
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  3359
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  3360
generateAspectsAsInstanceVariables:aBoolean
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  3361
    "if on, aspects are held as instance variables;
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  3362
     if off (the default), they are kept in the bindings dictionary.
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  3363
    "
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  3364
    ^ UIPainterView generateAspectsAsInstanceVariables:aBoolean
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  3365
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  3366
    "Created: / 29.7.1998 / 11:18:20 / cg"
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  3367
!
0416d7cbae92 reviewed help texts;
Claus Gittinger <cg@exept.de>
parents: 913
diff changeset
  3368
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3369
redefineAspectMethods
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3370
    "redefine methods yes or no. If a method is defined in super class
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3371
     should the message be reinstalled ?
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3372
    "
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3373
    ^ UIPainterView redefineAspectMethods
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3374
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3375
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3376
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3377
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3378
redefineAspectMethods:aBoolean
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3379
    "redefine methods yes or no. If a method is defined in super class
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3380
     should the message be reinstalled ?
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3381
    "
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3382
    UIPainterView redefineAspectMethods:aBoolean
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3383
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3384
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3385
! !
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3386
1716
5ae373f6fef0 method category rename
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
  3387
!UIPainter methodsFor:'startup & release'!
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  3388
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  3389
closeRequest
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3390
    "asks for permission before closing"
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3391
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  3392
    self askForModification ifFalse:[^self].
133
e12f82d3afb7 popup box caused by a closeRequest with still open
ca
parents: 130
diff changeset
  3393
2007
77cf7ecc9ecf embedding as special editors
Claus Gittinger <cg@exept.de>
parents: 2001
diff changeset
  3394
    super closeRequest.
77cf7ecc9ecf embedding as special editors
Claus Gittinger <cg@exept.de>
parents: 2001
diff changeset
  3395
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3396
    treeView model removeDependent:self.
2007
77cf7ecc9ecf embedding as special editors
Claus Gittinger <cg@exept.de>
parents: 2001
diff changeset
  3397
    "/ self painter release.
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  3398
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  3399
    selectionPanel notNil ifTrue:[
2007
77cf7ecc9ecf embedding as special editors
Claus Gittinger <cg@exept.de>
parents: 2001
diff changeset
  3400
        selectionPanel masterApplication:nil.
77cf7ecc9ecf embedding as special editors
Claus Gittinger <cg@exept.de>
parents: 2001
diff changeset
  3401
        selectionPanel closeRequest
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  3402
    ].
149
e652608690b1 help ...
ca
parents: 144
diff changeset
  3403
    selectionPanel := nil.
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  3404
    treeView       := nil.
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  3405
!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  3406
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  3407
closeRequestFor:aTopView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3408
    "handles a close request for a specific view"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3409
173
a8468f4e83f0 show/hide painter/gallery
ca
parents: 171
diff changeset
  3410
    |topView|
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  3411
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3412
    (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
  3413
	super closeRequestFor:aTopView
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  3414
    ] ifFalse:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3415
	aTopView = selectionPanel window ifTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3416
	    self galleryShown value:false
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3417
	] ifFalse:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3418
	    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
  3419
		self painterShown value:false
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3420
	    ] ifFalse:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3421
		aTopView closeRequest
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3422
	    ]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3423
	].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  3424
	topView raise.
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  3425
    ].
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  3426
!
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  3427
1994
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3428
commonPostBuild
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3429
    "sets the root of the tree view as first selection;
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3430
     sets the grid parameters, if defined"
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3431
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3432
    |cls sel|
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3433
2072
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3434
    cls := self specClass.
1994
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3435
    sel := specSelector.
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3436
    cls notNil ifTrue:[
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3437
        self setClass:cls selector:sel.
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3438
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3439
        (cls respondsTo:sel) ifTrue:[  
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3440
            self painter setupFromSpec:(cls perform:sel).
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3441
        ]
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3442
    ].
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3443
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3444
    self autoAcceptOnSelectionChange addDependent:self.
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3445
    self autoAcceptOnSelectionChange value ifTrue:[
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3446
        (builder componentAt:'acceptButton') label:(resources string:'Apply')
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3447
    ].
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3448
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3449
    "/ using masters infoHolder ?
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3450
    (builder aspectAt:#useAlienInfoLabelHolder) == true ifTrue:[
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3451
        (builder componentAt:#mainPanel) layout bottomOffset:0.
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3452
        (builder componentAt:#infoBarSubSpec) beInvisible
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3453
    ].
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3454
2001
b12d9b4dd6f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
  3455
    self updateInfoLabel.
2023
7a37b7c85092 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  3456
2072
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3457
    "Modified: / 31-08-2006 / 10:12:53 / cg"
1994
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3458
!
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3459
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3460
loadFromClass:aClass andSelector:selector
1185
6c14008722e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3461
    "loads a window spec by evaluating aMessageString
6c14008722e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3462
     (which is something like 'fooClass windowSpec')"
6c14008722e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1180
diff changeset
  3463
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3464
    self assert:(aClass isNil or:[aClass isClass]).
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3465
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3466
    self askForModification ifFalse:[^ self].
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3467
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3468
    self setClass:aClass selector:selector.    
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3469
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3470
    (aClass respondsTo:selector) ifTrue:[   
2198
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3471
        self loadFromSpec:(aClass perform:selector).
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3472
    ]
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3473
!
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3474
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3475
loadFromMessage:classAndSelector
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3476
    "loads a window spec by evaluating aMessageString
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3477
     (which is something like 'fooClass windowSpec')"
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3478
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3479
    self askForModification ifFalse:[^ self].
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3480
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3481
    classAndSelector notNil ifTrue:[
2198
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3482
        self 
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3483
            loadFromClass:classAndSelector methodClass 
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3484
            andSelector:classAndSelector methodSelector
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  3485
    ]
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  3486
!
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  3487
2198
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3488
loadFromSpec:aSpec
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3489
    "loads a window spec proper"
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3490
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3491
    self askForModification ifFalse:[^ self].
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3492
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3493
    self painter setupFromSpec:aSpec.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3494
!
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3495
1850
410f98d259b7 kludge to raise the ui-painters control window
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3496
openInterface:aSymbol 
1994
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3497
    "in addition to opening my interface, also open up a gallery and a painter"
1850
410f98d259b7 kludge to raise the ui-painters control window
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  3498
    
2198
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3499
    |topView|
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3500
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3501
    self setupSpecClassAndSelector.
1994
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3502
2012
3a3b694c8288 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  3503
"/    treeView := TreeView new.
3a3b694c8288 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  3504
"/    treeView windowSpecClass:(self defaultWindowSpecClass).
3a3b694c8288 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  3505
"/    treeView 
3a3b694c8288 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  3506
"/        selectConditionBlock:[:newSelection | self selectionChangeAllowed:newSelection ].
3a3b694c8288 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  3507
3a3b694c8288 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  3508
"/    painterView := StandardSystemView new.
3a3b694c8288 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  3509
"/    name := name ? UIPainter defaultNameOfCanvas.
3a3b694c8288 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  3510
"/    painterView beToolWindow.
3a3b694c8288 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  3511
"/    painterView name:name.
3a3b694c8288 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  3512
"/    painterView label:name.
3a3b694c8288 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  3513
"/    painterView extent:(treeView windowSpecClass defaultExtentInUIPainter).
3a3b694c8288 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  3514
"/    painter := UIPainterView in:painterView.
3a3b694c8288 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  3515
"/    painter layout:(0.0 @ 0.0 corner:1.0 @ 1.0) asLayout.
3a3b694c8288 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  3516
"/    treeView := treeView canvas:painter specName:name.
3a3b694c8288 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  3517
"/    painter treeView:treeView.
3a3b694c8288 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  3518
"/    treeView model addDependent:self.
3a3b694c8288 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
  3519
"/    painter enableChannel:(self enableChannel).
1994
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3520
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3521
    super openInterface:aSymbol.
1994
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3522
136
42a2a4494281 remove postOpen
ca
parents: 133
diff changeset
  3523
    topView := self window.
345
c4d8f4c74c26 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
  3524
    topView label:'GUI Painter'.
2198
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3525
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3526
"/    self setupCanvasAndSelectionPanel.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3527
"/
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3528
"/    selectionPanel window waitUntilVisible.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3529
"/    painterView window waitUntilVisible.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3530
"/    self window waitUntilVisible.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3531
"/    [ Delay waitForSeconds:0.5. self window topView raise ] fork.
2072
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3532
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3533
    "Modified: / 31-08-2006 / 10:13:16 / cg"
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  3534
!
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  3535
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  3536
openOnClass:aClass
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3537
    "opens the GUI Painter on aClass and #windowSpec"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3538
109
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  3539
    self openOnClass:aClass andSelector:#windowSpec
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  3540
!
0b53bd128667 *** empty log message ***
ca
parents: 101
diff changeset
  3541
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  3542
openOnClass:aClass andSelector:aSelector
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3543
    "opens the GUI Painter on aClass and aSelector"
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3544
157
ce974dce3dd4 enhanced class & method dialog
Claus Gittinger <cg@exept.de>
parents: 156
diff changeset
  3545
    aClass isNil ifTrue:[
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3546
        (self confirm:'No class given to the GUI Painter (class was probably renamed?)\\Open anyway (to create a new window spec) ?' withCRs)
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3547
        ifFalse:[^ nil].
157
ce974dce3dd4 enhanced class & method dialog
Claus Gittinger <cg@exept.de>
parents: 156
diff changeset
  3548
    ].
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  3549
798
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  3550
    specSelector := aSelector.
2072
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3551
    specClass := aClass.
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3552
    specClassName := aClass name.
798
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  3553
964
476235fbb312 setup class/selector, before opening the interface;
Claus Gittinger <cg@exept.de>
parents: 952
diff changeset
  3554
    self openInterface.
476235fbb312 setup class/selector, before opening the interface;
Claus Gittinger <cg@exept.de>
parents: 952
diff changeset
  3555
476235fbb312 setup class/selector, before opening the interface;
Claus Gittinger <cg@exept.de>
parents: 952
diff changeset
  3556
"/    specSelector := aSelector.
476235fbb312 setup class/selector, before opening the interface;
Claus Gittinger <cg@exept.de>
parents: 952
diff changeset
  3557
"/    specClass := aClass.
476235fbb312 setup class/selector, before opening the interface;
Claus Gittinger <cg@exept.de>
parents: 952
diff changeset
  3558
2072
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  3559
    "Modified: / 31-08-2006 / 10:13:31 / cg"
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3560
!
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3561
1192
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  3562
postBuildWith: aBuilder
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  3563
    super postBuildWith:aBuilder.
798
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  3564
1994
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3565
    self setupPainter.
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  3566
1192
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  3567
    "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
  3568
!
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  3569
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  3570
postOpenWith: aBuilder
1994
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3571
    "spread the painter and gallery views on the screen"
1192
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  3572
1194
651885033545 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1193
diff changeset
  3573
    |myWindow canvasWindow canvasOrg galleryWindow 
1957
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  3574
     galleryOrg myOrg myCorner windowGroup|
1192
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  3575
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  3576
    super postOpenWith: aBuilder.
1957
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  3577
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  3578
    windowGroup := self topApplication windowGroup.
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  3579
    windowGroup addPreEventHook:self.
cd30f8cd59f8 Ctrl-CursorUp/Down in tree
Claus Gittinger <cg@exept.de>
parents: 1954
diff changeset
  3580
798
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  3581
    treeView selection: #(1).
1247
6fb170b75302 clear menuBar in keyProcessor
ca
parents: 1230
diff changeset
  3582
    aBuilder keyboardProcessor menuBar:nil.
798
c1116ba57e66 set window specification after realization of the window
ca
parents: 794
diff changeset
  3583
1192
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  3584
    myWindow := self window.
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  3585
    canvasWindow := self painter topView.
1456
7435d111bb09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1453
diff changeset
  3586
    [selectionPanel isNil] whileTrue:[
7435d111bb09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1453
diff changeset
  3587
        Delay waitForSeconds:0.1.
7435d111bb09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1453
diff changeset
  3588
    ].
2007
77cf7ecc9ecf embedding as special editors
Claus Gittinger <cg@exept.de>
parents: 2001
diff changeset
  3589
1192
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  3590
    galleryWindow := selectionPanel window.
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  3591
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  3592
    myOrg := myWindow origin.
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  3593
    myCorner := myWindow corner.
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  3594
1197
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  3595
    "/ try to lay out things non-overlapping
2007
77cf7ecc9ecf embedding as special editors
Claus Gittinger <cg@exept.de>
parents: 2001
diff changeset
  3596
    true
77cf7ecc9ecf embedding as special editors
Claus Gittinger <cg@exept.de>
parents: 2001
diff changeset
  3597
1197
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  3598
    "/ 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
  3599
    "/ on top of each other
2007
77cf7ecc9ecf embedding as special editors
Claus Gittinger <cg@exept.de>
parents: 2001
diff changeset
  3600
    "/ myOrg = canvasWindow origin 
77cf7ecc9ecf embedding as special editors
Claus Gittinger <cg@exept.de>
parents: 2001
diff changeset
  3601
77cf7ecc9ecf embedding as special editors
Claus Gittinger <cg@exept.de>
parents: 2001
diff changeset
  3602
    ifTrue:[
1197
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  3603
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  3604
        canvasOrg := 10@20.
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  3605
"/        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
  3606
        galleryOrg := (device width - galleryWindow width - 20) 
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  3607
                      @ 
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  3608
                      ((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
  3609
        myWindow origin:myOrg.
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  3610
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  3611
        canvasWindow origin:canvasOrg.
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  3612
        galleryWindow origin:galleryOrg.
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  3613
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  3614
        galleryWindow raise.
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  3615
        canvasWindow raise.
ef91ed58b7d4 only move canvas & gallery, if windowManager placed windows
Claus Gittinger <cg@exept.de>
parents: 1195
diff changeset
  3616
    ].
1192
f3f5c92930c9 do painter setup in postBuild, selection in postOpen.
Claus Gittinger <cg@exept.de>
parents: 1188
diff changeset
  3617
2198
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3618
    self setupCanvasAndSelectionPanel.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3619
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3620
"/    selectionPanel window waitUntilVisible.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3621
"/    painterView window waitUntilVisible.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3622
"/    self window waitUntilVisible.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3623
    [   Delay waitForSeconds:0.1. 
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3624
        self window topView raise.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3625
        Delay waitForSeconds:0.25. 
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3626
        self window topView raise 
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3627
    ] fork.
1195
64f3537ca061 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1194
diff changeset
  3628
    "Modified: / 13.7.1999 / 21:26:52 / cg"
1461
b061747908b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1457
diff changeset
  3629
!
b061747908b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1457
diff changeset
  3630
b061747908b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1457
diff changeset
  3631
selectionPanelClass
b061747908b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1457
diff changeset
  3632
    ^ UISelectionPanel
1994
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3633
!
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3634
2198
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3635
setupCanvasAndSelectionPanel
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3636
    |topView galleryWindow icon|
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3637
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3638
    icon := Smalltalk imageFromFileNamed:'UIPainter.xbm' forClass:self class.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3639
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3640
    topView := self window.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3641
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3642
    painterView openInGroup:(topView windowGroup).
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3643
    painterView application:self.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3644
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3645
    galleryWindow := selectionPanel window.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3646
    galleryWindow beToolWindow.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3647
    galleryWindow openInGroup:(topView windowGroup).
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3648
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3649
    selectionPanel masterApplication:self.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3650
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3651
    topView iconLabel:'GUI Painter'.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3652
    topView icon:icon.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3653
    painterView iconLabel:'GUI Canvas'.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3654
    painterView icon:icon.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3655
    galleryWindow iconLabel:'GUI Gallery'.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3656
    galleryWindow icon:icon.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3657
    
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3658
    topView bePartner.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3659
    painterView bePartner.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3660
    galleryWindow bePartner.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3661
!
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3662
1994
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3663
setupPainter
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3664
    "sets the painter's grid parameters, if defined"
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3665
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3666
    |painter settings gridPara hspace vspace|
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3667
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3668
    painter  := self painter.
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3669
    settings := self class settings.
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3670
    gridPara := painter gridParameters copy.
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3671
    hspace   := settings at: #HGridSpace ifAbsent:10.
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3672
    vspace   := settings at: #VGridSpace ifAbsent:10.
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3673
    gridPara at:1 put:hspace; at:2 put:vspace; at:5 put:hspace; at:6 put:vspace.
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3674
    painter gridParameters:gridPara.
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3675
    painter gridShown: (settings at: #GridShown ifAbsent:false).
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3676
    painter gridAlign: (settings at: #GridAlign ifAbsent:false).
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3677
    painter shown ifTrue:[painter clearView].
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3678
afcf20d971e0 postBuild
Claus Gittinger <cg@exept.de>
parents: 1991
diff changeset
  3679
    "Modified: / 22.8.1998 / 17:41:34 / cg"
2198
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3680
!
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3681
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3682
setupSpecClassAndSelector
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3683
    |cls name|
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3684
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3685
    self specClass notNil ifTrue:[
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3686
        specClassName isBehavior ifTrue:[
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3687
            name := specClassName nameWithoutPrefix.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3688
        ] ifFalse:[
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3689
            name := specClassName printString string
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3690
        ]
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3691
    ].
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3692
    (aspects at:#classNameChannel) value:(specClassName ? 'NewApplication').
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3693
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3694
    specSuperclassName isNil ifTrue:[
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3695
        specClassName notNil ifTrue:[
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3696
            (cls := self resolveName:specClassName) notNil ifTrue:[
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3697
                specSuperclassName := cls superclass name.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3698
            ]
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3699
        ]
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3700
    ].
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3701
    aspects at:#superclassNameChannel
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3702
        put:((specSuperclassName notNil 
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3703
                ifTrue:[ specSuperclassName ]
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3704
                ifFalse:[ 'ApplicationModel' ]) asValue).
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3705
    aspects at:#superclassNameDefaults
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3706
        put:#( 'ApplicationModel' 'SimpleDialog' ) asValue.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3707
    aspects at:#methodNameChannel
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3708
        put:((specSelector notNil 
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3709
                ifTrue:[ specSelector asValue ]
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  3710
                ifFalse:[ #windowSpec ]) asValue).
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  3711
! !
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  3712
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  3713
!UIPainter methodsFor:'user actions'!
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3714
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3715
accept
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3716
    "accepts all modifications done to the attributes of the current section"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3717
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3718
    |painter layout spec layoutTool layoutView t|
1068
dcb2cba5787f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  3719
dcb2cba5787f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1063
diff changeset
  3720
    self acceptChannel value:true; value:false.  "/ force editFields to accept
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3721
    self clearModifiedFlag.
788
8f9f3c3fcf60 avoid modified problems
tz
parents: 787
diff changeset
  3722
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3723
    painter := self painter.
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3724
    spec := self specTool specification.
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3725
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3726
    self isLayoutToolSelected ifTrue:[
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3727
        layoutTool := self layoutTool.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3728
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3729
        (layout := layoutTool layout) notNil ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3730
            layoutTool layoutType == #Extent ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3731
                layoutView := layoutTool layoutView.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3732
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3733
                layoutView == painter topView ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3734
                    layoutView extent:layout
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3735
                ] ifFalse:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3736
                    spec useDefaultExtent:(layoutTool aspectFor:#useDefaultExtent) value.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3737
                    spec useDefaultExtent ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3738
                        "/ temporarily unfreeze the widgets size
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3739
                        "/ (but remember, the old setting, which is actually
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3740
                        "/ controlled by the resizeForLabel attribute)
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3741
                        t := layoutView sizeFixed.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3742
                        layoutView sizeFixed:false.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3743
                        layout := layoutView preferredExtent.    
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3744
                        layoutView sizeFixed:t.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3745
                    ].
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3746
                    painter setExtent:layout.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3747
                    painter updateFromSpec:spec.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3748
                ]
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3749
            ] ifFalse:[
1444
fec7424dccda clear the useDefaultExtent flag, if the layout is NOT an extent
martin
parents: 1442
diff changeset
  3750
                spec useDefaultExtent:false.
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3751
                painter setLayout:layout
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3752
            ]
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3753
        ]
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3754
    ] ifFalse:[
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3755
        self isHelpToolSelected ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3756
            self helpTool accept.      
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3757
            spec activeHelpKey:self helpTool helpKey.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3758
        ].      
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3759
        painter updateFromSpec:spec
1071
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3760
    ].
560a9eb1a5d8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1068
diff changeset
  3761
2007
77cf7ecc9ecf embedding as special editors
Claus Gittinger <cg@exept.de>
parents: 2001
diff changeset
  3762
    self clearModified
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3763
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3764
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3765
addWidget: aSpecClass
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3766
    "adds a widget from aSpecClass to the current widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3767
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3768
    self addWidgetOfSpec: (Array with: (Smalltalk at: aSpecClass) new)
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3769
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3770
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3771
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3772
addWidgetOfSpec: aSpec
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3773
    "adds a widget from aSpec to the current widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3774
1521
2efd2b9419c4 undo: show type of undo in menu;
Claus Gittinger <cg@exept.de>
parents: 1499
diff changeset
  3775
    |newSel|
2efd2b9419c4 undo: show type of undo in menu;
Claus Gittinger <cg@exept.de>
parents: 1499
diff changeset
  3776
2077
bf7f7207fa07 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2072
diff changeset
  3777
    (newSel := painter pasteSpecifications:aSpec keepLayout:false at:0@0) notNil
bf7f7207fa07 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2072
diff changeset
  3778
    ifTrue:[
bf7f7207fa07 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2072
diff changeset
  3779
        painter select: newSel
bf7f7207fa07 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2072
diff changeset
  3780
    ] ifFalse:[   
1521
2efd2b9419c4 undo: show type of undo in menu;
Claus Gittinger <cg@exept.de>
parents: 1499
diff changeset
  3781
        ((treeView selection size = 0) or: [treeView selectedNode isNil])
2077
bf7f7207fa07 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2072
diff changeset
  3782
        ifTrue:[                          
1521
2efd2b9419c4 undo: show type of undo in menu;
Claus Gittinger <cg@exept.de>
parents: 1499
diff changeset
  3783
            treeView selection: #(1).
2077
bf7f7207fa07 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2072
diff changeset
  3784
        ] ifFalse:[  
1521
2efd2b9419c4 undo: show type of undo in menu;
Claus Gittinger <cg@exept.de>
parents: 1499
diff changeset
  3785
            treeView selectNode: (treeView detectNode: [:n| n = treeView selectedNode parent])
2efd2b9419c4 undo: show type of undo in menu;
Claus Gittinger <cg@exept.de>
parents: 1499
diff changeset
  3786
        ].
2efd2b9419c4 undo: show type of undo in menu;
Claus Gittinger <cg@exept.de>
parents: 1499
diff changeset
  3787
        self addWidgetOfSpec: aSpec
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3788
    ]
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3789
2077
bf7f7207fa07 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2072
diff changeset
  3790
    "Modified: / 05-09-2006 / 18:37:12 / cg"
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3791
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3792
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3793
cancel
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3794
    "cancels all modifications done to the attributes of the current section; 
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3795
     reread the old attributes"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3796
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3797
    |spec key view|
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3798
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3799
    self isModified ifTrue:[
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3800
        (spec := self painter specForSelection) notNil ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3801
            key := spec activeHelpKey.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3802
        ].
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3803
        self helpTool helpKey:key.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3804
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3805
        treeView isCanvasSelected ifTrue: [
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3806
            spec := treeView canvasSpec.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3807
        ].
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  3808
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3809
        self specTool specification:spec.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3810
        view := self layoutTool layoutView.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3811
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3812
        self setViewInLayoutTool:view spec:spec.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3813
        spec class == DataSetSpec ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3814
            view notNil ifTrue:[
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3815
                view columnDescriptors:(spec columns)
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3816
            ]
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3817
        ].        
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3818
        self clearModifiedFlag.
2007
77cf7ecc9ecf embedding as special editors
Claus Gittinger <cg@exept.de>
parents: 2001
diff changeset
  3819
        self clearModified.
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3820
    ]
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3821
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3822
1940
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3823
doAskAndReplaceWidgetBy
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3824
    |widgetClass|
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3825
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3826
    widgetClass := Dialog requestClass:'Spec- or View-Class:' okLabel:'OK' initialAnswer:nil.
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3827
    widgetClass isNil ifTrue:[
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3828
        ^ self
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3829
    ].
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3830
    self replaceWidgetByClass:widgetClass
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3831
!
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3832
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3833
doBrowseAspectMethods
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3834
    "opens a browser on the aspect methods"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3835
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3836
    |methods|
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3837
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3838
    self painter isModified ifTrue:[
1392
f6f7a70c5d41 browserClass from preferences
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
  3839
        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
  3840
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3841
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3842
    (methods := self painter aspectMethods) isEmpty ifTrue:[
1683
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  3843
        self warn:'No aspect methods found !!'.
1392
f6f7a70c5d41 browserClass from preferences
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
  3844
        ^ self.
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3845
    ].
1684
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  3846
    UserPreferences systemBrowserClass 
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  3847
        browseMethods:methods 
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  3848
        title:'Aspect methods'.
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3849
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  3850
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3851
doBrowseClass
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3852
    "opens a System Browser on the specClass"
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3853
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  3854
    self painter isModified ifTrue:[
1392
f6f7a70c5d41 browserClass from preferences
Claus Gittinger <cg@exept.de>
parents: 1391
diff changeset
  3855
        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
  3856
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3857
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  3858
    UserPreferences systemBrowserClass openInClass:(self resolveName:specClassName)
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  3859
!
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  3860
1742
4c39c2f1dcc7 help texts
Claus Gittinger <cg@exept.de>
parents: 1739
diff changeset
  3861
doBrowseViewClass
4c39c2f1dcc7 help texts
Claus Gittinger <cg@exept.de>
parents: 1739
diff changeset
  3862
    "opens a browser on the selected widgets class"
4c39c2f1dcc7 help texts
Claus Gittinger <cg@exept.de>
parents: 1739
diff changeset
  3863
4c39c2f1dcc7 help texts
Claus Gittinger <cg@exept.de>
parents: 1739
diff changeset
  3864
    |selection|
4c39c2f1dcc7 help texts
Claus Gittinger <cg@exept.de>
parents: 1739
diff changeset
  3865
4c39c2f1dcc7 help texts
Claus Gittinger <cg@exept.de>
parents: 1739
diff changeset
  3866
    ((selection := self painter selection) isCollection and: [selection size >= 1]) ifTrue:[
4c39c2f1dcc7 help texts
Claus Gittinger <cg@exept.de>
parents: 1739
diff changeset
  3867
        selection first class browse
4c39c2f1dcc7 help texts
Claus Gittinger <cg@exept.de>
parents: 1739
diff changeset
  3868
    ] ifFalse: [
4c39c2f1dcc7 help texts
Claus Gittinger <cg@exept.de>
parents: 1739
diff changeset
  3869
        selection class browse
4c39c2f1dcc7 help texts
Claus Gittinger <cg@exept.de>
parents: 1739
diff changeset
  3870
    ]
4c39c2f1dcc7 help texts
Claus Gittinger <cg@exept.de>
parents: 1739
diff changeset
  3871
!
4c39c2f1dcc7 help texts
Claus Gittinger <cg@exept.de>
parents: 1739
diff changeset
  3872
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3873
doDefineClassAndSelector
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3874
    "launches a dialog for defining class, superclass, and selector of the application"
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3875
1819
cbf2079fd723 bugfix: test whether specClass is a symbol not a string
ca
parents: 1803
diff changeset
  3876
    |again readFromModelKeyed|
cbf2079fd723 bugfix: test whether specClass is a symbol not a string
ca
parents: 1803
diff changeset
  3877
cbf2079fd723 bugfix: test whether specClass is a symbol not a string
ca
parents: 1803
diff changeset
  3878
    readFromModelKeyed := [:aKey| |ret|
cbf2079fd723 bugfix: test whether specClass is a symbol not a string
ca
parents: 1803
diff changeset
  3879
        ret := (self aspectFor:aKey) value.
cbf2079fd723 bugfix: test whether specClass is a symbol not a string
ca
parents: 1803
diff changeset
  3880
        ret isEmptyOrNil ifTrue:[
cbf2079fd723 bugfix: test whether specClass is a symbol not a string
ca
parents: 1803
diff changeset
  3881
            ret := nil
cbf2079fd723 bugfix: test whether specClass is a symbol not a string
ca
parents: 1803
diff changeset
  3882
        ] ifFalse:[
cbf2079fd723 bugfix: test whether specClass is a symbol not a string
ca
parents: 1803
diff changeset
  3883
            ret isString ifTrue:[
cbf2079fd723 bugfix: test whether specClass is a symbol not a string
ca
parents: 1803
diff changeset
  3884
                ret := ret string withoutSeparators.
cbf2079fd723 bugfix: test whether specClass is a symbol not a string
ca
parents: 1803
diff changeset
  3885
                ret := ret isEmpty ifTrue:[nil] ifFalse:[ret asSymbol].
cbf2079fd723 bugfix: test whether specClass is a symbol not a string
ca
parents: 1803
diff changeset
  3886
            ].
cbf2079fd723 bugfix: test whether specClass is a symbol not a string
ca
parents: 1803
diff changeset
  3887
        ].
cbf2079fd723 bugfix: test whether specClass is a symbol not a string
ca
parents: 1803
diff changeset
  3888
        ret
cbf2079fd723 bugfix: test whether specClass is a symbol not a string
ca
parents: 1803
diff changeset
  3889
    ].
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3890
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3891
    [
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3892
        again := false.
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3893
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  3894
        aspects at:#classNameChannel      put:(specClassName      ? 'NewApplication')   asValue.
1819
cbf2079fd723 bugfix: test whether specClass is a symbol not a string
ca
parents: 1803
diff changeset
  3895
        aspects at:#methodNameChannel     put:(specSelector   ? 'windowSpec')       asValue.
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3896
        aspects at:#superclassNameChannel put:(specSuperclassName ? 'ApplicationModel') asValue.
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3897
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3898
        (self openDialogInterface:#dialogSpecForDefiningClassAndSelector) ifTrue:[
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  3899
            specClassName      := readFromModelKeyed value:#classNameChannel.
1819
cbf2079fd723 bugfix: test whether specClass is a symbol not a string
ca
parents: 1803
diff changeset
  3900
            specSelector   := readFromModelKeyed value:#methodNameChannel.
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3901
            specSuperclassName := readFromModelKeyed value:#superclassNameChannel.
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3902
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3903
            (again := self checkClassAndSelector not) ifFalse:[
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  3904
                self painter className:specClassName
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  3905
                        superclassName:specSuperclassName
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3906
                              selector:specSelector.
1394
97a7eeabae40 overwriting existing method check (in #defineClass & selector);
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
  3907
            ].
97a7eeabae40 overwriting existing method check (in #defineClass & selector);
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
  3908
97a7eeabae40 overwriting existing method check (in #defineClass & selector);
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
  3909
            again ifFalse:[
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  3910
                ((Smalltalk at:specClassName asSymbol) notNil
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  3911
                and:[ (Smalltalk at:specClassName asSymbol) class includesSelector:specSelector ])
1394
97a7eeabae40 overwriting existing method check (in #defineClass & selector);
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
  3912
                ifTrue:[
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  3913
                    (self confirm:('%1 already implements %2. Overwrite ?' bindWith:specClassName with:specSelector))
1394
97a7eeabae40 overwriting existing method check (in #defineClass & selector);
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
  3914
                    ifFalse:[
97a7eeabae40 overwriting existing method check (in #defineClass & selector);
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
  3915
                        again := true.
97a7eeabae40 overwriting existing method check (in #defineClass & selector);
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
  3916
                    ].
97a7eeabae40 overwriting existing method check (in #defineClass & selector);
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
  3917
                ].
97a7eeabae40 overwriting existing method check (in #defineClass & selector);
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
  3918
            ].
97a7eeabae40 overwriting existing method check (in #defineClass & selector);
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
  3919
        ] ifFalse: [
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3920
            ^nil
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3921
        ]
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3922
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3923
    ] doWhile:[again].
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3924
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  3925
    specClassName := specClassName isBehavior ifTrue:[specClassName name]
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  3926
                                      ifFalse:[specClassName].
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3927
1188
4805027d9d33 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1186
diff changeset
  3928
    self clearModifiedFlag.
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  3929
    self helpTool buildAndMergeFromClass:specClassName.
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3930
    self updateInfoLabel
892
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  3931
b200d2d9bf5e avoid repeated send-sequences
Claus Gittinger <cg@exept.de>
parents: 890
diff changeset
  3932
    "Modified: / 16.7.1998 / 18:26:33 / cg"
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3933
!
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3934
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3935
doDefineGrid
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3936
    "opens a dialog for the grid parameters"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  3937
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3938
    |hspace vspace bindings painter gridPara settings|
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3939
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3940
    painter  := self painter.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3941
    bindings := IdentityDictionary new.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3942
    gridPara := painter gridParameters copy.
1021
8c1deb0281c7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3943
    settings := self class settings.
8c1deb0281c7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3944
8c1deb0281c7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3945
    bindings at:#showGrid    put:((settings at: #GridShown ifAbsent: [painter gridShown]) asValue).
8c1deb0281c7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3946
    bindings at:#alignToGrid put:((settings at: #GridAlign ifAbsent: [painter gridAlign]) asValue).
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3947
    bindings at:#hspace      put:((gridPara at:1) asValue).
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3948
    bindings at:#vspace      put:((gridPara at:2) asValue).
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3949
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3950
    (self openDialogInterface:#dialogSpecForDefiningGridParameters withBindings:bindings) ifFalse:[
1803
a0f73e1695e1 clear -> clearView
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  3951
        ^ self
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3952
    ].
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3953
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3954
    hspace := (bindings at:#hspace) value ? 5.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3955
    vspace := (bindings at:#vspace) value ? 5.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3956
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3957
    gridPara at:1 put:hspace.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3958
    gridPara at:2 put:vspace.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3959
    gridPara at:5 put:hspace.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3960
    gridPara at:6 put:vspace.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3961
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3962
    painter gridShown:false. 
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3963
    painter gridAlign:false. 
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3964
    painter gridParameters:gridPara.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3965
    painter gridAlign:(bindings at:#alignToGrid) value.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3966
    painter gridShown:(bindings at:#showGrid) value.
1021
8c1deb0281c7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3967
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3968
    settings at: #GridShown  put: (bindings at:#showGrid) value.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3969
    settings at: #GridAlign  put: (bindings at:#alignToGrid) value.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3970
    settings at: #HGridSpace put: hspace.
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3971
    settings at: #VGridSpace put: vspace.
1803
a0f73e1695e1 clear -> clearView
Claus Gittinger <cg@exept.de>
parents: 1801
diff changeset
  3972
    painter clearView.
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3973
1021
8c1deb0281c7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 984
diff changeset
  3974
    "Modified: / 4.2.1999 / 15:36:34 / cg"
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3975
!
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  3976
1683
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  3977
doGenerateAspectMethodFor
1684
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  3978
    |cls code aspectList displayedList selectorsToGenerateCode 
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  3979
     doBrowse methods|
1683
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  3980
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  3981
    self askForSectionModification.
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  3982
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  3983
    cls := self targetClass.
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  3984
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  3985
    aspectList := OrderedCollection new.
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  3986
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  3987
    self aspectSelectorsAndTypesDo:
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  3988
        [:selector :type | 
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  3989
            ( #(#modelAspect channelAspect actionSelector valueSelector) includes:type) ifTrue:[
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  3990
                (cls includesSelector:selector) ifFalse:[
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  3991
                    aspectList add:( Array with:selector with:type ).
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  3992
                ]
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  3993
            ]
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  3994
        ].
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  3995
    
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  3996
    aspectList isEmpty ifTrue:[
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  3997
        self information:'All aspect methods exist.'.
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  3998
        ^ self.
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  3999
    ].
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  4000
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  4001
    displayedList := aspectList collect:[:entry | (((entry first) paddedTo:25) contractTo:25) , ' -> ' , entry second ].
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  4002
    aspectList := aspectList collect:[:each | each first].
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  4003
1684
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  4004
    doBrowse := false.    
1683
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  4005
    selectorsToGenerateCode := Dialog
1684
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  4006
        choose:'Select aspect(s) for which code shall be generated:' 
1683
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  4007
        fromList:displayedList 
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  4008
        values:aspectList 
1684
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  4009
        initialSelection:nil
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  4010
        buttons:nil 
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  4011
        values:nil 
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  4012
        lines:15 
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  4013
        cancel:nil 
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  4014
        multiple:true
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  4015
        postBuildBlock:[:dialog | 
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  4016
                            |b|
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  4017
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  4018
                            b := Button label:'Generate & Browse'.
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  4019
                            b action:[doBrowse := true. dialog okPressed].
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  4020
                            b := dialog addButton:b before:dialog okButton.
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  4021
                       ].
1683
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  4022
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  4023
    selectorsToGenerateCode isEmptyOrNil ifTrue:[^ self].
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  4024
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  4025
    code := self painter generateAspectMethodCodeFiltering:selectorsToGenerateCode.
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  4026
    code readStream fileIn.
1684
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  4027
1689
5d02658c548a must refetch class after adding instVars (when generating aspects)
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  4028
    "/ refetch - cls is now obsolete
5d02658c548a must refetch class after adding instVars (when generating aspects)
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  4029
    cls := self targetClass.
5d02658c548a must refetch class after adding instVars (when generating aspects)
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  4030
1684
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  4031
    doBrowse ifTrue:[
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  4032
        methods := selectorsToGenerateCode 
1739
f7baa10ebb1c Delete #max: (- windowsize) in windowSpecs
Stefan Vogel <sv@exept.de>
parents: 1719
diff changeset
  4033
                        collect:[:sel | cls compiledMethodAt:sel]
1684
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  4034
                        thenSelect:[:m | m notNil].
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  4035
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  4036
        UserPreferences systemBrowserClass 
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  4037
            browseMethods:methods 
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  4038
            title:'Some Aspect methods'.
34b35b8ae80f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1683
diff changeset
  4039
    ].
1683
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  4040
!
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  4041
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  4042
doGenerateAspectMethods
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4043
    "generates aspect and action methods for the application class"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4044
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4045
    self askForSectionModification.
1683
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  4046
    self withWaitCursorDo:[
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  4047
        |code|
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  4048
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  4049
        code := self painter generateAspectMethodCode.
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  4050
        code readStream fileIn.
f95658463570 added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents: 1671
diff changeset
  4051
    ]
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  4052
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  4053
1357
ba372586f899 checkin from browser
ca
parents: 1356
diff changeset
  4054
doGenerateAspectSelectorsMethod
ba372586f899 checkin from browser
ca
parents: 1356
diff changeset
  4055
    "generates aspectSelectors method for the exported aspects"
ba372586f899 checkin from browser
ca
parents: 1356
diff changeset
  4056
ba372586f899 checkin from browser
ca
parents: 1356
diff changeset
  4057
ba372586f899 checkin from browser
ca
parents: 1356
diff changeset
  4058
    self askForSectionModification.
ba372586f899 checkin from browser
ca
parents: 1356
diff changeset
  4059
ba372586f899 checkin from browser
ca
parents: 1356
diff changeset
  4060
    (ReadStream on:self painter generateAspectSelectorsMethod) fileIn.
ba372586f899 checkin from browser
ca
parents: 1356
diff changeset
  4061
ba372586f899 checkin from browser
ca
parents: 1356
diff changeset
  4062
!
ba372586f899 checkin from browser
ca
parents: 1356
diff changeset
  4063
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  4064
doGenerateHookMethods
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4065
    "generates hook methods for the application class"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4066
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4067
    self askForSectionModification.
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4068
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4069
    (ReadStream on:self painter generateHookMethods) fileIn.
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4070
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4071
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4072
966
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  4073
doGenerateMenuMethods
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  4074
    "generates menu stub methods for the application class"
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  4075
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  4076
    self askForSectionModification.
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  4077
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  4078
    (ReadStream on:self painter generateMenuMethods) fileIn.
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  4079
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  4080
    "Created: / 23.8.1998 / 16:10:04 / cg"
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  4081
!
bbea01c1de98 added menu-action code generation
Claus Gittinger <cg@exept.de>
parents: 964
diff changeset
  4082
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4083
doInspectSpec
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4084
    "opens an inspector on the spec of the selected widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4085
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4086
    |spec|
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4087
2198
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  4088
    (spec := self painter specForSelection) isNil ifTrue:[
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  4089
        treeView isCanvasSelected ifTrue:[
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  4090
            spec := treeView canvasSpec.
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  4091
        ]
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  4092
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4093
    spec notNil ifTrue:[
2198
804e778590fc slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents: 2175
diff changeset
  4094
        spec inspect
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4095
    ]
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4096
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4097
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4098
doInspectView
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4099
    "opens an inspector on the view of the selected widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4100
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4101
    |selection|
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4102
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4103
    ((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
  4104
	selection first inspect
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4105
    ] ifFalse: [
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4106
	selection inspect
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4107
    ]
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4108
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  4109
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  4110
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4111
doLoad
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4112
    "opens a ResourceSelectionBrowser for loading a window spec from a class"
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4113
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  4114
    self askForModification ifFalse: [^nil].
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  4115
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4116
    self loadFromMessage: 
2072
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  4117
        (ResourceSelectionBrowser
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  4118
            request: 'Load Window Spec From Class'
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  4119
            onSuperclass: nil
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  4120
            andClass: self specClass
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  4121
            andSelector: specSelector ? #windowSpec
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  4122
            withResourceTypes: #(canvas))
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  4123
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  4124
    "Modified: / 31-08-2006 / 10:14:01 / cg"
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4125
!
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4126
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4127
doLoadSubspec
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4128
    "opens a ResourceSelectionBrowser for loading a sub spec from a class"
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4129
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4130
    |classAndSelector class selector|
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  4131
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4132
    self askForSectionModification.
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  4133
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4134
    classAndSelector := ResourceSelectionBrowser
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4135
            request: 'Load Subspec From Class'
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4136
            onSuperclass: nil
2072
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  4137
            andClass: self specClass
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4138
            andSelector: specSelector
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4139
            withResourceTypes: #(canvas).
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4140
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4141
    classAndSelector isNil ifTrue:[^ self].
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4142
    class := classAndSelector methodClass.
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4143
    selector := classAndSelector methodSelector.
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  4144
    (class == specClassName and: [selector == specSelector]) ifTrue: [
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4145
        self warn: 'Current interface as subspec not allowed!!'.
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4146
        ^ self.
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4147
    ].
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4148
    (class respondsTo:selector) ifTrue:[
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4149
        self addWidgetOfSpec:(Array with: (UISubSpecification new majorKey: class name; minorKey: selector))
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4150
    ]
2072
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  4151
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  4152
    "Modified: / 31-08-2006 / 10:13:56 / cg"
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  4153
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  4154
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  4155
doNew
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4156
    "removes all widgets, specClass, and specSelector"
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  4157
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  4158
    self askForModification ifFalse: [^nil].
2072
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  4159
    specClass := specClassName := specSelector := nil.
572
ac2a1dd83d28 open tutorial added
tz
parents: 565
diff changeset
  4160
    self painter removeAll.
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  4161
    treeView canvas topView name:  UIPainter defaultNameOfCanvas.
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  4162
    treeView canvas topView label: UIPainter defaultNameOfCanvas.
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  4163
    self helpTool doNew.
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  4164
    self treeSelectionChanged.
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  4165
    treeView selectedNode changed.
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  4166
    self tabModel value: self tabList value first.
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  4167
    self updateInfoLabel.
2072
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  4168
0b0a24d7b198 class vs. className confusion
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  4169
    "Modified: / 31-08-2006 / 10:14:10 / cg"
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  4170
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  4171
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4172
doOpenWidgetDocumentation
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4173
    "opens documentation for the selected widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4174
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4175
    |spec document|
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4176
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4177
    (spec := self specForSelection) isNil ifTrue:[
1940
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4178
"/        treeView isCanvasSelected ifTrue:[
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4179
"/            spec := nil
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4180
"/        ]
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4181
    ].
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4182
    spec notNil ifTrue:[
1204
faff065c78fd replace userFriendlyName by
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  4183
        document := 'tools/uipainter/', spec documentFileName,'.html'
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4184
    ] ifFalse: [
1204
faff065c78fd replace userFriendlyName by
Claus Gittinger <cg@exept.de>
parents: 1197
diff changeset
  4185
        document := 'tools/uipainter/WindowSpec.html'
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4186
    ].
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4187
    HTMLDocumentView openFullOnDocumentationFile: document 
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4188
!
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4189
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  4190
doPickAView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4191
    "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
  4192
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4193
    |view|
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  4194
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  4195
    self askForModification ifFalse: [^nil].
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  4196
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  4197
    (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
  4198
	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
  4199
	    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
  4200
	]
729
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  4201
    ].
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  4202
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  4203
    self updateInfoLabel
12f157d5e017 askings for modifications completed (?)
tz
parents: 724
diff changeset
  4204
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  4205
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  4206
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4207
doSave
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4208
    "saves the window spec"
1850
410f98d259b7 kludge to raise the ui-painters control window
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  4209
    
2001
b12d9b4dd6f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
  4210
    |code painter specClass|
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4211
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4212
    self askForSectionModification.
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4213
    self hasSpecClassAndSelector ifFalse:[
1850
410f98d259b7 kludge to raise the ui-painters control window
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  4214
        self doDefineClassAndSelector isNil ifTrue:[
410f98d259b7 kludge to raise the ui-painters control window
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  4215
            ^ nil
410f98d259b7 kludge to raise the ui-painters control window
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
  4216
        ]
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4217
    ].
2001
b12d9b4dd6f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
  4218
b12d9b4dd6f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
  4219
    specClass := self resolveName:specClassName.
b12d9b4dd6f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
  4220
    (specClass notNil and:[ specClass isClass ]) ifFalse:[
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  4221
        self warn:('Oops - cannot save - class not found: ' , specClassName).
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4222
        ^ nil
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4223
    ].
2001
b12d9b4dd6f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
  4224
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4225
    painter := self painter.
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  4226
    painter 
2001
b12d9b4dd6f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
  4227
        class:specClass
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4228
        superclassName:specSuperclassName
1341
83fe4fae7c10 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1338
diff changeset
  4229
        selector:specSelector.
1851
d036350188f5 warn if spec is saved too large
Claus Gittinger <cg@exept.de>
parents: 1850
diff changeset
  4230
d036350188f5 warn if spec is saved too large
Claus Gittinger <cg@exept.de>
parents: 1850
diff changeset
  4231
"/    Transcript showCR:'generating windowSpec code...'.
d036350188f5 warn if spec is saved too large
Claus Gittinger <cg@exept.de>
parents: 1850
diff changeset
  4232
d036350188f5 warn if spec is saved too large
Claus Gittinger <cg@exept.de>
parents: 1850
diff changeset
  4233
    (painter topView extent > (800 @ 600)) ifTrue:[
d036350188f5 warn if spec is saved too large
Claus Gittinger <cg@exept.de>
parents: 1850
diff changeset
  4234
        Dialog 
d036350188f5 warn if spec is saved too large
Claus Gittinger <cg@exept.de>
parents: 1850
diff changeset
  4235
            warn:(resources
d036350188f5 warn if spec is saved too large
Claus Gittinger <cg@exept.de>
parents: 1850
diff changeset
  4236
                stringWithCRs:'The application''s default window-size is taken from the current size and will be %1.\\This may be too small on some displays - if required, resize and save again.'
d036350188f5 warn if spec is saved too large
Claus Gittinger <cg@exept.de>
parents: 1850
diff changeset
  4237
                with:painter topView extent printString allBold)
d036350188f5 warn if spec is saved too large
Claus Gittinger <cg@exept.de>
parents: 1850
diff changeset
  4238
    ].
d036350188f5 warn if spec is saved too large
Claus Gittinger <cg@exept.de>
parents: 1850
diff changeset
  4239
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4240
    code := painter generateWindowSpecMethodSource withCRs.
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4241
    (ReadStream on:code) fileIn.
1357
ba372586f899 checkin from browser
ca
parents: 1356
diff changeset
  4242
    self doGenerateAspectSelectorsMethod.
1669
e6ea33c843a0 *** empty log message ***
ca
parents: 1663
diff changeset
  4243
    self helpTool doSave.
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4244
    self updateInfoLabel.
2007
77cf7ecc9ecf embedding as special editors
Claus Gittinger <cg@exept.de>
parents: 2001
diff changeset
  4245
    self clearModified.
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  4246
    painter resetModification.
2001
b12d9b4dd6f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
  4247
    (specClass respondsTo:specSelector) ifTrue:[
b12d9b4dd6f2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1994
diff changeset
  4248
        self addHistoryEntryForClass:specClass selector:specSelector.
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4249
    ].
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4250
!
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4251
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4252
doSaveAs
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4253
    "opens a ResourceSelectionBrowser for saving the window spec on a class"
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4254
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4255
    |classAndSelector|
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4256
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4257
    self askForSectionModification.
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4258
    self askForModification ifFalse:[^ false].
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4259
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4260
    classAndSelector := ResourceSelectionBrowser
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4261
            request: 'Save Window Spec In Class'
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4262
            onSuperclass: #Object
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  4263
            andClass: (specClassName ? #ApplicationModel) asSymbol
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4264
            andSelector: specSelector ? #windowSpec
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4265
            withResourceTypes: #(canvas).
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4266
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4267
    classAndSelector isNil ifTrue:[^ false].
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4268
2007
77cf7ecc9ecf embedding as special editors
Claus Gittinger <cg@exept.de>
parents: 2001
diff changeset
  4269
    self clearModified.
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4270
    self painter resetModification.
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4271
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  4272
    specClassName := classAndSelector methodClass.
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4273
    specSelector := classAndSelector methodSelector.
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  4274
    specSuperclassName := specClassName superclass name.
1976
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4275
    self doSave.
969584dd8beb code cleanup & refactoring
Claus Gittinger <cg@exept.de>
parents: 1968
diff changeset
  4276
    ^ true
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4277
!
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4278
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  4279
doStartApplication
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4280
    "starts the application on the editing window spec"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4281
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  4282
    |cls application|
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4283
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4284
    self hasSpecClassAndSelector ifFalse:[
1442
ed108e53c783 allow opening a dialog for a non-dialog/appmodel class
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  4285
        self doSave isNil ifTrue: [^nil].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4286
    ] ifTrue: [
1442
ed108e53c783 allow opening a dialog for a non-dialog/appmodel class
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  4287
        self askForSectionModification.    
ed108e53c783 allow opening a dialog for a non-dialog/appmodel class
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  4288
        (modified or: [self painter isModified or: [self helpTool modified]])
ed108e53c783 allow opening a dialog for a non-dialog/appmodel class
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  4289
        ifTrue:
ed108e53c783 allow opening a dialog for a non-dialog/appmodel class
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  4290
        [
ed108e53c783 allow opening a dialog for a non-dialog/appmodel class
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  4291
            ((YesNoBox title:'Window Spec was modified!!')        
ed108e53c783 allow opening a dialog for a non-dialog/appmodel class
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  4292
                noText:'Cancel';
ed108e53c783 allow opening a dialog for a non-dialog/appmodel class
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  4293
                yesText:'Save it and start';
ed108e53c783 allow opening a dialog for a non-dialog/appmodel class
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  4294
                showAtPointer;
ed108e53c783 allow opening a dialog for a non-dialog/appmodel class
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  4295
                accepted) ifFalse: [^nil].
ed108e53c783 allow opening a dialog for a non-dialog/appmodel class
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  4296
            self doSave isNil ifTrue: [^nil]
ed108e53c783 allow opening a dialog for a non-dialog/appmodel class
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  4297
        ]
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  4298
    ].
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  4299
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  4300
    cls := self resolveName:specClassName.
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  4301
    cls isNil ifTrue:[
1983
5528c812da8f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1976
diff changeset
  4302
        self warn:'Oops cannot start application - no class:' , specClassName.
1442
ed108e53c783 allow opening a dialog for a non-dialog/appmodel class
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  4303
        ^ nil
1177
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  4304
    ].
57a2a0edeb79 namespace resolving
Claus Gittinger <cg@exept.de>
parents: 1174
diff changeset
  4305
    ((application := cls new) respondsTo:#openInterface:) ifFalse:[
1442
ed108e53c783 allow opening a dialog for a non-dialog/appmodel class
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  4306
        (self confirm:('The application does not respond to the ''openInterface:'' message.\(maybe the spec is supposed to be used as subApplication/subCanvas)\\Shall I try to open this as a standAlone dialog ?') withCRs)
ed108e53c783 allow opening a dialog for a non-dialog/appmodel class
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  4307
        ifTrue:[
ed108e53c783 allow opening a dialog for a non-dialog/appmodel class
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  4308
            SimpleDialog new openSpec:(cls perform:specSelector) withBindings:nil.
ed108e53c783 allow opening a dialog for a non-dialog/appmodel class
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  4309
        ].
ed108e53c783 allow opening a dialog for a non-dialog/appmodel class
Claus Gittinger <cg@exept.de>
parents: 1439
diff changeset
  4310
        ^ self.
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  4311
    ].        
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4312
    application openInterface:specSelector
446
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  4313
!
b513a621a7a4 new toolbar + other features added
tz
parents: 440
diff changeset
  4314
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4315
doStepDown
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4316
    "moves the selected widget one step down in the hierarchy"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4317
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4318
    treeView doStepOver:1
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4319
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4320
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4321
doStepIn
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4322
    "moves the selected widget into the next widget as child"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4323
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4324
    treeView doStepIn
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4325
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4326
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4327
doStepOut
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4328
    "moves the selected widget out of the parent widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4329
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4330
    treeView doStepOut
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4331
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4332
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4333
doStepUp
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4334
    "moves the selected widget one step up in the hierarchy"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4335
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4336
    treeView doStepOver:-1
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  4337
!
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  4338
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  4339
doWindowSpec
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4340
    "opens a code view with the contents of the window spec"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4341
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4342
    self askForSectionModification.
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4343
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4344
    CodeView 
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4345
	openWith: self painter generateWindowSpecMethodSource 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4346
	title: 'Window Spec'
743
d58a3e7e39d5 support user defined font styles
tz
parents: 735
diff changeset
  4347
1940
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4348
!
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4349
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4350
replaceWidgetByClass:aSpecOrWidgetClass
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4351
    |specClass oldSpec newSpec sel painter|
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4352
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4353
    (aSpecOrWidgetClass isSubclassOf:UISpecification) ifTrue:[
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4354
        specClass := aSpecOrWidgetClass.
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4355
    ] ifFalse:[
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4356
        (aSpecOrWidgetClass isSubclassOf:View) ifTrue:[
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4357
            specClass := aSpecOrWidgetClass basicNew specClass.
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4358
        ] ifFalse:[
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4359
        ].
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4360
    ].
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4361
    specClass isNil ifTrue:[
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4362
        Dialog warn:'Invalid Spec- or View-Class: ' , aSpecOrWidgetClass name.
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4363
        ^ self.
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4364
    ].
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4365
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4366
    treeView isCanvasSelected ifTrue:[
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4367
        ^ self
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4368
    ].
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4369
    oldSpec := self selectedSpec.
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4370
    newSpec := specClass cloneFrom:oldSpec.
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4371
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4372
    painter := self painter.
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4373
    painter deleteSelectionBuffered:false.
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4374
    sel := painter pasteSpecifications:(Array with:newSpec) keepLayout:false.
0f9be199d1c5 +replace widget
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  4375
    painter select:sel.
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4376
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4377
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4378
!UIPainter::TreeView class methodsFor:'documentation'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4379
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4380
documentation
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4381
"
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4382
    selection in tree view; only used by the UIPainter
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4383
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4384
    [see also:]
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4385
	SelectionInTreeView
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4386
	SelectionInTree
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4387
	TreeItem
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4388
	UIPainter
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4389
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4390
    [author:]
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4391
	Claus Atzkern
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4392
"
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4393
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4394
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4395
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4396
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4397
!UIPainter::TreeView methodsFor:'accessing'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4398
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4399
canvas
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4400
    "returns the canvas (UIPainterView)"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4401
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4402
    ^ model root contents view
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4403
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4404
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4405
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4406
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4407
canvas:aCanvas
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4408
    "install canvas (UIPainterView)"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4409
1396
58c4d1027a5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
  4410
    self canvas:aCanvas specName:nil
281
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4411
!
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4412
1394
97a7eeabae40 overwriting existing method check (in #defineClass & selector);
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
  4413
canvas:aCanvas specName:nameOfSpec
97a7eeabae40 overwriting existing method check (in #defineClass & selector);
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
  4414
    "install canvas (UIPainterView)"
97a7eeabae40 overwriting existing method check (in #defineClass & selector);
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
  4415
97a7eeabae40 overwriting existing method check (in #defineClass & selector);
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
  4416
    |props|
97a7eeabae40 overwriting existing method check (in #defineClass & selector);
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
  4417
97a7eeabae40 overwriting existing method check (in #defineClass & selector);
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
  4418
    props := UIPainterView::ViewProperty new.
97a7eeabae40 overwriting existing method check (in #defineClass & selector);
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
  4419
    props view:aCanvas.
1396
58c4d1027a5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
  4420
    model root:(TreeItem name:(nameOfSpec ? UIPainter defaultNameOfCanvas) asBoldText contents:props).
1394
97a7eeabae40 overwriting existing method check (in #defineClass & selector);
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
  4421
    model root expand.
97a7eeabae40 overwriting existing method check (in #defineClass & selector);
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
  4422
    self enableChannel:(aCanvas enableChannel).
97a7eeabae40 overwriting existing method check (in #defineClass & selector);
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
  4423
!
97a7eeabae40 overwriting existing method check (in #defineClass & selector);
Claus Gittinger <cg@exept.de>
parents: 1392
diff changeset
  4424
281
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4425
canvasSpec
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4426
    "returns spec assigned to canvas"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4427
1574
e4897b61395c Remove unused method var
Stefan Vogel <sv@exept.de>
parents: 1572
diff changeset
  4428
    |spec list cls canvas|
281
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4429
1466
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
  4430
    spec := self windowSpecClass new.
1356
189c9cec8ce6 exported channels.
ca
parents: 1341
diff changeset
  4431
    canvas := self canvas.
189c9cec8ce6 exported channels.
ca
parents: 1341
diff changeset
  4432
189c9cec8ce6 exported channels.
ca
parents: 1341
diff changeset
  4433
    spec fromView:(canvas topView) callBack:nil.
189c9cec8ce6 exported channels.
ca
parents: 1341
diff changeset
  4434
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4435
    windowSpec notNil ifTrue:[
1356
189c9cec8ce6 exported channels.
ca
parents: 1341
diff changeset
  4436
        spec copyValuesFromSpec:windowSpec.
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4437
    ].
1356
189c9cec8ce6 exported channels.
ca
parents: 1341
diff changeset
  4438
189c9cec8ce6 exported channels.
ca
parents: 1341
diff changeset
  4439
    spec exportedAspects isNil ifTrue:[
189c9cec8ce6 exported channels.
ca
parents: 1341
diff changeset
  4440
        (     (cls  := canvas className) notNil
1357
ba372586f899 checkin from browser
ca
parents: 1356
diff changeset
  4441
         and:[(cls  := canvas resolveName:cls) notNil]
1356
189c9cec8ce6 exported channels.
ca
parents: 1341
diff changeset
  4442
        ) ifTrue:[
1357
ba372586f899 checkin from browser
ca
parents: 1356
diff changeset
  4443
            list := cls perform:#aspectSelectors ifNotUnderstood:nil.
1356
189c9cec8ce6 exported channels.
ca
parents: 1341
diff changeset
  4444
        ].
1357
ba372586f899 checkin from browser
ca
parents: 1356
diff changeset
  4445
        spec setExportedAspectsFrom:list.
1360
555429506474 care for nil window
Claus Gittinger <cg@exept.de>
parents: 1357
diff changeset
  4446
        windowSpec notNil ifTrue:[
555429506474 care for nil window
Claus Gittinger <cg@exept.de>
parents: 1357
diff changeset
  4447
            windowSpec exportedAspects:(spec exportedAspects).
555429506474 care for nil window
Claus Gittinger <cg@exept.de>
parents: 1357
diff changeset
  4448
        ]
1356
189c9cec8ce6 exported channels.
ca
parents: 1341
diff changeset
  4449
    ].
189c9cec8ce6 exported channels.
ca
parents: 1341
diff changeset
  4450
1466
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
  4451
    self propertiesDo:[:aProp| 
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
  4452
        |propsSpec|
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
  4453
1357
ba372586f899 checkin from browser
ca
parents: 1356
diff changeset
  4454
        spec exportedAspectsAddKey:(aProp model) type:nil.
1466
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
  4455
        propsSpec := aProp spec.
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
  4456
        propsSpec aspectSelectors do:[:aKey|spec exportedAspectsAddKey:aKey type:nil].
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
  4457
        propsSpec actionSelectors do:[:aKey|spec exportedAspectsAddKey:aKey type:#action].
1356
189c9cec8ce6 exported channels.
ca
parents: 1341
diff changeset
  4458
    ].
189c9cec8ce6 exported channels.
ca
parents: 1341
diff changeset
  4459
  ^ spec
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4460
!
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4461
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4462
canvasSpec:aSpec
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4463
    "update canvas from spec"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4464
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4465
    |spec|
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4466
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4467
    self setAttributesFromWindowSpec:aSpec.
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4468
    spec := aSpec copy.
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4469
    spec  menu:nil.
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4470
    spec flags:nil.
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4471
394
1933896da0c3 sett UIBuilder isEditing to true
ca
parents: 375
diff changeset
  4472
    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
  4473
!
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4474
1357
ba372586f899 checkin from browser
ca
parents: 1356
diff changeset
  4475
exportedAspects
ba372586f899 checkin from browser
ca
parents: 1356
diff changeset
  4476
    "returns spec assigned to canvas"
ba372586f899 checkin from browser
ca
parents: 1356
diff changeset
  4477
ba372586f899 checkin from browser
ca
parents: 1356
diff changeset
  4478
    windowSpec isNil ifTrue:[^ #()].
ba372586f899 checkin from browser
ca
parents: 1356
diff changeset
  4479
    ^ windowSpec exportedAspects ? #()
ba372586f899 checkin from browser
ca
parents: 1356
diff changeset
  4480
ba372586f899 checkin from browser
ca
parents: 1356
diff changeset
  4481
!
ba372586f899 checkin from browser
ca
parents: 1356
diff changeset
  4482
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4483
itemOfView:aView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4484
    "returns item assigned to view or nil"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4485
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4486
    aView notNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4487
	self allItemsDo:[:anItem|
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4488
	    (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
  4489
	]
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4490
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4491
    ^ nil
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4492
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4493
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  4494
!
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  4495
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  4496
lastDrawnMaster
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4497
    "returns the lastDrawnMaster"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4498
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4499
    ^ lastDrawnMaster
755
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  4500
cfbbec0a33c6 some cleans for grid, etc.
tz
parents: 743
diff changeset
  4501
1466
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
  4502
!
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
  4503
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
  4504
windowSpecClass
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
  4505
    "returns the default  windowSpecClass (WindowSpec)"
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
  4506
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
  4507
    ^ windowSpecClass ? WindowSpec
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
  4508
!
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
  4509
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
  4510
windowSpecClass:aClass
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
  4511
    "set the default windowSpecClass"
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
  4512
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
  4513
    ^ windowSpecClass := aClass
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4514
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4515
1661
5c0f73b1bd07 category change
Claus Gittinger <cg@exept.de>
parents: 1626
diff changeset
  4516
!UIPainter::TreeView methodsFor:'accessing-property'!
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4517
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4518
propertiesDo:aOneArgBlock
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4519
    "evaluates the argument a block on each property"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4520
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4521
    self allItemsDo:[:anItem| aOneArgBlock value:(anItem contents)]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4522
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4523
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4524
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4525
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4526
propertyDetect:aOneArgBlock
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4527
    "evaluates the block on each property"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4528
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4529
    self allItemsDo:[:anItem|
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4530
	(aOneArgBlock value:(anItem contents)) ifTrue:[^ anItem contents]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4531
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4532
    ^ nil
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4533
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4534
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4535
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4536
propertySelected
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4537
    "returns current selected property or nil in case of multi selection
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4538
     or empty selection "
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4539
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4540
    |idx|
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4541
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4542
    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
  4543
	(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
  4544
	    ^ (listOfNodes at:idx) contents
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4545
	]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4546
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4547
    ^ nil
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4548
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4549
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4550
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4551
!UIPainter::TreeView methodsFor:'adding & removing'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4552
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4553
addProperty:aProperty
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4554
    "adds a new item"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4555
533
dde823aeca4c supports loading of subspecs
tz
parents: 527
diff changeset
  4556
    |parent| 
295
114befd1c369 add some help text
ca
parents: 287
diff changeset
  4557
1870
771fcc38ecb8 set selection interface changed
ca
parents: 1868
diff changeset
  4558
    parent := self detectItemCorespondingToView:(aProperty view superView).
295
114befd1c369 add some help text
ca
parents: 287
diff changeset
  4559
114befd1c369 add some help text
ca
parents: 287
diff changeset
  4560
    parent notNil ifTrue:[
1870
771fcc38ecb8 set selection interface changed
ca
parents: 1868
diff changeset
  4561
        model add:(TreeItem new contents:aProperty) below:parent
295
114befd1c369 add some help text
ca
parents: 287
diff changeset
  4562
    ]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4563
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4564
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4565
removeAll
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4566
    "removes all items other than canvas"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4567
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4568
    lastDrawnMaster := nil.
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4569
    windowSpec := nil.
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4570
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4571
    self canvas subViews copy do:[:aView|
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  4572
	"/ care to not destroy the transparent input view
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  4573
	(aView isInputOnly) ifFalse:[aView destroy]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4574
    ].
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4575
    model root name: UIPainter defaultNameOfCanvas asBoldText.
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4576
    model removeAllOtherThanRoot.
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4577
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4578
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4579
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4580
removeView:aView
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4581
    "removes a view"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4582
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4583
    |item prnt|
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4584
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4585
    ((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
  4586
	aView destroy.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4587
	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
  4588
	model remove:item
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4589
    ]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4590
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4591
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4592
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4593
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4594
!UIPainter::TreeView methodsFor:'building'!
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4595
1058
243d945b1daf name the (full-)spec
tm
parents: 1046
diff changeset
  4596
generateFullSpecForComponents:aSpecArray named:specNameSymbol
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4597
    "generates a full spec from aSpecArray"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4598
351
7cb9f9c9a872 more checks
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
  4599
    |fullSpec winSpec|
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4600
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4601
    fullSpec := FullSpec new.
1058
243d945b1daf name the (full-)spec
tm
parents: 1046
diff changeset
  4602
    fullSpec name:specNameSymbol.
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4603
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4604
    fullSpec fromBuilder:(self canvas topView)
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  4605
	      components:(SpecCollection new collection:aSpecArray).
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4606
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4607
    windowSpec notNil ifTrue:[
1186
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  4608
	winSpec := fullSpec window.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  4609
	winSpec copyValuesFromSpec:windowSpec.
4cea2d4e9dbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
  4610
	winSpec name: winSpec label.
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4611
    ].    
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4612
    ^ fullSpec literalArrayEncoding.
351
7cb9f9c9a872 more checks
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
  4613
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4614
!
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4615
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4616
setAttributesFromWindowSpec:aWindowSpec
1172
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  4617
    "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
  4618
     to the canvas."
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  4619
1391
be99f3e9260e set changed label in tree-view for canvas
ca
parents: 1360
diff changeset
  4620
    |name canvasView builder|
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4621
1466
6fecdd5341dc allow for windowSpecClass to be customized
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
  4622
    windowSpec := (self windowSpecClass) new copyValuesFromSpec:aWindowSpec.
1172
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  4623
    canvasView := self canvas.
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  4624
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  4625
    builder := UIBuilder new isEditing:true.
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  4626
    aWindowSpec setAttributesIn:canvasView with:builder.
e22253cb348f set the top attributes (especially: viewbackground)
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  4627
1391
be99f3e9260e set changed label in tree-view for canvas
ca
parents: 1360
diff changeset
  4628
    name := aWindowSpec label.
be99f3e9260e set changed label in tree-view for canvas
ca
parents: 1360
diff changeset
  4629
    canvasView topView name:name.
be99f3e9260e set changed label in tree-view for canvas
ca
parents: 1360
diff changeset
  4630
    self canvasNameChanged:name.
1710
4d81ff7b3412 autoAccept on selectionChange; ok -> apply;
Claus Gittinger <cg@exept.de>
parents: 1698
diff changeset
  4631
    self application treeSelectionChanged.
311
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4632
! !
52f954630dca support of menu and srollers for the canvas
ca
parents: 305
diff changeset
  4633
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4634
!UIPainter::TreeView methodsFor:'canvas selection'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4635
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4636
cvsSelection:aSelection
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4637
    "canvas changed its selection
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4638
    "
805
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  4639
    |sel list size|
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  4640
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  4641
    ((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
  4642
	sel := Array with:sel
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4643
    ].
805
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  4644
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  4645
    (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
  4646
	list := OrderedCollection new:size.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4647
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4648
	sel do:[:aView||item|
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4649
	    (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
  4650
		list add:item.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4651
		model doMakeVisible:item.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4652
	    ]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4653
	].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4654
	sel := list collect:[:anItem| self indexOfNode:anItem ].
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4655
    ].
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4656
    self cvsEventsDisabledDo:[ self selection:sel ].            
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4657
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4658
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4659
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4660
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4661
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4662
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4663
cvsSelectionAdd:aView
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4664
    "canvas adds a view to current selection
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4665
    "
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4666
    |item index oldSel|
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4667
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4668
    item := self itemOfView:aView.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4669
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4670
    item notNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4671
	model doMakeVisible:item.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4672
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4673
	(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
  4674
	    oldSel := selection copy.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4675
	    self addToSelection:index.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4676
	    self selectionChangedFrom:oldSel
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4677
	]        
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4678
    ]            
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4679
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4680
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4681
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4682
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4683
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4684
cvsSelectionRemove:aView
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4685
    "canvas removes a view from current selection
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4686
    "
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4687
    |item index oldSel|
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4688
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4689
    (     (item := self itemOfView:aView) notNil
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4690
     and:[(index := self indexOfNode:item) ~~ 0
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4691
     and:[self isInSelection:index]]
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4692
    ) ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4693
	oldSel := selection copy.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4694
	self removeFromSelection:index.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4695
	self selectionChangedFrom:oldSel.
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  4696
    ].
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4697
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4698
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4699
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4700
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4701
!UIPainter::TreeView methodsFor:'change & update'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4702
281
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4703
canvasNameChanged:aName
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4704
    "called if identification name assigned to window (canvas) changed
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4705
    "
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4706
    |name node|
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4707
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4708
    node := listOfNodes at:1.
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4709
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4710
    (    aName size ~~ 0
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4711
     and:[(name := aName string withoutSeparators) size ~~ 0
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4712
     and:[(self propertyDetect:[:p| p name = name]) isNil
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4713
     and:[node name ~= name]]]
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4714
    ) ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4715
	node name: name asBoldText.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4716
	node changed.   
281
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4717
    ].
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4718
!
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  4719
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4720
layoutChanged
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4721
    "layout of any component changed; in case of single selection, the
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4722
     application will be informed to update its layout
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4723
    "
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4724
    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
  4725
	self application layoutChanged
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4726
    ]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4727
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4728
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4729
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4730
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4731
propertyChanged:aProperty
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4732
    "property of view derived from argument a property changed
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4733
    "
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4734
    |item idx end|
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4735
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4736
    item := self itemOfView:(aProperty view).
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4737
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4738
    item notNil ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4739
	item contents:aProperty.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4740
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4741
	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
  4742
	    idx := self firstLineShown.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4743
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4744
	    (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
  4745
		end := listOfNodes size
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4746
	    ].                          
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4747
	    item changed.   
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4748
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4749
	    [idx <= end] whileTrue:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4750
		(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
  4751
		    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
  4752
		    end := 0
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4753
		] ifFalse:[
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4754
		    idx := idx + 1
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4755
		]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4756
	    ]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4757
	].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4758
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4759
	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
  4760
	    self application propertyChanged
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4761
	]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4762
    ].
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4763
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4764
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4765
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4766
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4767
!UIPainter::TreeView methodsFor:'drag & drop'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4768
2117
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4769
canDrop:aDropContext
1953
3b5022bccca4 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 1950
diff changeset
  4770
    "can drop ? -> delegate to canvas"
3b5022bccca4 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 1950
diff changeset
  4771
2117
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4772
    ^ self canvas canDrop:aDropContext
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4773
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4774
    "Modified: / 13-10-2006 / 16:08:43 / cg"
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4775
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4776
2117
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4777
canDrop:aDropContext at:aPoint
2114
eca72652fa9e drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2077
diff changeset
  4778
    "can drop ? -> delegate to canvas"
eca72652fa9e drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2077
diff changeset
  4779
2117
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4780
    ^ self canvas canDrop:aDropContext at:aPoint
2114
eca72652fa9e drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2077
diff changeset
  4781
eca72652fa9e drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2077
diff changeset
  4782
    "Created: / 13-10-2006 / 12:35:53 / cg"
2117
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4783
    "Modified: / 13-10-2006 / 16:08:46 / cg"
2114
eca72652fa9e drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2077
diff changeset
  4784
!
eca72652fa9e drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2077
diff changeset
  4785
2117
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4786
canDropObjects:aCollectionOfDropObjects
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4787
    "can drop ? -> delegate to canvas"
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4788
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4789
    ^ self canvas canDropObjects:aCollectionOfDropObjects
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4790
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4791
    "Created: / 13-10-2006 / 16:08:31 / cg"
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4792
!
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4793
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4794
canDropObjects:aCollectionOfDropObjects at:aPoint
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4795
    "can drop ? -> delegate to canvas"
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4796
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4797
    ^ self canvas canDropObjects:aCollectionOfDropObjects at:aPoint
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4798
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4799
    "Created: / 13-10-2006 / 16:08:35 / cg"
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4800
!
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4801
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4802
drop:aDropContext
2114
eca72652fa9e drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2077
diff changeset
  4803
    "drop objects -> delegate to canvas"
eca72652fa9e drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2077
diff changeset
  4804
2117
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4805
    self canvas drop:aDropContext
2114
eca72652fa9e drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2077
diff changeset
  4806
eca72652fa9e drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2077
diff changeset
  4807
    "Created: / 13-10-2006 / 12:35:59 / cg"
2117
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4808
    "Modified: / 13-10-2006 / 16:09:04 / cg"
2114
eca72652fa9e drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2077
diff changeset
  4809
!
eca72652fa9e drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2077
diff changeset
  4810
2117
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4811
drop:aDropContext at:aPoint
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4812
    "drop objects -> delegate to canvas"
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4813
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4814
    self canvas drop:aDropContext at:aPoint
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4815
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4816
    "Modified: / 13-10-2006 / 16:09:07 / cg"
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4817
!
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4818
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4819
dropObjects:aCollectionOfDropObjects
1953
3b5022bccca4 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 1950
diff changeset
  4820
    "drop objects -> delegate to canvas"
3b5022bccca4 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 1950
diff changeset
  4821
2117
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4822
    self canvas dropObjects:aCollectionOfDropObjects
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4823
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4824
    "Created: / 13-10-2006 / 16:08:51 / cg"
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4825
!
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4826
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4827
dropObjects:aCollectionOfDropObjects at:aPoint
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4828
    "drop objects -> delegate to canvas"
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4829
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4830
    self canvas dropObjects:aCollectionOfDropObjects at:aPoint
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4831
3d456b890124 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 2114
diff changeset
  4832
    "Created: / 13-10-2006 / 16:08:56 / cg"
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4833
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4834
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4835
!UIPainter::TreeView methodsFor:'enumerating'!
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4836
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4837
allItemsDo:aOneArgBlock
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4838
    "evaluates the argument a block on each item other than the canvas"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4839
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4840
    model root allChildrenDo:aOneArgBlock
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4841
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4842
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4843
! !
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4844
1719
735984d47d9b method category rename
Claus Gittinger <cg@exept.de>
parents: 1718
diff changeset
  4845
!UIPainter::TreeView methodsFor:'event handling'!
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4846
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4847
cvsEventsDisabledDo:aBlock
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4848
    "evaluates the block without raising selection changed notifications
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4849
     to canvas"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4850
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4851
    |restoreCvsEvents|
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4852
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4853
    restoreCvsEvents  := cvsEventsDisabled.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4854
    cvsEventsDisabled := true.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4855
    aBlock value.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4856
    cvsEventsDisabled := restoreCvsEvents.
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4857
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4858
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4859
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4860
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4861
doubleClicked
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4862
    "disables collapsing of the root item"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4863
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4864
    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
  4865
	super doubleClicked
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4866
    ]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4867
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4868
805
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  4869
!
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  4870
852
c24c7584abe4 replace reimplememented method:
ca
parents: 851
diff changeset
  4871
redrawLabelAt:x y:yTop index:anIndex
805
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  4872
    "draws a tiny rectangle for indicating the master node (first selected node)"
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  4873
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  4874
    |dX|
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  4875
852
c24c7584abe4 replace reimplememented method:
ca
parents: 851
diff changeset
  4876
    super redrawLabelAt:x y:yTop index:anIndex.
805
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  4877
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  4878
    ((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
  4879
	dX := textInset - 1.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4880
	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
  4881
	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
  4882
			  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
  4883
		      width:dX
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4884
		     height:dX
805
99e70b6c02e5 new indication of the master widget
tz
parents: 798
diff changeset
  4885
    ]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4886
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4887
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4888
!UIPainter::TreeView methodsFor:'initialization'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4889
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4890
initialize
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4891
    "initialize the tree view; multiple select and tree item actions"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4892
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4893
    super initialize.
564
df1f1e84d94a add menu added
tz
parents: 547
diff changeset
  4894
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4895
    self multipleSelectOk:true.
368
9e588f397bc9 support of lineFeed character \ in the help text
ca
parents: 366
diff changeset
  4896
    cvsEventsDisabled := false.
440
1198f19712ff spec items have got individual icons
tz
parents: 437
diff changeset
  4897
    self showDirectoryIndicator: true.
656
21fe350cfa06 tree item labels changed to a more convenient style
tz
parents: 630
diff changeset
  4898
    self showDirectoryIndicatorForRoot: false.
21fe350cfa06 tree item labels changed to a more convenient style
tz
parents: 630
diff changeset
  4899
21fe350cfa06 tree item labels changed to a more convenient style
tz
parents: 630
diff changeset
  4900
    self model iconAction: 
21fe350cfa06 tree item labels changed to a more convenient style
tz
parents: 630
diff changeset
  4901
    [:aNode|
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4902
	|specClass|       
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4903
	(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
  4904
	    ifTrue: [WindowSpec icon]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4905
	    ifFalse:[specClass class icon]
656
21fe350cfa06 tree item labels changed to a more convenient style
tz
parents: 630
diff changeset
  4906
    ].
21fe350cfa06 tree item labels changed to a more convenient style
tz
parents: 630
diff changeset
  4907
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4908
    self model labelAction: 
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4909
    [:aNode|
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4910
	|spec|
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4911
	(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
  4912
	    ifTrue: [self nameForSpecInList:spec] 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4913
	    ifFalse:[aNode name]
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4914
    ]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4915
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4916
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4917
!UIPainter::TreeView methodsFor:'private'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4918
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4919
nameForSpecInList:aSpec
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4920
    "returns the tree item label for aSpec"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4921
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4922
     ^ aSpec name asBoldText, ': [', aSpec viewClass name , ']' 
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4923
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4924
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4925
selectionChangedFrom:oldSelection
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4926
    "selection has changed. update master selection and raise notification
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4927
     to canvas in case of enabled cvs events
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4928
    "
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4929
    |sel size|
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4930
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4931
    super selectionChangedFrom:oldSelection.
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4932
    size := selection size.
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4933
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4934
    cvsEventsDisabled ifFalse:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4935
	(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
  4936
	    sel := OrderedCollection new.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4937
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4938
	    selection do:[:i|
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4939
		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
  4940
	    ]
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4941
	].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4942
	self canvas updateSelectionFromModel:sel
778
a4b931b2aff6 master widget highlighting changed in the tree list
tz
parents: 774
diff changeset
  4943
    ].             
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4944
    size = 1 ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4945
	oldSelection size > 1 ifTrue: [
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4946
	    (listOfNodes at:lastDrawnMaster) retrieveLabel.
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4947
	    self redrawLine: lastDrawnMaster. 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4948
	    lastDrawnMaster := selection first
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4949
	]
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4950
    ].
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4951
    size > 1 ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4952
	selection first ~~ lastDrawnMaster ifTrue: [
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4953
	    (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
  4954
	    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
  4955
	    self redrawLine: lastDrawnMaster. 
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4956
	    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
  4957
	]
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  4958
    ]         
713
f94e58bb44ac some changes for the docu
tz
parents: 697
diff changeset
  4959
    ifFalse: [
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4960
	lastDrawnMaster := nil
785
35ad7901368c avoid selection problems
tz
parents: 778
diff changeset
  4961
    ] 
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4962
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4963
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4964
!UIPainter::TreeView methodsFor:'queries'!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  4965
565
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  4966
canChangeOrderInContainer
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  4967
    "returns true if any selection exists and all widgets in the selection
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4968
     can change their layout through to a move or align operation"
565
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  4969
889
39d326722589 up/down channel updating
tz
parents: 884
diff changeset
  4970
    ^(selection size == 1)  and: 
39d326722589 up/down channel updating
tz
parents: 884
diff changeset
  4971
    [(selection at: 1) ~~ 1 and:   
39d326722589 up/down channel updating
tz
parents: 884
diff changeset
  4972
    [self selectedNode parent children size > 1]] 
39d326722589 up/down channel updating
tz
parents: 884
diff changeset
  4973
39d326722589 up/down channel updating
tz
parents: 884
diff changeset
  4974
565
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  4975
!
8fdeb11c72fd items move enabling
tz
parents: 564
diff changeset
  4976
1230
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  4977
canExchangeSelectionLayouts 
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  4978
    "returns true if the selections size is exactly 2
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  4979
     and all widgets in the selection
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  4980
     can change their layout through to a move or align operation"
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  4981
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  4982
    selection size == 2 ifFalse:[
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  4983
        ^ false
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  4984
    ].
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  4985
    ^ self canMoveOrAlignSelection
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  4986
!
23e5d0c133e8 added exchangeLayouts function
Claus Gittinger <cg@exept.de>
parents: 1211
diff changeset
  4987
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4988
canMoveOrAlignSelection
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4989
    "returns true if any selection exists and all widgets in the selection
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  4990
     can change their layout through to a move or align operation"
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4991
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4992
    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
  4993
	^ false
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4994
    ].
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4995
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  4996
    selection do:[:i|
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4997
	i == 1 ifTrue:[^ false].
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4998
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  4999
	(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
  5000
	    ^ false
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  5001
	]
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5002
    ].
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5003
    ^ true
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5004
!
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5005
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5006
canMoveSelectionIntoContainer
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  5007
    "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
  5008
     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
  5009
1621
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  5010
    |item prnt container|
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5011
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5012
    (     (item := self selectedNode) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5013
      or:[(prnt := item parent) isNil
1621
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  5014
      or:[(container := prnt childAt:((prnt indexOfChild:item) + 1)) isNil
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  5015
      or:[container contents spec class supportsSubComponents not]]]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5016
    ) ifTrue:[
1621
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  5017
        ^ false
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5018
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  5019
    ^ true
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5020
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5021
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5022
canMoveSelectionOutOfContainer
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  5023
    "returns true in case that one widget is selected which is contained within
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  5024
     another widget"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  5025
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5026
    |item prnt|
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5027
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5028
    (     (item := self selectedNode) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5029
      or:[(prnt := item parent) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5030
      or:[prnt parent isNil]]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5031
    ) ifTrue:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  5032
	^ false
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5033
    ].
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  5034
    ^ true
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5035
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5036
301
131f874fc2a2 support of hierarchical list editor
ca
parents: 297
diff changeset
  5037
canResizeSelectedWidget
131f874fc2a2 support of hierarchical list editor
ca
parents: 297
diff changeset
  5038
    "returns true in case of one widget selected and is contained
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  5039
     within a widget which allows to resize sub components"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  5040
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  5041
    |selectedNode|
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  5042
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  5043
    (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
  5044
	(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
  5045
	    ^ (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
  5046
	]
301
131f874fc2a2 support of hierarchical list editor
ca
parents: 297
diff changeset
  5047
    ].
131f874fc2a2 support of hierarchical list editor
ca
parents: 297
diff changeset
  5048
    ^ false
131f874fc2a2 support of hierarchical list editor
ca
parents: 297
diff changeset
  5049
!
131f874fc2a2 support of hierarchical list editor
ca
parents: 297
diff changeset
  5050
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5051
hasOneSelectionOtherThanCanvas
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  5052
    "returns true in case that one selection exists other than the canvas"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  5053
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  5054
    ^ selection size == 1 and:[selection first ~~ 1]
281
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  5055
!
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  5056
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  5057
isCanvasSelected
aabb4037f6a3 window spec
ca
parents: 280
diff changeset
  5058
    "returns true in case of a single selection and the
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  5059
     selection is the canvas (index 1)"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  5060
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  5061
    ^ selection size == 1 and:[self isInSelection:1]
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5062
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5063
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  5064
!UIPainter::TreeView methodsFor:'searching'!
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5065
1870
771fcc38ecb8 set selection interface changed
ca
parents: 1868
diff changeset
  5066
detectItemCorespondingToView:aView
771fcc38ecb8 set selection interface changed
ca
parents: 1868
diff changeset
  5067
    "detects the item coresponding to the view. The item of the view or the first
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5068
     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
  5069
     returned"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  5070
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5071
    |view item|
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5072
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5073
    (view := aView) notNil ifTrue:[
1870
771fcc38ecb8 set selection interface changed
ca
parents: 1868
diff changeset
  5074
        [(item := self itemOfView:view) isNil] whileTrue:[
771fcc38ecb8 set selection interface changed
ca
parents: 1868
diff changeset
  5075
            (view := view superView) isNil ifTrue:[^ listOfNodes at:1]
771fcc38ecb8 set selection interface changed
ca
parents: 1868
diff changeset
  5076
        ].
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5077
    ].
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5078
    ^ item
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5079
! !
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5080
1439
540781421bbf category change
Claus Gittinger <cg@exept.de>
parents: 1432
diff changeset
  5081
!UIPainter::TreeView methodsFor:'user interaction'!
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5082
1621
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  5083
askForSelectionChangeAllowed 
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  5084
    selectConditionBlock notNil ifTrue:[
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  5085
        ^ selectConditionBlock value:nil 
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  5086
    ].
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  5087
    ^ true
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  5088
!
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  5089
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  5090
doChangeHierarchyOf:anItem
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  5091
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  5092
    |canvas|
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  5093
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  5094
    anItem isNil ifTrue:[
1621
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  5095
        ^ self
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  5096
    ].
1621
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  5097
    self askForSelectionChangeAllowed ifFalse:[^ self].    
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  5098
    self setSelection:nil.
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  5099
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  5100
    canvas := self canvas.
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  5101
    canvas deleteSelection.
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  5102
    canvas setSelection:(anItem contents view) withRedraw:false.
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  5103
    canvas pasteWithLayout.
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  5104
!
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  5105
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5106
doStepIn
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  5107
    |item prnt|
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5108
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5109
    (     (item := self selectedNode) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5110
      or:[(prnt := item parent) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5111
      or:[(prnt := prnt childAt:((prnt indexOfChild:item) + 1)) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5112
      or:[prnt contents spec class supportsSubComponents not]]]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5113
    ) ifFalse:[
984
f1b6d6b68510 dont specify the tabViews font (instead, use defaults from styleSheet)
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  5114
	self doChangeHierarchyOf:prnt
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5115
    ]
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5116
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5117
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5118
doStepOut
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  5119
    |item|
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  5120
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  5121
    ((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
  5122
	self doChangeHierarchyOf:(item parent)
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5123
    ].
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5124
!
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5125
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5126
doStepOver:anIndex
765
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  5127
    "moves child 'anOffset' forward or backward in list of children"
27936ff059d3 obselete methods removed + comments revised
tz
parents: 755
diff changeset
  5128
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5129
    |item idx size prnt spVw view canvas|
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5130
1621
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  5131
    self askForSelectionChangeAllowed ifFalse:[^ self].
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  5132
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5133
    (    (item := self selectedNode) isNil
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5134
     or:[(prnt := item parent) isNil
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5135
     or:[(size := prnt children size) < 2
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5136
     or:[(idx  := prnt indexOfChild:item) == 0]]]
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5137
    ) ifTrue:[
1621
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  5138
        ^ self
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5139
    ].
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5140
    idx := idx + anIndex.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5141
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5142
    idx < 1 ifTrue:[idx := size]
1621
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  5143
           ifFalse:[idx > size ifTrue:[idx := 1]].
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5144
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  5145
    self setSelection:nil.
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  5146
    model remove:item.
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5147
    model add:item beforeIndex:idx below:prnt.
774
5ca0853de0bc reuse methods provided by the model
ca
parents: 765
diff changeset
  5148
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5149
    idx    := prnt indexOfChild:item.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5150
    view   := item contents view.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5151
    spVw   := prnt contents view.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5152
    canvas := self canvas.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5153
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5154
    canvas hideSelection.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5155
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5156
    spVw changeSequenceOrderFor:view to:idx.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5157
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5158
    spVw specClass isLayoutContainer ifFalse:[
1621
112670159075 cg: check if selection change is allowed BEFORE changing the
tm
parents: 1608
diff changeset
  5159
        spVw subViews do:[:v| v raise ].
282
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5160
    ].
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5161
    canvas showSelection.
bb88d92ae887 checkin from browser
ca
parents: 281
diff changeset
  5162
    self selectNode:item.
222
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5163
! !
dd2688307d90 added treeView; change specs
ca
parents: 217
diff changeset
  5164
60
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  5165
!UIPainter class methodsFor:'documentation'!
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  5166
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  5167
version
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  5168
    ^ '$Header$'
7542ab7fbbfe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 59
diff changeset
  5169
! !