DataSetBuilder.st
author tz
Mon, 13 Jul 1998 18:15:53 +0200
changeset 889 39d326722589
parent 881 9054767c0080
child 894 dc16c3472d99
permissions -rw-r--r--
up/down channel updating
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
     1
"
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
     2
 COPYRIGHT (c) 1997 by eXept Software AG
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
     3
              All Rights Reserved
b895330fc7aa intitial checkin
ca
parents:
diff changeset
     4
b895330fc7aa intitial checkin
ca
parents:
diff changeset
     5
 This software is furnished under a license and may be used
b895330fc7aa intitial checkin
ca
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
b895330fc7aa intitial checkin
ca
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
b895330fc7aa intitial checkin
ca
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
b895330fc7aa intitial checkin
ca
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    10
 hereby transferred.
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    11
"
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    12
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    13
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    14
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    15
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    16
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
    17
ResourceSpecEditor subclass:#DataSetBuilder
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    18
	instanceVariableNames:'rowClass rowSuperClass columnView columns selectedColumnIndex
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    19
		modalOpened'
816
b3d2c7c1c5db *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    20
	classVariableNames:''
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    21
	poolDictionaries:''
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    22
	category:'Interface-UIPainter'
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    23
!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    24
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    25
!DataSetBuilder class methodsFor:'documentation'!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    26
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    27
copyright
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    28
"
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    29
 COPYRIGHT (c) 1997 by eXept Software AG
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    30
              All Rights Reserved
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    31
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    32
 This software is furnished under a license and may be used
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    33
 only in accordance with the terms of that license and with the
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    34
 inclusion of the above copyright notice.   This software may not
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    35
 be provided or otherwise made available to, or used by, any
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    36
 other person.  No title to or ownership of the software is
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    37
 hereby transferred.
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    38
"
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    39
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    40
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    41
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    42
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    43
!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    44
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    45
documentation
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    46
"
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    47
    create and modify or inspect dataset columns; used by UIPainter (DataSetColumnSpec)
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    48
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    49
    [see also:]
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    50
        DataSetColumnSpec
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    51
        DataSetSpec
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    52
        DataSetView
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    53
        DataSetColumn
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    54
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    55
    [author:]
545
25a3072fd268 help menu item aligned to the right
tz
parents: 528
diff changeset
    56
        Claus Atzkern, eXept Software AG
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    57
"
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    58
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    59
! !
b895330fc7aa intitial checkin
ca
parents:
diff changeset
    60
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    61
!DataSetBuilder class methodsFor:'accessing'!
799
22734b99f830 added dummy openOnClass:andSelector: (invoked by Browser)
Claus Gittinger <cg@exept.de>
parents: 687
diff changeset
    62
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
    63
resourceType
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
    64
    "get the type of resource of the method generated by the MenuEditor"
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
    65
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    66
    ^#tableColumns
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    67
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    68
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    69
! !
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    70
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    71
!DataSetBuilder class methodsFor:'aspects'!
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    72
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    73
aspects
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    74
    "get the aspects for the attributes of the table columns"
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    75
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    76
    ^#(
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
    77
        id
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    78
        label
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    79
        canSelect
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    80
        choices
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    81
        editorType
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    82
        formatString
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    83
        labelIsImage
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
    84
        translateLabel
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    85
        size
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    86
        type
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    87
        width
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    88
        minWidth
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    89
        height
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    90
        menu
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    91
        foregroundSelector
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    92
        backgroundSelector
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    93
        doubleClickedSelector
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    94
        selectSelector
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    95
        printSelector
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    96
        readSelector
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    97
        writeSelector
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    98
        rendererType
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
    99
        showColSeparator
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   100
        showRowSeparator
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   101
        backgroundColor
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   102
        foregroundColor
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   103
        labelForegroundColor
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   104
        labelBackgroundColor
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   105
        labelFont
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   106
        labelActionSelector
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   107
        labelActionArgument
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   108
        labelAlignment
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   109
        columnAlignment
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   110
     )
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   111
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   112
    "Modified: / 19.5.1998 / 21:27:06 / cg"
799
22734b99f830 added dummy openOnClass:andSelector: (invoked by Browser)
Claus Gittinger <cg@exept.de>
parents: 687
diff changeset
   113
! !
22734b99f830 added dummy openOnClass:andSelector: (invoked by Browser)
Claus Gittinger <cg@exept.de>
parents: 687
diff changeset
   114
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   115
!DataSetBuilder class methodsFor:'help specs'!
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   116
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   117
helpSpec
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
   118
    "This resource specification was automatically generated
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
   119
     by the UIHelpTool of ST/X."
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
   120
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
   121
    "Do not manually edit this!! If it is corrupted,
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
   122
     the UIHelpTool may not be able to read the specification."
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   123
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   124
    "
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
   125
     UIHelpTool openOnClass:DataSetBuilder    
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   126
    "
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   127
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
   128
    <resource: #help>
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
   129
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
   130
    ^super helpSpec addPairsFrom:#(
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   131
550
35cffcc6036e help texts added
tz
parents: 545
diff changeset
   132
#addColumn
35cffcc6036e help texts added
tz
parents: 545
diff changeset
   133
'Adds a new column.'
35cffcc6036e help texts added
tz
parents: 545
diff changeset
   134
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   135
#basicsEditor
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   136
'Default widget type or a selector returning an instance of a user defined widget opened in the cell.'
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   137
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   138
#basicsFont
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   139
'Sets the font of the label text.'
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   140
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   141
#basicsJustification
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   142
'Aligns the label text to the left, right, or centered in the cell.'
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   143
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   144
#basicsLabel
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   145
'The label of the column or a selector returning a string or an image.'
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   146
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   147
#basicsLabelIsImage
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   148
'Turns on/off image behavior of the label string; i.e. it is used as selector returning an image.'
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   149
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   150
#basicsRenderer
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   151
'Specifies displaying cell as Text, CheckToggle, ComboBox, ComboList or as a RowSelector.'
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   152
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   153
#browseRowClass
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   154
'Open a browser on the row class'
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   155
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   156
#colorsBackgroundCellColor
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   157
'Sets the background color of the column.'
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   158
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   159
#colorsBackgroundLabelColor
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   160
'Sets the background color of the label.'
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   161
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   162
#colorsBackgroundSelector
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   163
'Selector returning the background color for a cell (optional).'
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   164
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   165
#colorsForegroundCellColor
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   166
'Sets the foreground color of the column.'
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   167
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   168
#colorsForegroundLabelColor
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   169
'Sets the foreground color of the label.'
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   170
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   171
#colorsForegroundSelector
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   172
'Selector returning the foreground color for a cell (optional).'
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   173
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   174
#fileNew
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   175
'Discard changes and continue with a new, empty column description'
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   176
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   177
#fileLoad
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   178
'Specify class/selector and edit that column description'
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   179
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   180
#fileSave
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   181
'Install the column description'
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   182
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   183
#fileSaveAs
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   184
'Specify class/selector and install the column description'
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   185
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   186
#formatInputType
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   187
'A type converter symbol used by the input field.'
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   188
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   189
#formatMaxSize
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   190
'Maximum size of the string which can be typed in. 0 or nil means unlimited.'
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   191
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   192
#formatTextFormat
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   193
'Format string specifying the output format of the cell text. In this release, only numbers are supported (for example: 0.0000).'
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   194
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   195
#frameColumnWidth
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   196
'Width (fixed) of a column (optional).'
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   197
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   198
#frameMinWidth
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   199
'Minimum width of the column (optional).'
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   200
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   201
#frameRowHeight
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   202
'Height of the row (optional).'
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   203
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   204
#frameShowColumnSeparator
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   205
'Turns on/off displaying column separators.'
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   206
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   207
#frameShowRowSeparator
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   208
'Turns on/off displaying row separators.'
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   209
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   210
#generate
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   211
'Code generation.'
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   212
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   213
#generateCode
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   214
'Generate code and install in the selected class/selector.'
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   215
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   216
#pickColumns
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   217
'Select an open view and readOut the column specification from it.'
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   218
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   219
#selectionCellClickSelector
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
   220
'A selector called if cell was selected.'
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   221
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   222
#selectionCellDoubleClickSelector
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   223
'A selector called if cell was double clicked.'
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   224
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   225
#selectionCellSelector
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   226
'An optional selector, which is used to test whether the cell in the column is selectable; the ''Is Selectable'' flag must be enabled.'
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   227
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   228
#selectionIsSelectable
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   229
'Turns on/off selection behavior of a column.'
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   230
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   231
#selectionLabelClickSelector
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   232
'A selector called if label cell was clicked.'
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   233
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   234
#selectionLabelSelectorArgument
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
   235
'An argument passed to label selection selector.'
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   236
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   237
#valuesChoiceSelector
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   238
'A selector returning a collection of choices for a cell having a ComboBox or a ComboList widget.'
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   239
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   240
#valuesMenuSelector
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   241
'A selector returning a middle button menu.'
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   242
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   243
#valuesPrintSelector
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   244
'A key selector used to register images on a DSVColumnView (the arg). For more detailed info see #register... methods in DSVColumnView.'
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   245
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   246
#valuesReadSelector
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   247
'A selector used to get (string or a bitmap) or set (if the write selector is undefined) the contents of a cell.'
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   248
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   249
#valuesWriteSelector
3116330c3d57 help texts added
tz
parents: 567
diff changeset
   250
'A selector used to set the value of a cell.'
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   251
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   252
)
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   253
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   254
    "Modified: / 19.5.1998 / 23:20:51 / cg"
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   255
! !
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   256
881
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
   257
!DataSetBuilder class methodsFor:'image specs'!
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
   258
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
   259
newColumnIcon
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
   260
    "This resource specification was automatically generated
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
   261
     by the ImageEditor of ST/X."
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
   262
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
   263
    "Do not manually edit this!! If it is corrupted,
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
   264
     the ImageEditor may not be able to read the specification."
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
   265
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
   266
    "
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
   267
     self newColumnIcon inspect
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
   268
     ImageEditor openOnClass:self andSelector:#newColumnIcon
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
   269
    "
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
   270
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
   271
    <resource: #image>
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
   272
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
   273
    ^Icon
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
   274
        constantNamed:#'DataSetBuilder newColumnIcon'
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
   275
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'UT@@@@UPUTUUUXUPUTZ**,UPUTZB",UPUTX*H,UYUTX*H,UPUTZB",UPQTZ**,UPUTX*H,UPUTX*H,UPUTX*H,UPUTXB@,UPUTZ**,UPUTZ**,UPUTX"H,UYUTXB@,UPUTX"@,UPUTX"H,UPUTZ**,UPUTZ**,UPUT/??<UPUT@@@@UP') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 127 127 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A??@A??@A??@A??@A??@A??@A??@A??@A??CA??@A??@A??@A??@A??CA??AA??@A??CA??@A??CA??@A??@A??A') ; yourself); yourself]! !
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
   276
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   277
!DataSetBuilder class methodsFor:'interface specs'!
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   278
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   279
basicsEditSpec
817
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   280
    "This resource specification was automatically generated
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   281
     by the UIPainter of ST/X."
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   282
817
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   283
    "Do not manually edit this!! If it is corrupted,
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   284
     the UIPainter may not be able to read the specification."
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   285
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   286
    "
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   287
     UIPainter new openOnClass:DataSetBuilder andSelector:#basicsEditSpec
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   288
     DataSetBuilder new openInterface:#basicsEditSpec
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   289
    "
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   290
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   291
    <resource: #canvas>
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   292
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   293
    ^
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   294
     
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   295
       #(#FullSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   296
          #window: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   297
           #(#WindowSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   298
              #name: 'DataSet Basic'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   299
              #layout: #(#LayoutFrame 216 0 173 0 538 0 499 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   300
              #label: 'DataSet Basic'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   301
              #min: #(#Point 10 10)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   302
              #max: #(#Point 1280 1024)
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   303
              #bounds: #(#Rectangle 216 173 539 500)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   304
              #usePreferredExtent: false
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   305
          )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   306
          #component: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   307
           #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   308
              #collection: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   309
               #(
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   310
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   311
                    #name: 'framedBox1'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   312
                    #layout: #(#LayoutFrame 0 0.0 3 0 0 1.0 164 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   313
                    #component: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   314
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   315
                        #collection: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   316
                         #(
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   317
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   318
                              #name: 'label1'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   319
                              #layout: #(#AlignmentOrigin 107 0 52 0 1 0.5)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   320
                              #label: 'Label:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   321
                              #resizeForLabel: true
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   322
                          )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   323
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   324
                              #name: 'labelField'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   325
                              #layout: #(#LayoutFrame 110 0 41 0 15 1.0 63 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   326
                              #activeHelpKey: #basicsLabel
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   327
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   328
                              #model: #label
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   329
                          )
817
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   330
                           #(#LabelSpec
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   331
                              #name: 'LabelFont'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   332
                              #layout: #(#AlignmentOrigin 107 0 81 0 1 0.5)
817
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   333
                              #label: 'Font::'
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   334
                              #adjust: #left
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   335
                              #resizeForLabel: true
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   336
                          )
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   337
                           #(#FontMenuSpec
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   338
                              #name: 'fontMenu'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   339
                              #layout: #(#LayoutFrame 110 0 69 0 13 1.0 91 0)
817
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   340
                              #activeHelpKey: #labelFont
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   341
                              #model: #style
439
118bfaf3f76b font define forgotten + correct hasChanged flag setting
tz
parents: 438
diff changeset
   342
                          )
442
77009b480ba9 rearranges in layout
tz
parents: 439
diff changeset
   343
                           #(#PopUpListSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   344
                              #name: 'Alignment'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   345
                              #layout: #(#LayoutFrame 155 0 98 0 15 1.0 120 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   346
                              #activeHelpKey: #basicsJustification
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   347
                              #label: 'Alignment'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   348
                              #model: #labelAlignment
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   349
                              #menu: 
442
77009b480ba9 rearranges in layout
tz
parents: 439
diff changeset
   350
                               #(#left
77009b480ba9 rearranges in layout
tz
parents: 439
diff changeset
   351
                                  #right #center
77009b480ba9 rearranges in layout
tz
parents: 439
diff changeset
   352
                              )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   353
                              #useIndex: false
442
77009b480ba9 rearranges in layout
tz
parents: 439
diff changeset
   354
                          )
77009b480ba9 rearranges in layout
tz
parents: 439
diff changeset
   355
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   356
                              #name: 'JustificationLabel'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   357
                              #layout: #(#AlignmentOrigin 153 0 109 0 1 0.5)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   358
                              #label: 'Justification:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   359
                              #adjust: #left
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   360
                              #resizeForLabel: true
442
77009b480ba9 rearranges in layout
tz
parents: 439
diff changeset
   361
                          )
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   362
                           #(#CheckBoxSpec
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   363
                              #name: 'labelIsImage'
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   364
                              #layout: #(#LayoutOrigin 10 0 123 0)
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   365
                              #activeHelpKey: #basicsLabelIsImage
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   366
                              #tabable: true
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   367
                              #model: #labelIsImage
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   368
                              #label: 'Label Is Image'
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   369
                          )
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   370
                           #(#CheckBoxSpec
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   371
                              #name: 'CheckBox2'
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   372
                              #layout: #(#LayoutOrigin 155 0 123 0)
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   373
                              #activeHelpKey: #basicsLabelIsImage
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   374
                              #tabable: true
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   375
                              #model: #translateLabel
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   376
                              #label: 'Translate Label'
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   377
                          )
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   378
                           #(#LabelSpec
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   379
                              #name: 'idLabel'
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   380
                              #layout: #(#AlignmentOrigin 107 0 27 0 1 0.5)
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   381
                              #label: 'ID:'
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   382
                              #resizeForLabel: true
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   383
                          )
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   384
                           #(#InputFieldSpec
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   385
                              #name: 'idField'
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   386
                              #layout: #(#LayoutFrame 110 0 13 0 15 1.0 35 0)
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   387
                              #activeHelpKey: #basicsLabel
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   388
                              #tabable: true
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   389
                              #model: #id
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   390
                          )
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   391
                        )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   392
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   393
                    #label: 'Header:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   394
                    #labelPosition: #topLeft
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   395
                )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   396
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   397
                    #name: 'typesFrame'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   398
                    #layout: #(#LayoutFrame 0 0.0 178 0 0 1.0 286 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   399
                    #component: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   400
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   401
                        #collection: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   402
                         #(
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   403
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   404
                              #name: 'rendererLabel'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   405
                              #layout: #(#AlignmentOrigin 107 0 29 0 1 0.5)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   406
                              #label: 'Renderer:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   407
                              #resizeForLabel: true
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   408
                          )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   409
                           #(#ComboListSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   410
                              #name: 'rendererField'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   411
                              #layout: #(#LayoutFrame 110 0 18 0 15 1.0 40 0)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   412
                              #activeHelpKey: #basicsRenderer
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   413
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   414
                              #model: #rendererType
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   415
                              #comboList: #rendererTypeList
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   416
                              #useIndex: false
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   417
                          )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   418
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   419
                              #name: 'editorLabel'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   420
                              #layout: #(#AlignmentOrigin 107 0 55 0 1 0.5)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   421
                              #label: 'Editor:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   422
                              #resizeForLabel: true
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   423
                          )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   424
                           #(#ComboBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   425
                              #name: 'editorField'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   426
                              #layout: #(#LayoutFrame 110 0 44 0 15 1.0 66 0)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   427
                              #activeHelpKey: #basicsEditor
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   428
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   429
                              #model: #editorType
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   430
                              #type: #symbolOrNil
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   431
                              #comboList: #editorTypeList
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   432
                              #useIndex: false
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   433
                          )
817
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   434
                           #(#LabelSpec
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   435
                              #name: 'JustificationC'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   436
                              #layout: #(#AlignmentOrigin 153 0 82 0 1 0.5)
817
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   437
                              #label: 'Justification:'
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   438
                              #adjust: #left
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   439
                              #resizeForLabel: true
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   440
                          )
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   441
                           #(#PopUpListSpec
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   442
                              #name: 'AlignmentC'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   443
                              #layout: #(#LayoutFrame 155 0 71 0 15 1.0 93 0)
817
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   444
                              #activeHelpKey: #basicsJustification
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   445
                              #label: 'Alignment'
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   446
                              #model: #columnAlignment
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   447
                              #menu: 
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   448
                               #(#left
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   449
                                  #right #center
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   450
                              )
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   451
                              #useIndex: false
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   452
                          )
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   453
                        )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   454
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   455
                    #label: 'Cell Type:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   456
                    #labelPosition: #topLeft
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   457
                )
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   458
              )
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   459
          )
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   460
      )
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   461
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   462
    "Modified: / 20.5.1998 / 00:28:01 / cg"
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   463
!
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   464
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   465
colorsEditSpec
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   466
    "This resource specification was automatically generated
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   467
     by the UIPainter of ST/X."
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   468
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   469
    "Do not manually edit this!! If it is corrupted,
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   470
     the UIPainter may not be able to read the specification."
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   471
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   472
    "
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   473
     UIPainter new openOnClass:DataSetBuilder andSelector:#colorsEditSpec
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   474
     DataSetBuilder new openInterface:#colorsEditSpec
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   475
    "
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   476
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   477
    <resource: #canvas>
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   478
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   479
    ^
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   480
     
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   481
       #(#FullSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   482
          #window: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   483
           #(#WindowSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   484
              #name: 'DataSet Misc'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   485
              #layout: #(#LayoutFrame 216 0 173 0 584 0 472 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   486
              #label: 'DataSet Misc'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   487
              #min: #(#Point 10 10)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   488
              #max: #(#Point 1280 1024)
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   489
              #bounds: #(#Rectangle 216 173 585 473)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   490
              #usePreferredExtent: false
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   491
          )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   492
          #component: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   493
           #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   494
              #collection: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   495
               #(
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   496
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   497
                    #name: 'ColorsBox'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   498
                    #layout: #(#LayoutFrame 0 0.0 3 0 0 1.0 95 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   499
                    #component: 
427
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   500
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   501
                        #collection: 
427
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   502
                         #(
505
d9ed26eeafe9 checkin from browser
tz
parents: 489
diff changeset
   503
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   504
                              #name: 'label1'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   505
                              #layout: #(#AlignmentOrigin 127 0 38 0 1 0.5)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   506
                              #label: 'Foreground:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   507
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   508
                              #resizeForLabel: true
505
d9ed26eeafe9 checkin from browser
tz
parents: 489
diff changeset
   509
                          )
427
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   510
                           #(#ColorMenuSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   511
                              #name: 'colorMenu1'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   512
                              #layout: #(#LayoutFrame 130 0 26 0 12 1.0 48 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   513
                              #activeHelpKey: #colorsForegroundLabelColor
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   514
                              #model: #labelForegroundColor
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   515
                              #labelsAreColored: true
427
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   516
                          )
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   517
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   518
                              #name: 'label2'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   519
                              #layout: #(#AlignmentOrigin 127 0 66 0 1 0.5)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   520
                              #label: 'Background:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   521
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   522
                              #resizeForLabel: true
427
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   523
                          )
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   524
                           #(#ColorMenuSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   525
                              #name: 'colorMenu2'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   526
                              #layout: #(#LayoutFrame 130 0 54 0 12 1.0 76 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   527
                              #activeHelpKey: #colorsBackgroundLabelColor
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   528
                              #model: #labelBackgroundColor
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   529
                              #labelsAreColored: false
427
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   530
                          )
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   531
                        )
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   532
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   533
                    #label: 'Label Colors:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   534
                    #labelPosition: #topLeft
427
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   535
                )
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   536
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   537
                    #name: 'defaultColorsBox'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   538
                    #layout: #(#LayoutFrame 0 0.0 108 0 0 1.0 263 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   539
                    #component: 
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   540
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   541
                        #collection: 
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   542
                         #(
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   543
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   544
                              #name: 'fgLabel'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   545
                              #layout: #(#AlignmentOrigin 127 0 42 0 1 0.5)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   546
                              #label: 'Foreground:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   547
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   548
                              #resizeForLabel: true
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   549
                          )
505
d9ed26eeafe9 checkin from browser
tz
parents: 489
diff changeset
   550
                           #(#ColorMenuSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   551
                              #name: 'fgMenu'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   552
                              #layout: #(#LayoutFrame 130 0 30 0 12 1.0 52 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   553
                              #activeHelpKey: #colorsForegroundCellColor
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   554
                              #model: #foregroundColor
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   555
                              #labelsAreColored: true
505
d9ed26eeafe9 checkin from browser
tz
parents: 489
diff changeset
   556
                          )
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   557
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   558
                              #name: 'bgLabel'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   559
                              #layout: #(#AlignmentOrigin 127 0 70 0 1 0.5)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   560
                              #label: 'Background:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   561
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   562
                              #resizeForLabel: true
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   563
                          )
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   564
                           #(#ColorMenuSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   565
                              #name: 'bgMenu'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   566
                              #layout: #(#LayoutFrame 130 0 58 0 12 1.0 80 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   567
                              #activeHelpKey: #colorsBackgroundCellColor
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   568
                              #model: #backgroundColor
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   569
                              #labelsAreColored: false
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   570
                          )
380
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
   571
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   572
                              #name: 'fgSelLabel'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   573
                              #layout: #(#AlignmentOrigin 127 0 104 0 1 0.5)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   574
                              #label: 'FG-Selector:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   575
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   576
                              #resizeForLabel: true
380
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
   577
                          )
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
   578
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   579
                              #name: 'fgSelField'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   580
                              #layout: #(#LayoutFrame 130 0 93 0 15 1.0 115 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   581
                              #activeHelpKey: #colorsForegroundSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   582
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   583
                              #model: #foregroundSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   584
                              #type: #symbolOrNil
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   585
                          )
505
d9ed26eeafe9 checkin from browser
tz
parents: 489
diff changeset
   586
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   587
                              #name: 'bgSelLabel'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   588
                              #layout: #(#AlignmentOrigin 127 0 129 0 1 0.5)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   589
                              #label: 'BG-Selector:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   590
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   591
                              #resizeForLabel: true
505
d9ed26eeafe9 checkin from browser
tz
parents: 489
diff changeset
   592
                          )
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   593
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   594
                              #name: 'bgSelField'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   595
                              #layout: #(#LayoutFrame 130 0 118 0 15 1.0 140 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   596
                              #activeHelpKey: #colorsBackgroundSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   597
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   598
                              #model: #backgroundSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   599
                              #type: #symbolOrNil
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   600
                          )
380
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
   601
                        )
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
   602
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   603
                    #label: 'Cell Colors:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   604
                    #labelPosition: #topLeft
377
5cbb117efc19 refine selection on row base:
ca
parents: 370
diff changeset
   605
                )
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   606
              )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   607
          )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   608
      )
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   609
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   610
    "Modified: / 20.5.1998 / 00:31:50 / cg"
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   611
!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   612
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   613
defineClassNameSpec
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   614
    "This resource specification was automatically generated
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   615
     by the UIPainter of ST/X."
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   616
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   617
    "Do not manually edit this!! If it is corrupted,
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   618
     the UIPainter may not be able to read the specification."
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   619
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   620
    "
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   621
     UIPainter new openOnClass:DataSetBuilder andSelector:#defineClassNameSpec
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   622
     DataSetBuilder new openInterface:#defineClassNameSpec
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   623
    "
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   624
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   625
    <resource: #canvas>
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   626
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   627
    ^
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   628
     
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   629
       #(#FullSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   630
          #window: 
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   631
           #(#WindowSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   632
              #name: 'Data Set Builder'
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   633
              #layout: #(#LayoutFrame 414 0 336 0 740 0 471 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   634
              #label: 'Data Set Builder'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   635
              #min: #(#Point 10 10)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   636
              #max: #(#Point 1152 900)
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   637
              #bounds: #(#Rectangle 414 336 741 472)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   638
              #usePreferredExtent: false
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   639
          )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   640
          #component: 
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   641
           #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   642
              #collection: 
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   643
               #(
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   644
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   645
                    #name: 'framedBox1'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   646
                    #layout: #(#LayoutFrame 0 0.0 3 0.0 0 1.0 -34 1.0)
842
b412ee25ae80 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 831
diff changeset
   647
                    #label: 'Class for code'
b412ee25ae80 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 831
diff changeset
   648
                    #translateLabel: true
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   649
                    #labelPosition: #topLeft
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   650
                )
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   651
                 #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   652
                    #name: 'classLabel'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   653
                    #layout: #(#AlignmentOrigin 73 0.11 38 0 1 0.5)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   654
                    #label: 'Class:'
842
b412ee25ae80 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 831
diff changeset
   655
                    #translateLabel: true
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   656
                    #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   657
                    #resizeForLabel: true
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   658
                )
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   659
                 #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   660
                    #name: 'classNameInputField'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   661
                    #layout: #(#LayoutFrame 77 0.11 27 0 -16 1.0 49 0)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   662
                    #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   663
                    #model: #classNameChannel
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   664
                )
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   665
                 #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   666
                    #name: 'superClassLabel'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   667
                    #layout: #(#AlignmentOrigin 73 0.11 65 0 1 0.5)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   668
                    #label: 'Superclass:'
842
b412ee25ae80 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 831
diff changeset
   669
                    #translateLabel: true
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   670
                    #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   671
                    #resizeForLabel: true
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   672
                )
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   673
                 #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   674
                    #name: 'superclassNameInputField'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   675
                    #layout: #(#LayoutFrame 76 0.11 55 0 -16 1.0 77 0)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   676
                    #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   677
                    #model: #superclassNameChannel
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   678
                )
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   679
                 #(#UISubSpecification
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   680
                    #name: 'SubSpecification'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   681
                    #layout: #(#LayoutFrame 0 0.0 -29 1 0 1.0 -5 1.0)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   682
                    #majorKey: #ToolApplicationModel
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   683
                    #minorKey: #windowSpecForCommitWithoutChannels
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   684
                )
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   685
              )
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   686
          )
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   687
      )
842
b412ee25ae80 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 831
diff changeset
   688
b412ee25ae80 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 831
diff changeset
   689
    "Modified: / 20.5.1998 / 03:46:17 / cg"
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   690
!
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   691
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   692
formatEditSpec
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   693
    "This resource specification was automatically generated
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   694
     by the UIPainter of ST/X."
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   695
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   696
    "Do not manually edit this!! If it is corrupted,
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   697
     the UIPainter may not be able to read the specification."
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   698
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   699
    "
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   700
     UIPainter new openOnClass:DataSetBuilder andSelector:#formatEditSpec
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   701
     DataSetBuilder new openInterface:#formatEditSpec
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   702
    "
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   703
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   704
    <resource: #canvas>
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   705
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   706
    ^
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   707
     
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   708
       #(#FullSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   709
          #window: 
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   710
           #(#WindowSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   711
              #name: 'DataSet Details'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   712
              #layout: #(#LayoutFrame 218 0 175 0 605 0 466 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   713
              #label: 'DataSet Details'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   714
              #min: #(#Point 10 10)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   715
              #max: #(#Point 1280 1024)
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   716
              #bounds: #(#Rectangle 218 175 606 467)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   717
              #usePreferredExtent: false
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   718
          )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   719
          #component: 
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   720
           #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   721
              #collection: 
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   722
               #(
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   723
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   724
                    #name: 'framedBox1'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   725
                    #layout: #(#LayoutFrame 0 0.0 3 0 0 1.0 127 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   726
                    #component: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   727
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   728
                        #collection: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   729
                         #(
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   730
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   731
                              #name: 'typeLabel'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   732
                              #layout: #(#AlignmentOrigin 127 0 42 0 1 0.5)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   733
                              #label: 'Input Type:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   734
                              #resizeForLabel: true
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   735
                          )
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   736
                           #(#ComboListSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   737
                              #name: 'typeCombo'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   738
                              #layout: #(#LayoutFrame 130 0 31 0 15 1.0 53 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   739
                              #activeHelpKey: #formatInputType
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   740
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   741
                              #model: #type
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   742
                              #comboList: 
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   743
                               #(#string
e4401e30077a tabs added
tz
parents: 442
diff changeset
   744
                                  #password #number
e4401e30077a tabs added
tz
parents: 442
diff changeset
   745
                                  #numberOrNil #symbolOrNil
e4401e30077a tabs added
tz
parents: 442
diff changeset
   746
                              )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   747
                              #useIndex: false
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   748
                          )
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   749
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   750
                              #name: 'sizeLabel'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   751
                              #layout: #(#AlignmentOrigin 127 0 68 0 1 0.5)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   752
                              #label: 'Max Size:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   753
                              #resizeForLabel: true
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   754
                          )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   755
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   756
                              #name: 'sizeField'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   757
                              #layout: #(#LayoutFrame 130 0 57 0 15 1.0 79 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   758
                              #activeHelpKey: #formatMaxSize
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   759
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   760
                              #model: #size
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   761
                              #type: #numberOrNil
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   762
                          )
439
118bfaf3f76b font define forgotten + correct hasChanged flag setting
tz
parents: 438
diff changeset
   763
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   764
                              #name: 'formatLabel'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   765
                              #layout: #(#AlignmentOrigin 127 0 93 0 1 0.5)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   766
                              #label: 'Text Format:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   767
                              #resizeForLabel: true
439
118bfaf3f76b font define forgotten + correct hasChanged flag setting
tz
parents: 438
diff changeset
   768
                          )
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   769
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   770
                              #name: 'formatField'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   771
                              #layout: #(#LayoutFrame 130 0 82 0 15 1.0 104 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   772
                              #activeHelpKey: #formatTextFormat
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   773
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   774
                              #model: #formatString
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   775
                          )
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   776
                        )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   777
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   778
                    #label: 'Input Format'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   779
                    #labelPosition: #topLeft
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   780
                )
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   781
              )
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   782
          )
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   783
      )
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   784
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   785
    "Modified: / 20.5.1998 / 00:28:53 / cg"
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   786
!
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   787
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   788
frameEditSpec
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   789
    "This resource specification was automatically generated
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   790
     by the UIPainter of ST/X."
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   791
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   792
    "Do not manually edit this!! If it is corrupted,
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   793
     the UIPainter may not be able to read the specification."
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   794
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   795
    "
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   796
     UIPainter new openOnClass:DataSetBuilder andSelector:#frameEditSpec
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   797
     DataSetBuilder new openInterface:#frameEditSpec
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   798
    "
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   799
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   800
    <resource: #canvas>
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   801
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   802
    ^
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   803
     
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   804
       #(#FullSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   805
          #window: 
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   806
           #(#WindowSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   807
              #name: 'DataSet Dimension'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   808
              #layout: #(#LayoutFrame 216 0 173 0 506 0 416 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   809
              #label: 'DataSet Dimension'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   810
              #min: #(#Point 10 10)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   811
              #max: #(#Point 1280 1024)
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   812
              #bounds: #(#Rectangle 216 173 507 417)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   813
              #usePreferredExtent: false
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   814
          )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   815
          #component: 
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   816
           #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   817
              #collection: 
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   818
               #(
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   819
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   820
                    #name: 'separatorBox'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   821
                    #layout: #(#LayoutFrame 0 0.0 3 0 0 1.0 95 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   822
                    #component: 
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   823
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   824
                        #collection: 
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   825
                         #(
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   826
                           #(#CheckBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   827
                              #name: 'showRowSeparator'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   828
                              #layout: #(#LayoutFrame 18 0 27 0 194 0 50 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   829
                              #activeHelpKey: #frameShowRowSeparator
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   830
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   831
                              #model: #showRowSeparator
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   832
                              #label: 'Show Row-Separator'
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   833
                          )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   834
                           #(#CheckBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   835
                              #name: 'showColSeparator'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   836
                              #layout: #(#LayoutFrame 18 0 53 0 194 0 76 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   837
                              #activeHelpKey: #frameShowColumnSeparator
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   838
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   839
                              #model: #showColSeparator
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   840
                              #label: 'Show Column-Separator'
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   841
                          )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   842
                        )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   843
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   844
                    #label: 'Separators'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   845
                    #labelPosition: #topLeft
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   846
                )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   847
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   848
                    #name: 'framedBox1'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   849
                    #layout: #(#LayoutFrame 0 0.0 108 0 0 1.0 225 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   850
                    #component: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   851
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   852
                        #collection: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   853
                         #(
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   854
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   855
                              #name: 'widthLabel'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   856
                              #layout: #(#AlignmentOrigin 153 0.0 35 0 1 0.5)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   857
                              #label: 'Column Width:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   858
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   859
                              #resizeForLabel: true
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   860
                          )
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   861
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   862
                              #name: 'widthField'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   863
                              #layout: #(#LayoutFrame 155 0 24 0 15 1.0 46 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   864
                              #activeHelpKey: #frameColumnWidth
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   865
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   866
                              #model: #width
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   867
                              #type: #numberOrNil
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   868
                          )
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   869
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   870
                              #name: 'minWidthLabel'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   871
                              #layout: #(#AlignmentOrigin 153 0.0 63 0 1 0.5)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   872
                              #label: 'Min Width:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   873
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   874
                              #resizeForLabel: true
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   875
                          )
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   876
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   877
                              #name: 'minWidthField'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   878
                              #layout: #(#LayoutFrame 155 0 52 0 15 1.0 74 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   879
                              #activeHelpKey: #frameMinWidth
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   880
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   881
                              #model: #minWidth
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   882
                              #type: #numberOrNil
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   883
                          )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   884
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   885
                              #name: 'heightLabel'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   886
                              #layout: #(#AlignmentOrigin 153 0.0 91 0 1 0.5)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   887
                              #label: 'Row Height:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   888
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   889
                              #resizeForLabel: true
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   890
                          )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   891
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   892
                              #name: 'heightField'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   893
                              #layout: #(#LayoutFrame 155 0 80 0 15 1.0 102 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   894
                              #activeHelpKey: #frameRowHeight
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   895
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   896
                              #model: #height
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   897
                              #type: #numberOrNil
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   898
                          )
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   899
                        )
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   900
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   901
                    #label: 'Dimensions:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   902
                    #labelPosition: #topLeft
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   903
                )
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   904
              )
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   905
          )
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   906
      )
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   907
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   908
    "Modified: / 20.5.1998 / 00:29:47 / cg"
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   909
!
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   910
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   911
selectionEditSpec
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   912
    "This resource specification was automatically generated
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   913
     by the UIPainter of ST/X."
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   914
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   915
    "Do not manually edit this!! If it is corrupted,
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   916
     the UIPainter may not be able to read the specification."
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   917
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   918
    "
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   919
     UIPainter new openOnClass:DataSetBuilder andSelector:#selectionEditSpec
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   920
     DataSetBuilder new openInterface:#selectionEditSpec
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   921
    "
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   922
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   923
    <resource: #canvas>
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   924
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   925
    ^
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   926
     
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   927
       #(#FullSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   928
          #window: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   929
           #(#WindowSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   930
              #name: 'DataSet Basic'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   931
              #layout: #(#LayoutFrame 218 0 175 0 506 0 430 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   932
              #label: 'DataSet Basic'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   933
              #min: #(#Point 10 10)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   934
              #max: #(#Point 1280 1024)
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   935
              #bounds: #(#Rectangle 218 175 507 431)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   936
              #usePreferredExtent: false
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   937
          )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   938
          #component: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   939
           #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   940
              #collection: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   941
               #(
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   942
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   943
                    #name: 'framedBox1'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   944
                    #layout: #(#LayoutFrame 0 0.0 3 0 0 1.0 87 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   945
                    #component: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   946
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   947
                        #collection: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   948
                         #(
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   949
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   950
                              #name: 'ActionLabel'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   951
                              #layout: #(#AlignmentOrigin 107 0 33 0 1 0.5)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   952
                              #label: 'Selector:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   953
                              #adjust: #left
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   954
                              #resizeForLabel: true
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   955
                          )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   956
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   957
                              #name: 'ActionSelector'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   958
                              #layout: #(#LayoutFrame 110 0 22 0 15 1.0 44 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   959
                              #activeHelpKey: #selectionLabelClickSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   960
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   961
                              #model: #labelActionSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   962
                              #type: #symbolOrNil
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   963
                          )
427
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   964
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   965
                              #name: 'ArgumentLabel'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   966
                              #layout: #(#AlignmentOrigin 107 0 58 0 1 0.5)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   967
                              #label: 'Argument:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   968
                              #adjust: #left
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   969
                              #resizeForLabel: true
427
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   970
                          )
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   971
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   972
                              #name: 'ArgumentValue'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   973
                              #layout: #(#LayoutFrame 110 0 47 0 15 1.0 69 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   974
                              #activeHelpKey: #selectionLabelSelectorArgument
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   975
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   976
                              #model: #labelActionArgument
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   977
                              #type: #string
427
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   978
                          )
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   979
                        )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   980
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   981
                    #label: 'Label Select Action:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   982
                    #labelPosition: #topLeft
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   983
                )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   984
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   985
                    #name: 'framedBox2'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   986
                    #layout: #(#LayoutFrame 0 0.0 95 0 0 1.0 178 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   987
                    #component: 
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   988
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   989
                        #collection: 
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   990
                         #(
e4401e30077a tabs added
tz
parents: 442
diff changeset
   991
                           #(#CheckBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   992
                              #name: 'canSelect'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   993
                              #layout: #(#Point 107 21)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   994
                              #activeHelpKey: #selectionIsSelectable
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   995
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   996
                              #model: #canSelect
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   997
                              #label: 'Is Selectable'
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   998
                          )
e4401e30077a tabs added
tz
parents: 442
diff changeset
   999
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1000
                              #name: 'selectorLabel'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1001
                              #layout: #(#AlignmentOrigin 107 0 57 0 1 0.5)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1002
                              #label: 'Selector:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1003
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1004
                              #resizeForLabel: true
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
  1005
                          )
e4401e30077a tabs added
tz
parents: 442
diff changeset
  1006
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1007
                              #name: 'selectSelector'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1008
                              #layout: #(#LayoutFrame 110 0 46 0 15 1.0 68 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1009
                              #activeHelpKey: #selectionCellClickSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1010
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1011
                              #model: #selectSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1012
                              #type: #symbolOrNil
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
  1013
                          )
e4401e30077a tabs added
tz
parents: 442
diff changeset
  1014
                        )
e4401e30077a tabs added
tz
parents: 442
diff changeset
  1015
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1016
                    #label: 'Cell Selection:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1017
                    #labelPosition: #topLeft
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
  1018
                )
e4401e30077a tabs added
tz
parents: 442
diff changeset
  1019
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1020
                    #name: 'framedBox3'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1021
                    #layout: #(#LayoutFrame 0 0.0 186 0 0 1.0 243 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1022
                    #component: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1023
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1024
                        #collection: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1025
                         #(
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1026
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1027
                              #name: 'doubleLabel'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1028
                              #layout: #(#AlignmentOrigin 107 0 32 0 1 0.5)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1029
                              #label: 'Selector:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1030
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1031
                              #resizeForLabel: true
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1032
                          )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1033
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1034
                              #name: 'doubleClicked'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1035
                              #layout: #(#LayoutFrame 110 0 21 0 15 1.0 43 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1036
                              #activeHelpKey: #selectionCellDoubleClickSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1037
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1038
                              #model: #doubleClickedSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1039
                              #type: #symbolOrNil
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1040
                          )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1041
                        )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1042
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1043
                    #label: 'Cell Double Click:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1044
                    #labelPosition: #topLeft
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1045
                )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1046
              )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1047
          )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1048
      )
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1049
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1050
    "Modified: / 19.5.1998 / 22:36:08 / cg"
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1051
!
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1052
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
  1053
slices
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
  1054
    ^#(
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
  1055
        (Basics         basicsEditSpec)
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
  1056
        (Values         valuesEditSpec)
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
  1057
        (Format         formatEditSpec)
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
  1058
        (Selection      selectionEditSpec)
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
  1059
        (Frame          frameEditSpec)
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
  1060
        (Colors         colorsEditSpec)
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
  1061
    )
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
  1062
!
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
  1063
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1064
valuesEditSpec
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1065
    "This resource specification was automatically generated
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1066
     by the UIPainter of ST/X."
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1067
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1068
    "Do not manually edit this!! If it is corrupted,
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1069
     the UIPainter may not be able to read the specification."
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1070
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1071
    "
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1072
     UIPainter new openOnClass:DataSetBuilder andSelector:#valuesEditSpec
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1073
     DataSetBuilder new openInterface:#valuesEditSpec
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1074
    "
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1075
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1076
    <resource: #canvas>
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1077
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1078
    ^
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1079
     
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1080
       #(#FullSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1081
          #window: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1082
           #(#WindowSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1083
              #name: 'DataSet Basic'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1084
              #layout: #(#LayoutFrame 216 0 173 0 511 0 478 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1085
              #label: 'DataSet Basic'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1086
              #min: #(#Point 10 10)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1087
              #max: #(#Point 1280 1024)
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1088
              #bounds: #(#Rectangle 216 173 512 479)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1089
              #usePreferredExtent: false
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1090
          )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1091
          #component: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1092
           #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1093
              #collection: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1094
               #(
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1095
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1096
                    #name: 'valuesBox'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1097
                    #layout: #(#LayoutFrame 0 0.0 3 0 0 1.0 110 0)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1098
                    #component: 
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1099
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1100
                        #collection: 
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1101
                         #(
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1102
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1103
                              #name: 'readLabel'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1104
                              #layout: #(#AlignmentOrigin 107 0 29 0 1 0.5)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1105
                              #label: 'Read:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1106
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1107
                              #resizeForLabel: true
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1108
                          )
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1109
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1110
                              #name: 'readSelector'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1111
                              #layout: #(#LayoutFrame 110 0 18 0 15 1.0 40 0)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1112
                              #activeHelpKey: #valuesReadSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1113
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1114
                              #model: #readSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1115
                              #type: #symbolOrNil
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1116
                          )
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
  1117
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1118
                              #name: 'writeLabel'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1119
                              #layout: #(#AlignmentOrigin 107 0 54 0 1 0.5)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1120
                              #label: 'Write:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1121
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1122
                              #resizeForLabel: true
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
  1123
                          )
379
1a24037cd490 support of writeSelector
ca
parents: 377
diff changeset
  1124
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1125
                              #name: 'writeSelector'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1126
                              #layout: #(#LayoutFrame 110 0 43 0 15 1.0 65 0)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1127
                              #activeHelpKey: #valuesWriteSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1128
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1129
                              #model: #writeSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1130
                              #type: #symbolOrNil
379
1a24037cd490 support of writeSelector
ca
parents: 377
diff changeset
  1131
                          )
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1132
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1133
                              #name: 'printLabel'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1134
                              #layout: #(#AlignmentOrigin 107 0 79 0 1 0.5)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1135
                              #label: 'Print:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1136
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1137
                              #resizeForLabel: true
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1138
                          )
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1139
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1140
                              #name: 'printSelector'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1141
                              #layout: #(#LayoutFrame 110 0 68 0 15 1.0 90 0)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1142
                              #activeHelpKey: #valuesPrintSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1143
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1144
                              #model: #printSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1145
                              #type: #symbolOrNil
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1146
                          )
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1147
                        )
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1148
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1149
                    #label: 'Value Selectors:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1150
                    #labelPosition: #topLeft
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1151
                )
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1152
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1153
                    #name: 'menusBox'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1154
                    #layout: #(#LayoutFrame 0 0.0 119 0 0 1.0 176 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1155
                    #component: 
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1156
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1157
                        #collection: 
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1158
                         #(
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1159
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1160
                              #name: 'menuLabel'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1161
                              #layout: #(#AlignmentOrigin 107 0 29 0 1 0.5)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1162
                              #label: 'Selector:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1163
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1164
                              #resizeForLabel: true
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1165
                          )
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1166
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1167
                              #name: 'menuSelector'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1168
                              #layout: #(#LayoutFrame 110 0 18 0 15 1.0 40 0)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1169
                              #activeHelpKey: #valuesMenuSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1170
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1171
                              #model: #menu
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1172
                              #type: #symbolOrNil
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1173
                          )
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
  1174
                        )
3116330c3d57 help texts added
tz
parents: 567
diff changeset
  1175
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1176
                    #label: 'Menu:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1177
                    #labelPosition: #topLeft
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
  1178
                )
3116330c3d57 help texts added
tz
parents: 567
diff changeset
  1179
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1180
                    #name: 'framedBox1'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1181
                    #layout: #(#LayoutFrame 1 0.0 191 0 1 1.0 249 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1182
                    #component: 
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
  1183
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1184
                        #collection: 
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
  1185
                         #(
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1186
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1187
                              #name: 'label2'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1188
                              #layout: #(#AlignmentOrigin 107 0 29 0 1 0.5)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1189
                              #activeHelpKey: #valuesChoiceSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1190
                              #label: 'Selector:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1191
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1192
                              #resizeForLabel: true
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1193
                          )
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1194
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1195
                              #name: 'inputField2'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1196
                              #layout: #(#LayoutFrame 110 0 18 0 15 1.0 40 0)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1197
                              #activeHelpKey: #valuesChoiceSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1198
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1199
                              #model: #choices
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1200
                              #type: #symbolOrNil
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1201
                          )
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1202
                        )
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1203
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1204
                    #label: 'List Choice:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1205
                    #labelPosition: #topLeft
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  1206
                )
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1207
              )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1208
          )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1209
      )
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1210
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1211
    "Modified: / 19.5.1998 / 22:33:53 / cg"
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1212
!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1213
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1214
windowSpec
817
d350f49ae748 add column justification
ca
parents: 816
diff changeset
  1215
    "This resource specification was automatically generated
d350f49ae748 add column justification
ca
parents: 816
diff changeset
  1216
     by the UIPainter of ST/X."
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1217
817
d350f49ae748 add column justification
ca
parents: 816
diff changeset
  1218
    "Do not manually edit this!! If it is corrupted,
d350f49ae748 add column justification
ca
parents: 816
diff changeset
  1219
     the UIPainter may not be able to read the specification."
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1220
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1221
    "
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1222
     UIPainter new openOnClass:DataSetBuilder andSelector:#windowSpec
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1223
     DataSetBuilder new openInterface:#windowSpec
817
d350f49ae748 add column justification
ca
parents: 816
diff changeset
  1224
     DataSetBuilder open
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1225
    "
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1226
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1227
    <resource: #canvas>
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1228
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1229
    ^
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1230
     
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1231
       #(#FullSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1232
          #window: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1233
           #(#WindowSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1234
              #name: 'Data Set Builder'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1235
              #layout: #(#LayoutFrame 28 0 46 0 660 0 612 0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1236
              #label: 'Data Set Builder'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1237
              #min: #(#Point 10 10)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1238
              #max: #(#Point 1152 900)
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1239
              #bounds: #(#Rectangle 28 46 661 613)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1240
              #menu: #menu
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1241
              #usePreferredExtent: false
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1242
          )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1243
          #component: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1244
           #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1245
              #collection: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1246
               #(
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1247
                 #(#MenuPanelSpec
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1248
                    #name: 'menuToolbarView'
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1249
                    #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 32 0)
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1250
                    #menu: #menuToolbar
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1251
                )
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1252
                 #(#VariableVerticalPanelSpec
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1253
                    #name: 'VariableVerticalPanel1'
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1254
                    #layout: #(#LayoutFrame 0 0.0 38 0.0 0 1.0 -26 1.0)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1255
                    #component: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1256
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1257
                        #collection: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1258
                         #(
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1259
                           #(#FramedBoxSpec
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1260
                              #name: 'FramedBox'
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1261
                              #component: 
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1262
                               #(#SpecCollection
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1263
                                  #collection: 
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1264
                                   #(
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1265
                                     #(#DataSetSpec
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1266
                                        #name: 'columnView'
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1267
                                        #layout: #(#LayoutFrame 15 0.0 16 0.0 15 1.0 16 1.0)
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1268
                                        #hasHorizontalScrollBar: true
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1269
                                        #hasVerticalScrollBar: false
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1270
                                        #miniScrollerHorizontal: true
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1271
                                        #rowClassName: 'CodingExamples_GUI::GUIDemoDataSetView::Row'
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1272
                                        #useIndex: false
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1273
                                        #has3Dsepartors: true
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1274
                                    )
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1275
                                  )
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1276
                              )
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1277
                              #label: 'Table Columns'
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1278
                              #labelPosition: #topLeft
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1279
                          )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1280
                           #(#VariableHorizontalPanelSpec
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1281
                              #name: 'VariablePanel'
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1282
                              #component: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1283
                               #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1284
                                  #collection: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1285
                                   #(
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1286
                                     #(#ViewSpec
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1287
                                        #name: 'labelsView'
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1288
                                        #component: 
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1289
                                         #(#SpecCollection
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1290
                                            #collection: 
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1291
                                             #(
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1292
                                               #(#SequenceViewSpec
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1293
                                                  #name: 'labelAndColumns'
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1294
                                                  #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1295
                                                  #model: #selectedColumnModel
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1296
                                                  #menu: #menuEdit
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1297
                                                  #hasHorizontalScrollBar: true
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1298
                                                  #hasVerticalScrollBar: true
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1299
                                                  #miniScrollerHorizontal: true
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1300
                                                  #useIndex: true
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1301
                                                  #sequenceList: #seqList
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1302
                                              )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1303
                                            )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1304
                                        )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1305
                                    )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1306
                                     #(#ViewSpec
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1307
                                        #name: 'specView'
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1308
                                        #component: 
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1309
                                         #(#SpecCollection
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1310
                                            #collection: 
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1311
                                             #(
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1312
                                               #(#TabViewSpec
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1313
                                                  #name: 'tabView'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1314
                                                  #layout: #(#LayoutFrame 1 0.0 0 0 0 1.0 50 0)
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1315
                                                  #model: #tabModel
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1316
                                                  #menu: #tabList
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1317
                                                  #useIndex: true
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1318
                                              )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1319
                                               #(#SubCanvasSpec
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1320
                                                  #name: 'specCanvas'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1321
                                                  #layout: #(#LayoutFrame 1 0.0 50 0.0 0 1.0 -30 1.0)
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1322
                                                  #specHolder: #specChannel
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1323
                                              )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1324
                                               #(#UISubSpecification
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1325
                                                  #name: 'SubSpecification'
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1326
                                                  #layout: #(#LayoutFrame 2 0.0 -26 1 -2 1.0 -2 1.0)
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1327
                                                  #majorKey: #ToolApplicationModel
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1328
                                                  #minorKey: #windowSpecForCommit
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1329
                                              )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1330
                                            )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1331
                                        )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1332
                                        #level: -1
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1333
                                    )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1334
                                  )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1335
                              )
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1336
                              #level: -1
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1337
                              #handles: #(#Any 0.235387 1.0)
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1338
                          )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1339
                        )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1340
                    )
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1341
                    #handles: #(#Any 0.25 1.0)
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1342
                )
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1343
                 #(#UISubSpecification
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1344
                    #name: 'infoBarSubSpec'
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1345
                    #layout: #(#LayoutFrame 0 0.0 -24 1 0 1.0 0 1.0)
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1346
                    #majorKey: #ToolApplicationModel
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1347
                    #minorKey: #windowSpecForInfoBar
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1348
                )
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1349
              )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1350
          )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1351
      )
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1352
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1353
    "Modified: / 19.5.1998 / 23:35:33 / cg"
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1354
! !
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1355
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1356
!DataSetBuilder class methodsFor:'menu specs'!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1357
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1358
menu
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1359
    "This resource specification was automatically generated
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1360
     by the MenuEditor of ST/X."
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1361
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1362
    "Do not manually edit this!! If it is corrupted,
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1363
     the MenuEditor may not be able to read the specification."
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1364
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1365
    "
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1366
     MenuEditor new openOnClass:DataSetBuilder andSelector:#menu
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1367
     (Menu new fromLiteralArrayEncoding:(DataSetBuilder menu)) startUp
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1368
    "
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1369
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1370
    <resource: #menu>
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1371
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1372
    ^
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1373
     
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1374
       #(#Menu
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1375
          
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1376
           #(
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1377
             #(#MenuItem
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1378
                #label: 'About'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1379
                #translateLabel: true
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1380
                #accessCharacterPosition: 1
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1381
                #labelImage: #(#ResourceRetriever nil #menuIcon)
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1382
                #submenuChannel: #menuAbout
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1383
            )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1384
             #(#MenuItem
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1385
                #label: 'File'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1386
                #translateLabel: true
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1387
                #activeHelpKey: #file
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1388
                #submenu: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1389
                 #(#Menu
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1390
                    
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1391
                     #(
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1392
                       #(#MenuItem
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1393
                          #label: 'New'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1394
                          #translateLabel: true
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1395
                          #value: #doNew
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1396
                          #activeHelpKey: #fileNew
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1397
                      )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1398
                       #(#MenuItem
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1399
                          #label: '-'
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1400
                      )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1401
                       #(#MenuItem
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1402
                          #label: 'Load...'
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1403
                          #translateLabel: true
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1404
                          #value: #doLoad
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1405
                          #activeHelpKey: #fileLoad
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1406
                      )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1407
                       #(#MenuItem
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1408
                          #label: '-'
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1409
                      )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1410
                       #(#MenuItem
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1411
                          #label: 'Save'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1412
                          #translateLabel: true
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1413
                          #value: #doSave
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1414
                          #activeHelpKey: #fileSave
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1415
                      )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1416
                       #(#MenuItem
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1417
                          #label: 'Save As...'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1418
                          #translateLabel: true
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1419
                          #value: #doSaveAs
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1420
                          #activeHelpKey: #fileSaveAs
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1421
                      )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1422
                       #(#MenuItem
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1423
                          #label: '-'
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1424
                      )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1425
                       #(#MenuItem
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1426
                          #label: 'Pick Columns...'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1427
                          #translateLabel: true
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1428
                          #value: #doPickColumns
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1429
                          #activeHelpKey: #pickColumns
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1430
                      )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1431
                       #(#MenuItem
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1432
                          #label: '-'
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1433
                      )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1434
                       #(#MenuItem
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1435
                          #label: 'Browse Class'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1436
                          #translateLabel: true
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1437
                          #value: #doBrowseClass
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1438
                          #activeHelpKey: #fileBrowseClass
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1439
                      )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1440
                       #(#MenuItem
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1441
                          #label: '-'
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1442
                      )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1443
                       #(#MenuItem
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1444
                          #label: 'Exit'
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1445
                          #translateLabel: true
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1446
                          #value: #closeRequest
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1447
                          #activeHelpKey: #fileExit
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1448
                      )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1449
                    ) nil
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1450
                    nil
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1451
                )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1452
            )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1453
             #(#MenuItem
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1454
                #label: 'Edit'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1455
                #translateLabel: true
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1456
                #activeHelpKey: #edit
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1457
                #submenuChannel: #menuEdit
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1458
            )
521
61569efc19f4 menu rearranged
tz
parents: 505
diff changeset
  1459
             #(#MenuItem
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1460
                #label: 'Add'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1461
                #translateLabel: true
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1462
                #submenu: 
521
61569efc19f4 menu rearranged
tz
parents: 505
diff changeset
  1463
                 #(#Menu
61569efc19f4 menu rearranged
tz
parents: 505
diff changeset
  1464
                    
61569efc19f4 menu rearranged
tz
parents: 505
diff changeset
  1465
                     #(
61569efc19f4 menu rearranged
tz
parents: 505
diff changeset
  1466
                       #(#MenuItem
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1467
                          #label: 'Column'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1468
                          #translateLabel: true
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1469
                          #value: #doCreateColumn
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1470
                          #activeHelpKey: #addColumn
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1471
                          #enabled: #columnIsNotEditing
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1472
                          #labelImage: #(#ResourceRetriever nil #newColumnIcon 'Column')
521
61569efc19f4 menu rearranged
tz
parents: 505
diff changeset
  1473
                      )
61569efc19f4 menu rearranged
tz
parents: 505
diff changeset
  1474
                    ) nil
61569efc19f4 menu rearranged
tz
parents: 505
diff changeset
  1475
                    nil
61569efc19f4 menu rearranged
tz
parents: 505
diff changeset
  1476
                )
61569efc19f4 menu rearranged
tz
parents: 505
diff changeset
  1477
            )
61569efc19f4 menu rearranged
tz
parents: 505
diff changeset
  1478
             #(#MenuItem
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1479
                #label: 'Generate'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1480
                #translateLabel: true
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1481
                #activeHelpKey: #generate
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1482
                #submenu: 
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1483
                 #(#Menu
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1484
                    
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1485
                     #(
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1486
                       #(#MenuItem
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1487
                          #label: 'Define Row Class...'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1488
                          #translateLabel: true
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1489
                          #value: #doDefineRowClass
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1490
                          #activeHelpKey: #fileDefineClass
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1491
                      )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1492
                       #(#MenuItem
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1493
                          #label: 'Browse Row Class'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1494
                          #translateLabel: true
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1495
                          #value: #doBrowseRowClass
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1496
                          #activeHelpKey: #browseRowClass
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1497
                      )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1498
                       #(#MenuItem
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1499
                          #label: '-'
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1500
                      )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1501
                       #(#MenuItem
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1502
                          #label: 'Generate Code'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1503
                          #translateLabel: true
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1504
                          #value: #doGenerateCode
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1505
                          #activeHelpKey: #generateCode
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1506
                      )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1507
                    ) nil
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1508
                    nil
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1509
                )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1510
            )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1511
             #(#MenuItem
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1512
                #label: 'Settings'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1513
                #translateLabel: true
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1514
                #activeHelpKey: #settings
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1515
                #submenu: 
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1516
                 #(#Menu
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1517
                    
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1518
                     #(
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1519
                       #(#MenuItem
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1520
                          #label: 'Fonts'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1521
                          #translateLabel: true
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1522
                          #submenuChannel: #menuFont
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1523
                      )
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1524
                    ) nil
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1525
                    nil
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1526
                )
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1527
            )
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1528
             #(#MenuItem
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1529
                #label: 'History'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1530
                #translateLabel: true
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1531
                #activeHelpKey: #history
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1532
                #submenuChannel: #menuHistory
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1533
            )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1534
             #(#MenuItem
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1535
                #label: 'Help'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1536
                #translateLabel: true
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1537
                #startGroup: #right
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1538
                #submenuChannel: #menuHelp
521
61569efc19f4 menu rearranged
tz
parents: 505
diff changeset
  1539
            )
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1540
          ) nil
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1541
          nil
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1542
      )
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1543
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1544
    "Modified: / 19.5.1998 / 23:10:01 / cg"
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1545
!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1546
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1547
menuEdit
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1548
    "This resource specification was automatically generated
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1549
     by the MenuEditor of ST/X."
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1550
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1551
    "Do not manually edit this!! If it is corrupted,
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1552
     the MenuEditor may not be able to read the specification."
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1553
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1554
    "
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1555
     MenuEditor new openOnClass:DataSetBuilder andSelector:#menuEdit
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1556
     (Menu new fromLiteralArrayEncoding:(DataSetBuilder menuEdit)) startUp
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1557
    "
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1558
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1559
    <resource: #menu>
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1560
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1561
    ^
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1562
     
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1563
       #(#Menu
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1564
          
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1565
           #(
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1566
             #(#MenuItem
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1567
                #label: 'Cut'
881
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
  1568
                #translateLabel: true
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1569
                #value: #doCut
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1570
                #activeHelpKey: #editCut
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1571
                #enabled: #isColumnSelected
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1572
            )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1573
             #(#MenuItem
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1574
                #label: 'Copy'
881
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
  1575
                #translateLabel: true
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1576
                #value: #doCopy
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1577
                #activeHelpKey: #editCopy
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1578
                #enabled: #isColumnSelected
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1579
            )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1580
             #(#MenuItem
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1581
                #label: 'Paste'
881
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
  1582
                #translateLabel: true
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1583
                #value: #doPaste
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1584
                #activeHelpKey: #editPaste
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1585
                #enabled: #valueOfHavingClipboard
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1586
            )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1587
             #(#MenuItem
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1588
                #label: 'Delete'
881
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
  1589
                #translateLabel: true
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1590
                #value: #doDelete
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1591
                #activeHelpKey: #editDelete
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1592
                #enabled: #valueOfHavingClipboard
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1593
            )
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1594
             #(#MenuItem
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1595
                #label: '-'
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1596
            )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1597
             #(#MenuItem
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1598
                #label: 'Move Up'
881
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
  1599
                #translateLabel: true
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1600
                #value: #doMoveColumn:
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1601
                #activeHelpKey: #editMoveUp
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1602
                #enabled: #isColumnSelected
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1603
                #argument: #up
881
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
  1604
                #labelImage: #(#ResourceRetriever #Icon #upIcon 'Move Up')
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1605
            )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1606
             #(#MenuItem
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1607
                #label: 'Move Down'
881
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
  1608
                #translateLabel: true
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1609
                #value: #doMoveColumn:
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1610
                #activeHelpKey: #editMoveDown
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1611
                #enabled: #isColumnSelected
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1612
                #argument: #down
881
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
  1613
                #labelImage: #(#ResourceRetriever #Icon #downIcon 'Move Down')
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1614
            )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1615
          ) nil
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1616
          nil
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1617
      )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1618
!
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1619
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1620
menuToolbar
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1621
    "This resource specification was automatically generated
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1622
     by the MenuEditor of ST/X."
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1623
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1624
    "Do not manually edit this!! If it is corrupted,
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1625
     the MenuEditor may not be able to read the specification."
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1626
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1627
    "
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1628
     MenuEditor new openOnClass:DataSetBuilder andSelector:#menuToolbar
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1629
     (Menu new fromLiteralArrayEncoding:(DataSetBuilder menuToolbar)) startUp
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1630
    "
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1631
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1632
    <resource: #menu>
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1633
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1634
    ^
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1635
     
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1636
       #(#Menu
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1637
          
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1638
           #(
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1639
             #(#MenuItem
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1640
                #label: 'New'
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1641
                #isButton: true
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1642
                #value: #doNew
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1643
                #activeHelpKey: #fileNew
881
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
  1644
                #labelImage: #(#ResourceRetriever #Icon #newIcon)
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1645
            )
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1646
             #(#MenuItem
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1647
                #label: 'Load'
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1648
                #isButton: true
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1649
                #value: #doLoad
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1650
                #activeHelpKey: #fileLoad
881
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
  1651
                #labelImage: #(#ResourceRetriever #Icon #loadIcon)
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1652
            )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1653
             #(#MenuItem
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1654
                #label: 'Save'
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1655
                #isButton: true
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1656
                #value: #doSave
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1657
                #activeHelpKey: #fileSave
881
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
  1658
                #labelImage: #(#ResourceRetriever #Icon #saveIcon)
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1659
            )
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1660
             #(#MenuItem
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1661
                #label: ''
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1662
            )
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1663
             #(#MenuItem
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1664
                #label: 'Cut'
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1665
                #isButton: true
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1666
                #value: #doCut
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1667
                #activeHelpKey: #editCut
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1668
                #enabled: #isColumnSelected
881
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
  1669
                #labelImage: #(#ResourceRetriever #Icon #cutIcon)
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1670
            )
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1671
             #(#MenuItem
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1672
                #label: 'Copy'
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1673
                #isButton: true
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1674
                #value: #doCopy
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1675
                #activeHelpKey: #editCopy
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1676
                #enabled: #isColumnSelected
881
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
  1677
                #labelImage: #(#ResourceRetriever #Icon #copyIcon)
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1678
            )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1679
             #(#MenuItem
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1680
                #label: 'Paste'
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1681
                #isButton: true
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1682
                #value: #doPaste
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1683
                #activeHelpKey: #editPaste
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1684
                #enabled: #valueOfCanPaste
881
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
  1685
                #labelImage: #(#ResourceRetriever #Icon #pasteIcon)
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1686
            )
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1687
             #(#MenuItem
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1688
                #label: 'Delete'
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1689
                #isButton: true
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1690
                #value: #doDelete
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1691
                #activeHelpKey: #editDelete
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1692
                #enabled: #isColumnSelected
881
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
  1693
                #labelImage: #(#ResourceRetriever #Icon #deleteIcon)
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1694
            )
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1695
             #(#MenuItem
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1696
                #label: ''
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1697
            )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1698
             #(#MenuItem
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1699
                #label: 'Add Column'
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1700
                #isButton: true
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1701
                #value: #doCreateColumn
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1702
                #activeHelpKey: #addColumn
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1703
                #enabled: #columnIsNotEditing
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1704
                #labelImage: #(#ResourceRetriever nil #newColumnIcon)
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1705
            )
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1706
             #(#MenuItem
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1707
                #label: ''
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1708
            )
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1709
             #(#MenuItem
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1710
                #label: 'Move Up'
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1711
                #isButton: true
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1712
                #value: #doMoveColumn:
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1713
                #activeHelpKey: #editMoveUp
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1714
                #enabled: #isColumnSelected
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1715
                #argument: #up
881
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
  1716
                #labelImage: #(#ResourceRetriever #Icon #upIcon)
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1717
            )
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1718
             #(#MenuItem
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1719
                #label: 'Move Down'
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1720
                #isButton: true
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1721
                #value: #doMoveColumn:
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1722
                #activeHelpKey: #editMoveDown
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1723
                #enabled: #isColumnSelected
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1724
                #argument: #down
881
9054767c0080 images moved to class Icon
tz
parents: 857
diff changeset
  1725
                #labelImage: #(#ResourceRetriever #Icon #downIcon)
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1726
            )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1727
          ) nil
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1728
          nil
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1729
      )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1730
! !
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1731
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1732
!DataSetBuilder methodsFor:'accessing'!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1733
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1734
columns
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1735
    "returns list of columns"
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1736
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1737
    ^ columns
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1738
!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1739
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1740
columns:aListOfColumns
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1741
    "setup columns from a column view"
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1742
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1743
    |list|
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1744
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1745
    columns    := OrderedCollection new.
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1746
    list       := self seqList.
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1747
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1748
    list removeAll.
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1749
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1750
    aListOfColumns size ~~ 0 ifTrue:[
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1751
        aListOfColumns do:[:aColumn||column|
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1752
            (column := aColumn) isSequenceable ifTrue:[
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1753
                column := DataSetColumnSpec new fromLiteralArrayEncoding:aColumn
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1754
            ] ifFalse:[
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1755
                column := aColumn copy
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1756
            ].
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1757
            columns add:column.
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1758
            list add:(self labelFromColumn:column).  
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1759
        ]
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1760
    ].
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1761
    self updateColumnView.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1762
333
a2e23dea36bf change className to rowClassName
ca
parents: 332
diff changeset
  1763
!
a2e23dea36bf change className to rowClassName
ca
parents: 332
diff changeset
  1764
a2e23dea36bf change className to rowClassName
ca
parents: 332
diff changeset
  1765
rowClassName
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1766
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1767
    ^(Smalltalk resolveName:rowClass inClass:self class) notNil ifTrue:[rowClass] ifFalse:[nil]
333
a2e23dea36bf change className to rowClassName
ca
parents: 332
diff changeset
  1768
!
a2e23dea36bf change className to rowClassName
ca
parents: 332
diff changeset
  1769
a2e23dea36bf change className to rowClassName
ca
parents: 332
diff changeset
  1770
rowClassName:aClassName
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1771
333
a2e23dea36bf change className to rowClassName
ca
parents: 332
diff changeset
  1772
    |cls|
a2e23dea36bf change className to rowClassName
ca
parents: 332
diff changeset
  1773
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1774
    rowSuperClass := nil.
333
a2e23dea36bf change className to rowClassName
ca
parents: 332
diff changeset
  1775
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1776
    (rowClass := aClassName) notNil ifTrue:[
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1777
        (cls := self resolveClassNamed) notNil 
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1778
            ifTrue: [rowSuperClass := cls superclass name asString] 
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1779
            ifFalse:[rowSuperClass := 'Object']
333
a2e23dea36bf change className to rowClassName
ca
parents: 332
diff changeset
  1780
    ]
a2e23dea36bf change className to rowClassName
ca
parents: 332
diff changeset
  1781
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1782
! !
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1783
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1784
!DataSetBuilder methodsFor:'aspects'!
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1785
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1786
columnIsNotEditing
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1787
    "returns a boolean value holder which is set to true if column is not editing"
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1788
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1789
    ^builder valueAspectFor:#columnIsNotEditing initialValue: true
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1790
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1791
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1792
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1793
!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1794
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1795
editorTypeList
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1796
    "generate list of supported editor types"
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1797
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1798
    |list|
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1799
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1800
    (list := builder bindingAt:#editorTypeList) isNil 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1801
    ifTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1802
    [
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1803
        list := OrderedCollection new.
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1804
        DataSetColumnSpec slices do:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1805
        [:aSlice||type|
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1806
            type := aSlice at:1.
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1807
            (list includes:type) ifFalse:[list add:type]
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1808
        ].
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1809
        builder aspectAt:#editorTypeList put:list
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1810
    ].
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1811
    ^list
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1812
!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1813
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1814
isColumnSelected
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1815
    "returns a boolean value holder which is set to true if something is modified
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1816
     and not accepted"
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1817
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1818
    ^builder valueAspectFor:#isColumnSelected initialValue: false
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1819
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1820
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1821
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1822
!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1823
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1824
rendererTypeList
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1825
    "generate list of supported renderer types"
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1826
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1827
    |list|
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1828
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1829
    (list := builder bindingAt:#rendererTypeList) isNil 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1830
    ifTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1831
    [
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1832
        list := OrderedCollection new.
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1833
        DataSetColumnSpec slices do:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1834
        [:aSlice||type|
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1835
            type := aSlice at:2.
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1836
            (list includes:type) ifFalse:[list add:type]
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1837
        ].
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1838
        builder aspectAt:#rendererTypeList put:list
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1839
    ].
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1840
    ^list
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1841
!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1842
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1843
selectedColumnModel
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1844
    "returns a value holder which keeps selected column"
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1845
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1846
    |holder|
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1847
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1848
    (holder := builder bindingAt:#selectedColumnModel) isNil ifTrue:[
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1849
        holder := AspectAdaptor new subject:self; forAspect:#selectedColumnIndex.
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1850
        builder aspectAt:#selectedColumnModel put:holder.
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1851
    ].
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1852
    ^ holder
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1853
!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1854
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1855
seqList
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1856
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1857
    |list|
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1858
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1859
    (list := builder bindingAt:#seqList) isNil ifTrue:[
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1860
        builder aspectAt:#seqList put:(list :=  List new).
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1861
    ].
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1862
    ^ list
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1863
!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1864
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1865
specChannel
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1866
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1867
    |holder|
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1868
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1869
    (holder := builder bindingAt:#specChannel) isNil ifTrue:[
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1870
        builder aspectAt:#specChannel put:(holder :=  ValueHolder new).
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1871
    ].
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1872
    ^ holder
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1873
!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1874
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  1875
style
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1876
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1877
    ^self aspectFor:#labelFont
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  1878
!
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  1879
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1880
tabList
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1881
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1882
    ^self class slices collect:[:aSlice|aSlice first]
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1883
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1884
! !
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1885
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1886
!DataSetBuilder methodsFor:'building'!
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1887
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1888
buildFromClass:aClass andSelector:aSelector
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1889
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1890
    |updateBlock cls list|
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1891
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1892
    selectedColumnIndex := 0.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1893
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1894
    updateBlock := [
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1895
        columns notEmpty ifTrue: [
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1896
            self tabModel value: 0. 
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1897
            self tabModel value: 1. 
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1898
            self selectedColumnModel value: nil.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1899
            self selectedColumnModel value: 1.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1900
            self updateColumnView.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1901
            self updateInputFields.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1902
            self updateInfoLabel.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1903
            self updateHistory
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1904
        ]
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1905
    ].
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1906
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1907
    "if opened on table columns"  
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1908
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1909
    aClass isNil ifTrue: [ 
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1910
        self tabModel value: 0. 
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1911
        self columns removeAll.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1912
        self seqList removeAll.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1913
        self updateColumnView.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1914
        self updateInfoLabel.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1915
        self specChannel value:nil.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1916
        self isColumnSelected value: false.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1917
        ^self
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1918
    ].
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1919
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1920
    specSelector isNil ifTrue: [updateBlock value. ^self].
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1921
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1922
    list := nil.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1923
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1924
    (aClass notNil or:[self isStandAlone or:[self window shown]]) ifTrue:[
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1925
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1926
        (aClass notNil and:[aSelector notNil]) ifTrue:[
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1927
            cls := self resolveName:aClass.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1928
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1929
            (cls respondsTo:aSelector) ifTrue:[
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1930
                list := cls perform:aSelector        
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1931
            ]
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1932
        ]
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1933
    ] ifFalse:[
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1934
        list := columns
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1935
    ].
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1936
    self columns:list.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1937
    updateBlock value
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1938
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1939
!
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1940
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1941
buildFromResourceSpec:aResourceSpec
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1942
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1943
    self columns:aResourceSpec.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1944
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1945
    columns notEmpty ifTrue: [
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1946
        self tabModel value: 1. 
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1947
        self selectedColumnModel value: nil.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1948
        self selectedColumnModel value: 1.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1949
        self updateInputFields.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1950
        self updateInfoLabel.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1951
        self updateHistory
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1952
    ]
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1953
! !
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1954
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1955
!DataSetBuilder methodsFor:'change & update'!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1956
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1957
update:something with:aParameter from:someObject
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1958
    "one of my aspects has changed; update modified channel"
413
ac37b2a972ff select first column item after opening
tz
parents: 409
diff changeset
  1959
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1960
    super update:something with:aParameter from:someObject.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1961
600
82bca69d8d37 enable commit buttons
tz
parents: 597
diff changeset
  1962
    self columnIsNotEditing value: false
82bca69d8d37 enable commit buttons
tz
parents: 597
diff changeset
  1963
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1964
! !
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1965
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1966
!DataSetBuilder methodsFor:'code generation'!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1967
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1968
compile:aCode forClass:aClass inCategory:aCategory
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1969
    "compile method for class in a category"
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1970
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1971
    ByteCodeCompiler compile:aCode withCRs forClass:aClass inCategory:aCategory
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1972
!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1973
380
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  1974
generateBackgroundSelectorIn:aClass
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1975
    "generate code for #backgroundSelector"
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1976
380
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  1977
    |sel catg code bCode|
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  1978
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  1979
    catg := 'accessing look' asSymbol.
380
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  1980
    code :=   '\'
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  1981
            , '    "automatically generated by DataSetBuilder ..."\'
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  1982
            , '\'
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  1983
            , '    "specific background color for a cell"\'
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  1984
            , '\'
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  1985
            .
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  1986
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1987
    columns do:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1988
    [:aColumn|
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1989
        ((sel := aColumn backgroundSelector) notNil and:[(aClass implements:sel) not]) 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1990
        ifTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1991
        [
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  1992
            bCode := sel asString, code, '    ^nil'.
380
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  1993
            self compile:bCode forClass:aClass inCategory:catg
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  1994
        ]
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  1995
    ]
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  1996
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  1997
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  1998
!
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  1999
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2000
generateChoicesIn:aClass
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2001
    "generate code for #choices"
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2002
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2003
    |sel catg code|
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2004
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2005
    catg := 'accessing menu' asSymbol.
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2006
    code :=   '\'
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2007
            , '    "automatically generated by DataSetBuilder ..."\'
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2008
            , '\'
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2009
            , '    "get choices for visual editor; (a list of labels)\'
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2010
            , '\'
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2011
            , '    ^nil'
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2012
            .
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2013
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2014
    columns do:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2015
    [:aColumn|
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2016
        (aColumn canSelect
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2017
        and:[aColumn rendererType ~~ #rowSelector
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2018
        and:[(sel := aColumn choices) notNil
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2019
        and:[(aClass implements:sel) not]]]) 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2020
        ifTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2021
        [
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2022
            self compile:(sel asString, code) forClass:aClass inCategory:catg
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2023
        ]
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2024
    ]
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2025
!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2026
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2027
generateDoubleClickSelectorIn:aClass
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2028
    "generate code for #foregroundSelector"
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2029
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2030
    |sel catg code bCode|
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2031
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2032
    catg := 'accessing action' asSymbol.
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2033
    code :=   '\'
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2034
            , '    "automatically generated by DataSetBuilder ..."\'
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2035
            , '\'
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2036
            , '    "specific selector to be called on double click"\'
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2037
            , '\'
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2038
            .
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2039
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2040
    columns do:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2041
    [:aColumn|
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2042
        ((sel := aColumn doubleClickedSelector) notNil 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2043
        and:[(aClass implements:sel) not]) 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2044
        ifTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2045
        [
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2046
            bCode := sel asString, code.
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2047
            self compile:bCode forClass:aClass inCategory:catg
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2048
        ]
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2049
    ]
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2050
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2051
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2052
!
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2053
380
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  2054
generateForegroundSelectorIn:aClass
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  2055
    "generate code for #foregroundSelector
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  2056
    "
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  2057
    |sel catg code bCode|
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  2058
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2059
    catg := 'accessing look' asSymbol.
380
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  2060
    code :=   '\'
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  2061
            , '    "automatically generated by DataSetBuilder ..."\'
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  2062
            , '\'
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  2063
            , '    "specific foreground color for a cell"\'
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  2064
            , '\'
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  2065
            .
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  2066
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2067
    columns do:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2068
    [:aColumn|
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2069
        ((sel := aColumn foregroundSelector) notNil 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2070
        and:[(aClass implements:sel) not]) 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2071
        ifTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2072
        [
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2073
            bCode := sel asString, code, '    ^nil'.
380
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  2074
            self compile:bCode forClass:aClass inCategory:catg
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  2075
        ]
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  2076
    ]
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  2077
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  2078
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  2079
!
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
  2080
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2081
generateMenuIn:aClass
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2082
    "generate code for #menu"
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2083
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2084
    |sel catg code|
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2085
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2086
    catg := 'accessing menu' asSymbol.
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2087
    code :=   '\'
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2088
            , '    "automatically generated by DataSetBuilder ..."\'
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2089
            , '\'
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2090
            , '    "get middleButton menu for selected cell in column"\'
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2091
            , '\'
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2092
            , '    ^nil'
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2093
            .
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2094
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2095
    columns do:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2096
    [:aColumn|
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2097
        (aColumn canSelect
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2098
        and:[(sel := aColumn menu) notNil
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2099
        and:[(aClass implements:sel) not]]) 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2100
        ifTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2101
        [
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2102
            self compile:(sel asString, code) forClass:aClass inCategory:catg
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2103
        ]
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2104
    ]
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2105
!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2106
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2107
generatePrintSelectorIn:aClass
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2108
    "generate code for #printSelector"
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2109
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2110
    |sel catg code|
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2111
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2112
    catg := 'accessing' asSymbol.
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2113
    code :=   'aGC\'
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2114
            , '    "automatically generated by DataSetBuilder ..."\'
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2115
            , '\'
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2116
            , '    "get drawable image or text on a gc"\'
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2117
            , '\'
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2118
            , '    ^nil'
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2119
            .
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2120
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2121
    columns do:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2122
    [:aColumn|
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2123
        (aColumn rendererType ~~ #rowSelector
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2124
        and:[(sel := aColumn printSelector) notNil
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2125
        and:[(aClass implements:sel) not]]) 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2126
        ifTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2127
        [
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2128
            self compile:(sel asString, code) forClass:aClass inCategory:catg
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2129
        ]
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2130
    ]
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2131
!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2132
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2133
generateReadSelectorIn:aClass
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2134
    "generate code for #readSelector"
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2135
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2136
    |sel catg code bCode|
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2137
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2138
    catg := 'accessing' asSymbol.
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2139
    code :=   '\'
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2140
            , '    "automatically generated by DataSetBuilder ..."\'
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2141
            , '\'
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2142
            , '    "get value"\'
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2143
            , '\'
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2144
            .
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2145
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2146
    columns do:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2147
    [:aColumn|
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2148
        (aColumn rendererType ~~ #rowSelector 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2149
        and:[(sel := aColumn readSelector) notNil
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2150
        and:[(aClass implements:sel) not]]) 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2151
        ifTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2152
        [
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2153
            (aColumn printSelector isNil or:[aColumn canSelect]) 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2154
            ifTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2155
            [
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2156
                sel numArgs == 0 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2157
                    ifTrue: [bCode := sel asString, code] 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2158
                    ifFalse:[bCode := sel asString, 'anIndex\', code].
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2159
                aColumn rendererType == #CheckToggle 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2160
                    ifFalse:[bCode := bCode, '    ^nil'] 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2161
                    ifTrue: [bCode := bCode, '    ^true']. 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2162
                self compile:bCode forClass:aClass inCategory:catg
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2163
            ]
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2164
        ]
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2165
    ]
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2166
!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2167
377
5cbb117efc19 refine selection on row base:
ca
parents: 370
diff changeset
  2168
generateSelectSelectorIn:aClass
5cbb117efc19 refine selection on row base:
ca
parents: 370
diff changeset
  2169
    "generate code for #selectSelector
5cbb117efc19 refine selection on row base:
ca
parents: 370
diff changeset
  2170
    "
5cbb117efc19 refine selection on row base:
ca
parents: 370
diff changeset
  2171
    |sel catg code bCode|
5cbb117efc19 refine selection on row base:
ca
parents: 370
diff changeset
  2172
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2173
    catg := 'accessing selection' asSymbol.
377
5cbb117efc19 refine selection on row base:
ca
parents: 370
diff changeset
  2174
    code :=   '\'
5cbb117efc19 refine selection on row base:
ca
parents: 370
diff changeset
  2175
            , '    "automatically generated by DataSetBuilder ..."\'
5cbb117efc19 refine selection on row base:
ca
parents: 370
diff changeset
  2176
            , '\'
5cbb117efc19 refine selection on row base:
ca
parents: 370
diff changeset
  2177
            , '    "can select cell in column"\'
5cbb117efc19 refine selection on row base:
ca
parents: 370
diff changeset
  2178
            , '\'
5cbb117efc19 refine selection on row base:
ca
parents: 370
diff changeset
  2179
            .
5cbb117efc19 refine selection on row base:
ca
parents: 370
diff changeset
  2180
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2181
    columns do:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2182
    [:aColumn|
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2183
        (aColumn rendererType ~~ #rowSelector 
377
5cbb117efc19 refine selection on row base:
ca
parents: 370
diff changeset
  2184
         and:[(sel := aColumn selectSelector) notNil
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2185
         and:[(aClass implements:sel) not]]) 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2186
         ifTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2187
         [
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2188
            aColumn canSelect 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2189
            ifTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2190
            [
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2191
                bCode := sel asString, code, '    ^true'.
377
5cbb117efc19 refine selection on row base:
ca
parents: 370
diff changeset
  2192
                self compile:bCode forClass:aClass inCategory:catg
5cbb117efc19 refine selection on row base:
ca
parents: 370
diff changeset
  2193
            ]
5cbb117efc19 refine selection on row base:
ca
parents: 370
diff changeset
  2194
        ]
5cbb117efc19 refine selection on row base:
ca
parents: 370
diff changeset
  2195
    ]
5cbb117efc19 refine selection on row base:
ca
parents: 370
diff changeset
  2196
!
5cbb117efc19 refine selection on row base:
ca
parents: 370
diff changeset
  2197
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2198
generateWriteSelectorIn:aClass
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2199
    "generate code for #writeSelector"
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2200
379
1a24037cd490 support of writeSelector
ca
parents: 377
diff changeset
  2201
    |sel catg code bCode sz|
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2202
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  2203
    catg := 'accessing' asSymbol.
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2204
    code :=   'aValue\'
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2205
            , '    "automatically generated by DataSetBuilder ..."\'
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2206
            , '\'
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2207
            , '    "set value"\'
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2208
            .
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2209
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2210
    columns do:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2211
    [:aColumn|
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2212
        ((sel := aColumn writeSelector) notNil
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2213
         and:[aColumn canSelect
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2214
         and:[(aClass implements:sel) not]]) 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2215
        ifTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2216
        [
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2217
            sel numArgs == 1 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2218
            ifTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2219
            [
379
1a24037cd490 support of writeSelector
ca
parents: 377
diff changeset
  2220
                bCode := sel asString
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2221
            ] 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2222
            ifFalse:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2223
            [
379
1a24037cd490 support of writeSelector
ca
parents: 377
diff changeset
  2224
                sz := sel indexOf:$:.
1a24037cd490 support of writeSelector
ca
parents: 377
diff changeset
  2225
                bCode := sel copyTo:sz.
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2226
                bCode := bCode, 'anIndex ', (sel copyFrom:sz + 1)
379
1a24037cd490 support of writeSelector
ca
parents: 377
diff changeset
  2227
            ].
1a24037cd490 support of writeSelector
ca
parents: 377
diff changeset
  2228
            self compile:(bCode, code) forClass:aClass inCategory:catg
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2229
        ]
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2230
    ]
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2231
! !
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2232
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2233
!DataSetBuilder methodsFor:'initialization'!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2234
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2235
initialize
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2236
    "initializes"
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2237
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2238
    super initialize.
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2239
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2240
    selectedColumnIndex := 0.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2241
    columns := OrderedCollection new.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2242
    modalOpened := false
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2243
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2244
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2245
! !
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2246
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2247
!DataSetBuilder methodsFor:'private'!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2248
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2249
askForListModification
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2250
    "asks for resource modification"
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  2251
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2252
    modalOpened
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2253
    ifFalse:
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  2254
    [
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2255
        ^super askForListModification
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  2256
    ].
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  2257
    ^true
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  2258
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  2259
!
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  2260
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2261
labelFromColumn:aColumn
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2262
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2263
    ^ aColumn rendererType == #rowSelector 
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2264
        ifFalse:[aColumn label]
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2265
        ifTrue: ['Row Selector'].
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2266
!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2267
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2268
updateColumnView
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2269
    "updates column view from column descriptions"   
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2270
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2271
    columnView notNil ifTrue:[
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2272
        |previewColumns columnItems columnList|
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2273
        columnList     := List new.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2274
        previewColumns := columns deepCopy.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2275
        columns notEmpty
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2276
        ifTrue:
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2277
        [               
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2278
            previewColumns do: 
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2279
            [:column| 
857
eabfba82d601 set #choices to nil for the preview
tz
parents: 856
diff changeset
  2280
                column readSelector:  #at:;
eabfba82d601 set #choices to nil for the preview
tz
parents: 856
diff changeset
  2281
                    writeSelector: #at:put:;
eabfba82d601 set #choices to nil for the preview
tz
parents: 856
diff changeset
  2282
                    backgroundSelector:nil;
eabfba82d601 set #choices to nil for the preview
tz
parents: 856
diff changeset
  2283
                    foregroundSelector:nil;
eabfba82d601 set #choices to nil for the preview
tz
parents: 856
diff changeset
  2284
                    selectSelector: nil;
eabfba82d601 set #choices to nil for the preview
tz
parents: 856
diff changeset
  2285
                    doubleClickedSelector: nil;
eabfba82d601 set #choices to nil for the preview
tz
parents: 856
diff changeset
  2286
                    printSelector: nil;
eabfba82d601 set #choices to nil for the preview
tz
parents: 856
diff changeset
  2287
                    menu: nil;
eabfba82d601 set #choices to nil for the preview
tz
parents: 856
diff changeset
  2288
                    choices: nil
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2289
            ].
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2290
            #('1' '2' '...' 'x') do:
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2291
            [:suffix|
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2292
                columnItems := Array new: previewColumns size.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2293
                1 to: previewColumns size do: [:i| columnItems at: i put: (previewColumns at: i) label ? 'Cell', suffix].
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2294
                columnList add: columnItems.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2295
            ]
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2296
        ].
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2297
        columnView list: #().
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2298
        columnView columnDescriptors: previewColumns.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2299
        columnView list: columnList.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2300
    ]
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2301
!
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2302
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2303
updateInputFields
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2304
    "reloads item value into input fields"
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2305
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2306
    |column|
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2307
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2308
    (column := self selectedColumn) isNil 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2309
    ifTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2310
    [
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2311
        self tabModel value:0.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2312
    ] 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2313
    ifFalse:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2314
    [
600
82bca69d8d37 enable commit buttons
tz
parents: 597
diff changeset
  2315
        aspects keysAndValuesDo:[:aKey :aModel|aModel value:(column perform:aKey) withoutNotifying: self].
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2316
        tabSelection == 0 ifTrue:[self tabModel value:1]
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2317
    ]
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2318
! !
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2319
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2320
!DataSetBuilder methodsFor:'selection'!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2321
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2322
selectedColumn
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2323
    "returns selected column or nil"
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2324
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2325
    ^selectedColumnIndex == 0 
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2326
        ifFalse:[columns at:selectedColumnIndex ifAbsent: nil]
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2327
        ifTrue: [nil]
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2328
!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2329
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2330
selectedColumnIndex
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2331
    "returns selected column index or 0"
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2332
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2333
    ^selectedColumnIndex
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2334
!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2335
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2336
selectedColumnIndex:something
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2337
    "changes selected column and update specifications"
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2338
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2339
    something == selectedColumnIndex 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2340
    ifFalse:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2341
    [
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2342
        selectedColumnIndex := something ? 0.
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  2343
        self isColumnSelected value: true
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2344
    ]
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2345
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2346
!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2347
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2348
tabSelection:something
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2349
    "changes selected tab and set corresponding specification"
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2350
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2351
    |specSelector|
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2352
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2353
    something == tabSelection ifTrue:[^self].
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2354
    self selectedColumn isNil 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2355
    ifTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2356
    [
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2357
        tabSelection == 0 ifTrue:[^self].
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2358
        tabSelection := 0
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2359
    ] 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2360
    ifFalse:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2361
    [
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2362
        (tabSelection := something) ~~ 0 
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2363
            ifTrue: [specSelector := (self class slices at:tabSelection) last]
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2364
    ].
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2365
    self specChannel value:specSelector.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2366
    (self window notNil and: [self window shown]) ifTrue: [self updateFonts]
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2367
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2368
! !
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2369
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  2370
!DataSetBuilder methodsFor:'startup / release'!
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  2371
826
6c879f404dfe checkin from browser
tz
parents: 825
diff changeset
  2372
openModal
6c879f404dfe checkin from browser
tz
parents: 825
diff changeset
  2373
    "sets the modalOpened flag, so later, 
6c879f404dfe checkin from browser
tz
parents: 825
diff changeset
  2374
     there is no need to ask for saving into a class"
6c879f404dfe checkin from browser
tz
parents: 825
diff changeset
  2375
6c879f404dfe checkin from browser
tz
parents: 825
diff changeset
  2376
    modalOpened := true.
6c879f404dfe checkin from browser
tz
parents: 825
diff changeset
  2377
6c879f404dfe checkin from browser
tz
parents: 825
diff changeset
  2378
    super openModal
6c879f404dfe checkin from browser
tz
parents: 825
diff changeset
  2379
6c879f404dfe checkin from browser
tz
parents: 825
diff changeset
  2380
6c879f404dfe checkin from browser
tz
parents: 825
diff changeset
  2381
!
6c879f404dfe checkin from browser
tz
parents: 825
diff changeset
  2382
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2383
openModalOnResourceSpec: aListSpec
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2384
    "sets the modalOpened flag, so later, 
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2385
     there is no need to ask for saving into a class"
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2386
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2387
    modalOpened := true.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2388
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2389
    super openModalOnResourceSpec: aListSpec
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2390
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2391
409
6fbb954fdd75 column save request after close request
tz
parents: 408
diff changeset
  2392
!
6fbb954fdd75 column save request after close request
tz
parents: 408
diff changeset
  2393
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  2394
postBuildWith:builder
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  2395
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2396
    columnView := self builder componentAt:#columnView.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2397
    columnView labelView enabled:false.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2398
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  2399
    super postBuildWith:builder.
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  2400
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2401
    (builder componentAt: #labelAndColumns) 
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2402
        selectConditionBlock: [:i|self askForItemModification];
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2403
        action: [:i|self cancel];
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2404
        selection: 1.
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  2405
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  2406
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2407
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  2408
! !
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  2409
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2410
!DataSetBuilder methodsFor:'user actions'!
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2411
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2412
accept
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2413
    "accept changes made"
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2414
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2415
    |column type|
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2416
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2417
    super accept.
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2418
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2419
    (column := self selectedColumn) isNil ifTrue: [^self cancel].
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2420
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2421
    type := (aspects at:#rendererType) value.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2422
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2423
    type == #rowSelector ifTrue:[
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2424
        #(label width minWidth editorType choices readSelector writeSelector printSelector
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2425
          formatString type size height canSelect selectSelector
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2426
         ) do:[:aKey|
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2427
            (aspects at:aKey) value:nil
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2428
        ]
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2429
    ].
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2430
    aspects keysAndValuesDo:[:aKey :aModel| column perform:(aKey , ':') asSymbol with: aModel value].
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2431
    self seqList at:selectedColumnIndex put:(self labelFromColumn:column).
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2432
    self updateColumnView.
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2433
    self cancel.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2434
    modified := true.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2435
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2436
!
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2437
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2438
cancel
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2439
    "remove all changes and reload selected column values"
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2440
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2441
    self updateInputFields.
421
b8094b7c7fe7 commit buttons moved as subSpec to ToolApplicationModel
tz
parents: 419
diff changeset
  2442
    self valueOfEnablingCommitButtons value:false.
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2443
    self columnIsNotEditing value: true.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2444
!
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2445
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2446
doBrowseRowClass
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2447
    "browse class of columns spec"
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2448
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2449
    |cls|
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2450
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2451
    (cls := self resolveClassNamed) notNil 
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2452
        ifTrue: [SystemBrowser openInClass:cls] 
842
b412ee25ae80 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 831
diff changeset
  2453
        ifFalse:[self information:'No class defined !!']
b412ee25ae80 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 831
diff changeset
  2454
b412ee25ae80 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 831
diff changeset
  2455
    "Modified: / 20.5.1998 / 03:48:04 / cg"
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2456
!
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2457
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2458
doCopy
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2459
    "copy selected column to the clipboard"
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2460
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2461
    |idx|
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2462
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2463
    (idx := selectedColumnIndex) ~~ 0 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2464
    ifTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2465
    [
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2466
        self clipboard: (columns at: idx) deepCopy
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2467
    ]
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2468
!
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2469
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2470
doCreateColumn
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2471
    "create a new column after selected column or at left (nothing selected)"
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2472
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2473
    |label list|
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2474
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2475
    list := self seqList.
554
34ceed6455fa numerating labels changed
tz
parents: 550
diff changeset
  2476
    label := 'Column ', (list size + 1) printString.
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2477
    columns add:(DataSetColumnSpec label:label selector:nil) afterIndex:selectedColumnIndex.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2478
    self seqList add:label afterIndex:selectedColumnIndex.
421
b8094b7c7fe7 commit buttons moved as subSpec to ToolApplicationModel
tz
parents: 419
diff changeset
  2479
    self valueOfEnablingCommitButtons value ifFalse:[self selectedColumnModel value:selectedColumnIndex + 1].
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2480
    self cancel.
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2481
    self updateColumnView.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2482
    modified := true.
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2483
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2484
!
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2485
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2486
doCut
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2487
    "remove selected column and put it to the clipboard"
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2488
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2489
    |idx|
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2490
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2491
    ((idx := selectedColumnIndex) ~~ 0 and: [self askForItemModification]) 
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2492
    ifTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2493
    [
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2494
        self selectedColumnModel value:0.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2495
        self clipboard: (columns at: idx).
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2496
        columns removeIndex:idx.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2497
        self seqList removeIndex:idx.
555
54dbb4838d23 after cutting stay selection
tz
parents: 554
diff changeset
  2498
        columns size > 0 ifTrue: [self selectedColumnModel value: ((idx - 1) max: 1)].
556
914a2f26aa72 isModified is obselete
tz
parents: 555
diff changeset
  2499
        self updateColumnView.
555
54dbb4838d23 after cutting stay selection
tz
parents: 554
diff changeset
  2500
        self updateInputFields.
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2501
        columns isEmpty ifTrue: [self isColumnSelected value: false].
555
54dbb4838d23 after cutting stay selection
tz
parents: 554
diff changeset
  2502
        self cancel.
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2503
        modified := true.
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2504
    ]
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2505
!
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2506
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2507
doDefineRowClass
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2508
    "launch a dialog to define class and superclass"
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2509
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2510
    |aspects cls oldClass oldSuper|
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2511
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2512
    aspects  := IdentityDictionary new.
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2513
    oldClass := rowClass.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2514
    oldSuper := rowSuperClass.
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2515
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2516
    [true] 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2517
    whileTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2518
    [
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2519
        rowClass notNil 
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2520
        ifTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2521
        [
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2522
            (cls := self resolveClassNamed) notNil 
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2523
            ifTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2524
            [
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2525
                rowSuperClass := cls superclass name asString
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2526
            ].
846
c028ad61ac0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  2527
            aspects at:#classNameChannel put:(ValueHolder with:rowClass)
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2528
        ] 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2529
        ifFalse:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2530
        [
846
c028ad61ac0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  2531
            aspects at:#classNameChannel put:(ValueHolder with:'DSVRow')
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2532
        ].
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2533
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2534
        rowSuperClass notNil 
846
c028ad61ac0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  2535
            ifTrue: [aspects at:#superclassNameChannel put:(ValueHolder with:rowSuperClass)] 
c028ad61ac0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  2536
            ifFalse:[aspects at:#superclassNameChannel put:(ValueHolder with:'Object')].
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2537
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2538
        (self openDialogInterface:#defineClassNameSpec withBindings:aspects) 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2539
        ifFalse:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2540
        [
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2541
            rowClass := oldClass.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2542
            rowSuperClass := oldSuper.
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2543
            ^self
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2544
        ].
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2545
        rowClass      := ((aspects at:#classNameChannel) value)      withoutSeparators.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2546
        rowSuperClass := ((aspects at:#superclassNameChannel) value) withoutSeparators.
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2547
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2548
        rowClass size == 0 
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2549
        ifTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2550
        [
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2551
            rowClass := nil.
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2552
            self information:'no valid className'
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2553
        ] 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2554
        ifFalse: 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2555
        [
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2556
            cls := self resolveClassNamed.
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2557
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2558
            cls notNil ifTrue:[cls := cls superclass name asString].
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2559
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2560
            rowSuperClass size == 0 
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2561
            ifTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2562
            [        
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2563
                cls notNil ifTrue:[
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2564
                    rowSuperClass := cls
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2565
                ] ifFalse:[
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2566
                    rowSuperClass := 'Object'
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2567
                ].
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2568
                self information: 'set superclassName'
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2569
            ] 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2570
            ifFalse:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2571
            [
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2572
                (cls isNil or:[rowSuperClass = cls]) ifTrue:[^self].
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2573
                self information:('A global named ' , rowClass , ' exists,\' ,
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2574
                                  'but is not a subclass of ' , rowSuperClass, '.\\' ,
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2575
                                  'Check and try again if that is not what you want.') withCRs.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2576
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2577
                rowSuperClass := cls
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2578
            ]
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2579
        ]
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2580
    ]
846
c028ad61ac0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  2581
c028ad61ac0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  2582
    "Modified: / 21.5.1998 / 03:08:42 / cg"
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2583
!
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2584
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2585
doDelete
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2586
    "remove selected column and put it to the clipboard"
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2587
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2588
    |idx|
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2589
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2590
    ((idx := selectedColumnIndex) ~~ 0 and: [self askForItemModification]) 
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2591
    ifTrue:
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2592
    [
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2593
        self selectedColumnModel value:0.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2594
        columns removeIndex:idx.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2595
        self seqList removeIndex:idx.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2596
        columns size > 0 ifTrue: [self selectedColumnModel value: ((idx - 1) max: 1)].
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2597
        self updateColumnView.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2598
        self updateInputFields.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2599
        columns isEmpty ifTrue: [self isColumnSelected value: false].
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2600
        self cancel.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2601
        modified := true.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2602
    ]
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2603
!
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2604
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2605
doGenerateCode
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2606
    "generate code for column values"
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2607
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2608
    |cls superclass|
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2609
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2610
    rowClass isNil ifTrue:[^self information:'No class defined!!'].
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2611
    cls := self resolveClassNamed.
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2612
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2613
    cls isNil 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2614
    ifTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2615
    [
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2616
        superclass := Smalltalk resolveName:rowSuperClass inClass:self class.
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2617
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2618
        superclass isNil ifTrue:[^self information:'No superclass defined!!'].
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2619
        (self confirm:'create ' , rowClass , ' ?') ifFalse:[^self].
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2620
        cls := superclass subclass:rowClass asSymbol
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2621
                     instanceVariableNames:''
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2622
                     classVariableNames:''
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2623
                     poolDictionaries:''
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2624
                     category:'Applications'.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2625
    ].
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2626
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2627
    self generateChoicesIn:cls.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2628
    self generateMenuIn:cls.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2629
    self generatePrintSelectorIn:cls.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2630
    self generateReadSelectorIn:cls.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2631
    self generateBackgroundSelectorIn:cls.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2632
    self generateForegroundSelectorIn:cls.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2633
    self generateSelectSelectorIn:cls.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2634
    self generateWriteSelectorIn:cls.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2635
    self generateDoubleClickSelectorIn:cls.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2636
!
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2637
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2638
doMoveColumn:upOrDown
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2639
    "move selected column up or down"
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2640
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2641
    |idx list label col size|
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2642
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2643
    (idx := selectedColumnIndex) == 0 ifTrue:[^self].
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2644
    list := self seqList.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2645
    size := list size.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2646
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2647
    size == 1 ifTrue:[^self].
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2648
    selectedColumnIndex := 0.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2649
    label := list at:idx.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2650
    col   := columns at:idx.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2651
    list    removeIndex:idx.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2652
    columns removeIndex:idx.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2653
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2654
    upOrDown == #up 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2655
    ifTrue:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2656
    [
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2657
        idx == 1 ifTrue:[idx := size]
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2658
                ifFalse:[idx := idx - 1]
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2659
    ] 
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2660
    ifFalse:
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2661
    [
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2662
        idx == size ifTrue:[idx := 1]
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2663
                   ifFalse:[idx := idx + 1]
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2664
    ].
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2665
    columns add:col   beforeIndex:idx.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2666
    list    add:label beforeIndex:idx.  
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2667
    self selectedColumnModel value:idx.
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2668
    self updateColumnView.
856
cb620acf3397 set modified flag after moving up or down a column
tz
parents: 846
diff changeset
  2669
    modified := true.
cb620acf3397 set modified flag after moving up or down a column
tz
parents: 846
diff changeset
  2670
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2671
!
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2672
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2673
doPaste
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2674
    "paste clipboard copy column after selected column or at left (nothing selected)"
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2675
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2676
    |col lbl|
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2677
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2678
    self askForItemModification ifFalse: [^nil].
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2679
    col := self class clipboard deepCopy.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2680
    lbl := self labelFromColumn:col.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2681
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2682
    columns add:col afterIndex:selectedColumnIndex.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2683
    self seqList add:lbl afterIndex:selectedColumnIndex.
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2684
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2685
    self valueOfEnablingCommitButtons value ifFalse:[
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2686
        self selectedColumnModel value:selectedColumnIndex + 1
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2687
    ].
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2688
    self updateColumnView.
556
914a2f26aa72 isModified is obselete
tz
parents: 555
diff changeset
  2689
    self updateInputFields.
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2690
    modified := true.
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  2691
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2692
!
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2693
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2694
doPickColumns
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2695
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2696
    |view cls|
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2697
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2698
    view := Screen current viewFromUser.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2699
    cls  := view class.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2700
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2701
    (cls == DSVColumnView or:[cls == DataSetView or:[cls == DSVLabelView]]) ifTrue:[
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2702
        self columns:(view columnView columnDescriptors)
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2703
    ]
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2704
!
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2705
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2706
doSave
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2707
    |cls dst spc idx category mthd excla code resourceType|
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2708
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2709
    (columns size ~~ 0 and:[super doSave]) ifFalse:[
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2710
        ^ nil
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2711
    ].
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2712
    cls := self resolveName:specClass.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2713
    dst := columns collect:[:aCol| aCol literalArrayEncoding ].
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2714
    spc := WriteStream on:String new.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2715
    UISpecification prettyPrintSpecArray:dst asArray on:spc indent:4.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2716
    spc := spc contents.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2717
    idx := (spc indexOfNonSeparatorStartingAt:1) - 2.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2718
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2719
    spc at:idx put:$^.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2720
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2721
    "/ if that method already exists, do not overwrite the category
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2722
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2723
    resourceType := self class resourceType.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2724
    category     := resourceType, ' specs'.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2725
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2726
    (mthd := cls class compiledMethodAt:specSelector) notNil ifTrue:[
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2727
        category := mthd category.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2728
    ].
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2729
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2730
    excla := Character excla asString.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2731
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2732
    code := excla
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2733
            , (cls name , ' class methodsFor:' , category storeString)
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2734
            , excla , '\\'
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2735
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2736
            , specSelector , '\'
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2737
            , (self class codeGenerationComment replChar:$!! withString:'!!!!')
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2738
            , '\\    "\'
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2739
            , ('     DataSetBuilder new openOnClass:' , cls name , ' andSelector:#' , specSelector , '\')
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2740
            , '    "\'.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2741
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2742
    code := code 
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2743
            , '\'
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2744
            , '    <resource: #', resourceType, '>\\'
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2745
            , spc
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2746
            , '\'
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2747
            , (excla , ' ' , excla)
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2748
            , '\\'.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2749
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2750
    code := code withCRs.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2751
    (ReadStream on:code) fileIn.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2752
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2753
"/    self isStandAlone ifTrue: [self helpTool installHelpSpecsOnClass:self specClass].
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2754
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2755
    self updateHistory.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2756
    self updateInfoLabel.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2757
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2758
    hasSaved := true.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2759
    modified := false.
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  2760
419
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2761
! !
34cc530118c6 I hope this one runs
tz
parents: 417
diff changeset
  2762
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2763
!DataSetBuilder class methodsFor:'documentation'!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2764
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2765
version
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2766
    ^ '$Header$'
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  2767
! !