DataSetBuilder.st
author tz
Tue, 02 Jun 1998 13:28:52 +0200
changeset 856 cb620acf3397
parent 846 c028ad61ac0e
child 857 eabfba82d601
permissions -rw-r--r--
set modified flag after moving up or down a column
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
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   257
!DataSetBuilder class methodsFor:'interface specs'!
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   258
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   259
basicsEditSpec
817
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   260
    "This resource specification was automatically generated
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   261
     by the UIPainter of ST/X."
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   262
817
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   263
    "Do not manually edit this!! If it is corrupted,
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   264
     the UIPainter may not be able to read the specification."
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   265
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   266
    "
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   267
     UIPainter new openOnClass:DataSetBuilder andSelector:#basicsEditSpec
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   268
     DataSetBuilder new openInterface:#basicsEditSpec
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   269
    "
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   270
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   271
    <resource: #canvas>
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   272
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   273
    ^
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   274
     
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   275
       #(#FullSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   276
          #window: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   277
           #(#WindowSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   278
              #name: 'DataSet Basic'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   279
              #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
   280
              #label: 'DataSet Basic'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   281
              #min: #(#Point 10 10)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   282
              #max: #(#Point 1280 1024)
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   283
              #bounds: #(#Rectangle 216 173 539 500)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   284
              #usePreferredExtent: false
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   285
          )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   286
          #component: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   287
           #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   288
              #collection: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   289
               #(
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   290
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   291
                    #name: 'framedBox1'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   292
                    #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
   293
                    #component: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   294
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   295
                        #collection: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   296
                         #(
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   297
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   298
                              #name: 'label1'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   299
                              #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
   300
                              #label: 'Label:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   301
                              #resizeForLabel: true
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   302
                          )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   303
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   304
                              #name: 'labelField'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   305
                              #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
   306
                              #activeHelpKey: #basicsLabel
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   307
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   308
                              #model: #label
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   309
                          )
817
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   310
                           #(#LabelSpec
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   311
                              #name: 'LabelFont'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   312
                              #layout: #(#AlignmentOrigin 107 0 81 0 1 0.5)
817
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   313
                              #label: 'Font::'
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   314
                              #adjust: #left
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   315
                              #resizeForLabel: true
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   316
                          )
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   317
                           #(#FontMenuSpec
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   318
                              #name: 'fontMenu'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   319
                              #layout: #(#LayoutFrame 110 0 69 0 13 1.0 91 0)
817
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   320
                              #activeHelpKey: #labelFont
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   321
                              #model: #style
439
118bfaf3f76b font define forgotten + correct hasChanged flag setting
tz
parents: 438
diff changeset
   322
                          )
442
77009b480ba9 rearranges in layout
tz
parents: 439
diff changeset
   323
                           #(#PopUpListSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   324
                              #name: 'Alignment'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   325
                              #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
   326
                              #activeHelpKey: #basicsJustification
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   327
                              #label: 'Alignment'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   328
                              #model: #labelAlignment
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   329
                              #menu: 
442
77009b480ba9 rearranges in layout
tz
parents: 439
diff changeset
   330
                               #(#left
77009b480ba9 rearranges in layout
tz
parents: 439
diff changeset
   331
                                  #right #center
77009b480ba9 rearranges in layout
tz
parents: 439
diff changeset
   332
                              )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   333
                              #useIndex: false
442
77009b480ba9 rearranges in layout
tz
parents: 439
diff changeset
   334
                          )
77009b480ba9 rearranges in layout
tz
parents: 439
diff changeset
   335
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   336
                              #name: 'JustificationLabel'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   337
                              #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
   338
                              #label: 'Justification:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   339
                              #adjust: #left
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   340
                              #resizeForLabel: true
442
77009b480ba9 rearranges in layout
tz
parents: 439
diff changeset
   341
                          )
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   342
                           #(#CheckBoxSpec
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   343
                              #name: 'labelIsImage'
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   344
                              #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
   345
                              #activeHelpKey: #basicsLabelIsImage
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   346
                              #tabable: true
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   347
                              #model: #labelIsImage
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   348
                              #label: 'Label Is Image'
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   349
                          )
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   350
                           #(#CheckBoxSpec
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   351
                              #name: 'CheckBox2'
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   352
                              #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
   353
                              #activeHelpKey: #basicsLabelIsImage
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   354
                              #tabable: true
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   355
                              #model: #translateLabel
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   356
                              #label: 'Translate Label'
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   357
                          )
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   358
                           #(#LabelSpec
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   359
                              #name: 'idLabel'
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   360
                              #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
   361
                              #label: 'ID:'
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   362
                              #resizeForLabel: true
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   363
                          )
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   364
                           #(#InputFieldSpec
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   365
                              #name: 'idField'
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   366
                              #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
   367
                              #activeHelpKey: #basicsLabel
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   368
                              #tabable: true
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   369
                              #model: #id
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   370
                          )
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   371
                        )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   372
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   373
                    #label: 'Header:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   374
                    #labelPosition: #topLeft
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   375
                )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   376
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   377
                    #name: 'typesFrame'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   378
                    #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
   379
                    #component: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   380
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   381
                        #collection: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   382
                         #(
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   383
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   384
                              #name: 'rendererLabel'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   385
                              #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
   386
                              #label: 'Renderer:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   387
                              #resizeForLabel: true
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   388
                          )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   389
                           #(#ComboListSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   390
                              #name: 'rendererField'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   391
                              #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
   392
                              #activeHelpKey: #basicsRenderer
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   393
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   394
                              #model: #rendererType
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   395
                              #comboList: #rendererTypeList
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   396
                              #useIndex: false
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   397
                          )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   398
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   399
                              #name: 'editorLabel'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   400
                              #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
   401
                              #label: 'Editor:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   402
                              #resizeForLabel: true
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   403
                          )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   404
                           #(#ComboBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   405
                              #name: 'editorField'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   406
                              #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
   407
                              #activeHelpKey: #basicsEditor
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   408
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   409
                              #model: #editorType
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   410
                              #type: #symbolOrNil
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   411
                              #comboList: #editorTypeList
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   412
                              #useIndex: false
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   413
                          )
817
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   414
                           #(#LabelSpec
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   415
                              #name: 'JustificationC'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   416
                              #layout: #(#AlignmentOrigin 153 0 82 0 1 0.5)
817
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   417
                              #label: 'Justification:'
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   418
                              #adjust: #left
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   419
                              #resizeForLabel: true
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   420
                          )
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   421
                           #(#PopUpListSpec
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   422
                              #name: 'AlignmentC'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   423
                              #layout: #(#LayoutFrame 155 0 71 0 15 1.0 93 0)
817
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   424
                              #activeHelpKey: #basicsJustification
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   425
                              #label: 'Alignment'
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   426
                              #model: #columnAlignment
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   427
                              #menu: 
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   428
                               #(#left
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   429
                                  #right #center
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   430
                              )
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   431
                              #useIndex: false
d350f49ae748 add column justification
ca
parents: 816
diff changeset
   432
                          )
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   433
                        )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   434
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   435
                    #label: 'Cell Type:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   436
                    #labelPosition: #topLeft
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   437
                )
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   438
              )
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   439
          )
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   440
      )
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   441
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   442
    "Modified: / 20.5.1998 / 00:28:01 / cg"
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   443
!
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   444
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   445
colorsEditSpec
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   446
    "This resource specification was automatically generated
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   447
     by the UIPainter of ST/X."
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   448
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   449
    "Do not manually edit this!! If it is corrupted,
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   450
     the UIPainter may not be able to read the specification."
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   451
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   452
    "
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   453
     UIPainter new openOnClass:DataSetBuilder andSelector:#colorsEditSpec
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   454
     DataSetBuilder new openInterface:#colorsEditSpec
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   455
    "
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   456
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   457
    <resource: #canvas>
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   458
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   459
    ^
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   460
     
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   461
       #(#FullSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   462
          #window: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   463
           #(#WindowSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   464
              #name: 'DataSet Misc'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   465
              #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
   466
              #label: 'DataSet Misc'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   467
              #min: #(#Point 10 10)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   468
              #max: #(#Point 1280 1024)
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   469
              #bounds: #(#Rectangle 216 173 585 473)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   470
              #usePreferredExtent: false
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   471
          )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   472
          #component: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   473
           #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   474
              #collection: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   475
               #(
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   476
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   477
                    #name: 'ColorsBox'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   478
                    #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
   479
                    #component: 
427
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   480
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   481
                        #collection: 
427
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   482
                         #(
505
d9ed26eeafe9 checkin from browser
tz
parents: 489
diff changeset
   483
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   484
                              #name: 'label1'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   485
                              #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
   486
                              #label: 'Foreground:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   487
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   488
                              #resizeForLabel: true
505
d9ed26eeafe9 checkin from browser
tz
parents: 489
diff changeset
   489
                          )
427
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   490
                           #(#ColorMenuSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   491
                              #name: 'colorMenu1'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   492
                              #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
   493
                              #activeHelpKey: #colorsForegroundLabelColor
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   494
                              #model: #labelForegroundColor
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   495
                              #labelsAreColored: true
427
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   496
                          )
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   497
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   498
                              #name: 'label2'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   499
                              #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
   500
                              #label: 'Background:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   501
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   502
                              #resizeForLabel: true
427
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   503
                          )
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   504
                           #(#ColorMenuSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   505
                              #name: 'colorMenu2'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   506
                              #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
   507
                              #activeHelpKey: #colorsBackgroundLabelColor
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   508
                              #model: #labelBackgroundColor
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   509
                              #labelsAreColored: false
427
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   510
                          )
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   511
                        )
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   512
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   513
                    #label: 'Label Colors:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   514
                    #labelPosition: #topLeft
427
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   515
                )
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   516
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   517
                    #name: 'defaultColorsBox'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   518
                    #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
   519
                    #component: 
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   520
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   521
                        #collection: 
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   522
                         #(
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   523
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   524
                              #name: 'fgLabel'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   525
                              #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
   526
                              #label: 'Foreground:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   527
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   528
                              #resizeForLabel: true
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   529
                          )
505
d9ed26eeafe9 checkin from browser
tz
parents: 489
diff changeset
   530
                           #(#ColorMenuSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   531
                              #name: 'fgMenu'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   532
                              #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
   533
                              #activeHelpKey: #colorsForegroundCellColor
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   534
                              #model: #foregroundColor
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   535
                              #labelsAreColored: true
505
d9ed26eeafe9 checkin from browser
tz
parents: 489
diff changeset
   536
                          )
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   537
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   538
                              #name: 'bgLabel'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   539
                              #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
   540
                              #label: 'Background:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   541
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   542
                              #resizeForLabel: true
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   543
                          )
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   544
                           #(#ColorMenuSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   545
                              #name: 'bgMenu'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   546
                              #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
   547
                              #activeHelpKey: #colorsBackgroundCellColor
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   548
                              #model: #backgroundColor
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   549
                              #labelsAreColored: false
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   550
                          )
380
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
   551
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   552
                              #name: 'fgSelLabel'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   553
                              #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
   554
                              #label: 'FG-Selector:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   555
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   556
                              #resizeForLabel: true
380
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
   557
                          )
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
   558
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   559
                              #name: 'fgSelField'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   560
                              #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
   561
                              #activeHelpKey: #colorsForegroundSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   562
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   563
                              #model: #foregroundSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   564
                              #type: #symbolOrNil
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   565
                          )
505
d9ed26eeafe9 checkin from browser
tz
parents: 489
diff changeset
   566
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   567
                              #name: 'bgSelLabel'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   568
                              #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
   569
                              #label: 'BG-Selector:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   570
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   571
                              #resizeForLabel: true
505
d9ed26eeafe9 checkin from browser
tz
parents: 489
diff changeset
   572
                          )
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   573
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   574
                              #name: 'bgSelField'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   575
                              #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
   576
                              #activeHelpKey: #colorsBackgroundSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   577
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   578
                              #model: #backgroundSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   579
                              #type: #symbolOrNil
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   580
                          )
380
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
   581
                        )
42aacfc3d263 add new attributes and help
ca
parents: 379
diff changeset
   582
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   583
                    #label: 'Cell Colors:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   584
                    #labelPosition: #topLeft
377
5cbb117efc19 refine selection on row base:
ca
parents: 370
diff changeset
   585
                )
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   586
              )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   587
          )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   588
      )
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   589
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   590
    "Modified: / 20.5.1998 / 00:31:50 / cg"
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   591
!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   592
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   593
defineClassNameSpec
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   594
    "This resource specification was automatically generated
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   595
     by the UIPainter of ST/X."
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   596
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   597
    "Do not manually edit this!! If it is corrupted,
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   598
     the UIPainter may not be able to read the specification."
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   599
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   600
    "
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   601
     UIPainter new openOnClass:DataSetBuilder andSelector:#defineClassNameSpec
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   602
     DataSetBuilder new openInterface:#defineClassNameSpec
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   603
    "
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   604
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   605
    <resource: #canvas>
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   606
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   607
    ^
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   608
     
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   609
       #(#FullSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   610
          #window: 
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   611
           #(#WindowSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   612
              #name: 'Data Set Builder'
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   613
              #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
   614
              #label: 'Data Set Builder'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   615
              #min: #(#Point 10 10)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   616
              #max: #(#Point 1152 900)
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   617
              #bounds: #(#Rectangle 414 336 741 472)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   618
              #usePreferredExtent: false
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   619
          )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   620
          #component: 
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   621
           #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   622
              #collection: 
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   623
               #(
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   624
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   625
                    #name: 'framedBox1'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   626
                    #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
   627
                    #label: 'Class for code'
b412ee25ae80 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 831
diff changeset
   628
                    #translateLabel: true
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   629
                    #labelPosition: #topLeft
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   630
                )
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   631
                 #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   632
                    #name: 'classLabel'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   633
                    #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
   634
                    #label: 'Class:'
842
b412ee25ae80 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 831
diff changeset
   635
                    #translateLabel: true
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   636
                    #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   637
                    #resizeForLabel: true
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   638
                )
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   639
                 #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   640
                    #name: 'classNameInputField'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   641
                    #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
   642
                    #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   643
                    #model: #classNameChannel
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   644
                )
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   645
                 #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   646
                    #name: 'superClassLabel'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   647
                    #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
   648
                    #label: 'Superclass:'
842
b412ee25ae80 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 831
diff changeset
   649
                    #translateLabel: true
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   650
                    #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   651
                    #resizeForLabel: true
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   652
                )
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   653
                 #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   654
                    #name: 'superclassNameInputField'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   655
                    #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
   656
                    #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   657
                    #model: #superclassNameChannel
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   658
                )
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   659
                 #(#UISubSpecification
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   660
                    #name: 'SubSpecification'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   661
                    #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
   662
                    #majorKey: #ToolApplicationModel
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   663
                    #minorKey: #windowSpecForCommitWithoutChannels
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   664
                )
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   665
              )
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   666
          )
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   667
      )
842
b412ee25ae80 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 831
diff changeset
   668
b412ee25ae80 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 831
diff changeset
   669
    "Modified: / 20.5.1998 / 03:46:17 / cg"
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   670
!
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
   671
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   672
formatEditSpec
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   673
    "This resource specification was automatically generated
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   674
     by the UIPainter of ST/X."
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   675
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   676
    "Do not manually edit this!! If it is corrupted,
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   677
     the UIPainter may not be able to read the specification."
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   678
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   679
    "
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   680
     UIPainter new openOnClass:DataSetBuilder andSelector:#formatEditSpec
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   681
     DataSetBuilder new openInterface:#formatEditSpec
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   682
    "
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   683
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   684
    <resource: #canvas>
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   685
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   686
    ^
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   687
     
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   688
       #(#FullSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   689
          #window: 
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   690
           #(#WindowSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   691
              #name: 'DataSet Details'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   692
              #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
   693
              #label: 'DataSet Details'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   694
              #min: #(#Point 10 10)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   695
              #max: #(#Point 1280 1024)
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   696
              #bounds: #(#Rectangle 218 175 606 467)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   697
              #usePreferredExtent: false
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   698
          )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   699
          #component: 
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   700
           #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   701
              #collection: 
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   702
               #(
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   703
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   704
                    #name: 'framedBox1'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   705
                    #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
   706
                    #component: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   707
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   708
                        #collection: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   709
                         #(
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   710
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   711
                              #name: 'typeLabel'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   712
                              #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
   713
                              #label: 'Input Type:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   714
                              #resizeForLabel: true
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   715
                          )
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   716
                           #(#ComboListSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   717
                              #name: 'typeCombo'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   718
                              #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
   719
                              #activeHelpKey: #formatInputType
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   720
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   721
                              #model: #type
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   722
                              #comboList: 
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   723
                               #(#string
e4401e30077a tabs added
tz
parents: 442
diff changeset
   724
                                  #password #number
e4401e30077a tabs added
tz
parents: 442
diff changeset
   725
                                  #numberOrNil #symbolOrNil
e4401e30077a tabs added
tz
parents: 442
diff changeset
   726
                              )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   727
                              #useIndex: false
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   728
                          )
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   729
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   730
                              #name: 'sizeLabel'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   731
                              #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
   732
                              #label: 'Max Size:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   733
                              #resizeForLabel: true
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   734
                          )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   735
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   736
                              #name: 'sizeField'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   737
                              #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
   738
                              #activeHelpKey: #formatMaxSize
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   739
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   740
                              #model: #size
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   741
                              #type: #numberOrNil
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   742
                          )
439
118bfaf3f76b font define forgotten + correct hasChanged flag setting
tz
parents: 438
diff changeset
   743
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   744
                              #name: 'formatLabel'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   745
                              #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
   746
                              #label: 'Text Format:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   747
                              #resizeForLabel: true
439
118bfaf3f76b font define forgotten + correct hasChanged flag setting
tz
parents: 438
diff changeset
   748
                          )
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   749
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   750
                              #name: 'formatField'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   751
                              #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
   752
                              #activeHelpKey: #formatTextFormat
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   753
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   754
                              #model: #formatString
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   755
                          )
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   756
                        )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   757
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   758
                    #label: 'Input Format'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   759
                    #labelPosition: #topLeft
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   760
                )
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   761
              )
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   762
          )
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   763
      )
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   764
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   765
    "Modified: / 20.5.1998 / 00:28:53 / cg"
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   766
!
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   767
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   768
frameEditSpec
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   769
    "This resource specification was automatically generated
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   770
     by the UIPainter of ST/X."
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   771
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   772
    "Do not manually edit this!! If it is corrupted,
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   773
     the UIPainter may not be able to read the specification."
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   774
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   775
    "
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   776
     UIPainter new openOnClass:DataSetBuilder andSelector:#frameEditSpec
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   777
     DataSetBuilder new openInterface:#frameEditSpec
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   778
    "
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   779
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   780
    <resource: #canvas>
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   781
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   782
    ^
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   783
     
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   784
       #(#FullSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   785
          #window: 
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   786
           #(#WindowSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   787
              #name: 'DataSet Dimension'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   788
              #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
   789
              #label: 'DataSet Dimension'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   790
              #min: #(#Point 10 10)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   791
              #max: #(#Point 1280 1024)
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   792
              #bounds: #(#Rectangle 216 173 507 417)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   793
              #usePreferredExtent: false
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   794
          )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   795
          #component: 
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   796
           #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   797
              #collection: 
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   798
               #(
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   799
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   800
                    #name: 'separatorBox'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   801
                    #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
   802
                    #component: 
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   803
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   804
                        #collection: 
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   805
                         #(
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   806
                           #(#CheckBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   807
                              #name: 'showRowSeparator'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   808
                              #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
   809
                              #activeHelpKey: #frameShowRowSeparator
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   810
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   811
                              #model: #showRowSeparator
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   812
                              #label: 'Show Row-Separator'
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   813
                          )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   814
                           #(#CheckBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   815
                              #name: 'showColSeparator'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   816
                              #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
   817
                              #activeHelpKey: #frameShowColumnSeparator
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   818
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   819
                              #model: #showColSeparator
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   820
                              #label: 'Show Column-Separator'
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   821
                          )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   822
                        )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   823
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   824
                    #label: 'Separators'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   825
                    #labelPosition: #topLeft
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   826
                )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   827
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   828
                    #name: 'framedBox1'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   829
                    #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
   830
                    #component: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   831
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   832
                        #collection: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   833
                         #(
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   834
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   835
                              #name: 'widthLabel'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   836
                              #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
   837
                              #label: 'Column Width:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   838
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   839
                              #resizeForLabel: true
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   840
                          )
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   841
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   842
                              #name: 'widthField'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   843
                              #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
   844
                              #activeHelpKey: #frameColumnWidth
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   845
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   846
                              #model: #width
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   847
                              #type: #numberOrNil
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   848
                          )
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   849
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   850
                              #name: 'minWidthLabel'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   851
                              #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
   852
                              #label: 'Min Width:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   853
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   854
                              #resizeForLabel: true
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   855
                          )
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   856
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   857
                              #name: 'minWidthField'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   858
                              #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
   859
                              #activeHelpKey: #frameMinWidth
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   860
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   861
                              #model: #minWidth
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   862
                              #type: #numberOrNil
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   863
                          )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   864
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   865
                              #name: 'heightLabel'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   866
                              #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
   867
                              #label: 'Row Height:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   868
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   869
                              #resizeForLabel: true
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   870
                          )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   871
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   872
                              #name: 'heightField'
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   873
                              #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
   874
                              #activeHelpKey: #frameRowHeight
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   875
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   876
                              #model: #height
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   877
                              #type: #numberOrNil
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   878
                          )
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   879
                        )
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   880
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   881
                    #label: 'Dimensions:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   882
                    #labelPosition: #topLeft
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   883
                )
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   884
              )
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   885
          )
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   886
      )
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   887
831
857f725404e6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 829
diff changeset
   888
    "Modified: / 20.5.1998 / 00:29:47 / cg"
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   889
!
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
   890
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   891
selectionEditSpec
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   892
    "This resource specification was automatically generated
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   893
     by the UIPainter of ST/X."
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   894
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   895
    "Do not manually edit this!! If it is corrupted,
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
   896
     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
   897
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
   898
    "
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   899
     UIPainter new openOnClass:DataSetBuilder andSelector:#selectionEditSpec
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   900
     DataSetBuilder new openInterface:#selectionEditSpec
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   901
    "
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   902
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   903
    <resource: #canvas>
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   904
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   905
    ^
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   906
     
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   907
       #(#FullSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   908
          #window: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
   909
           #(#WindowSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   910
              #name: 'DataSet Basic'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   911
              #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
   912
              #label: 'DataSet Basic'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   913
              #min: #(#Point 10 10)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   914
              #max: #(#Point 1280 1024)
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   915
              #bounds: #(#Rectangle 218 175 507 431)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   916
              #usePreferredExtent: false
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   917
          )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   918
          #component: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   919
           #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   920
              #collection: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   921
               #(
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   922
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   923
                    #name: 'framedBox1'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   924
                    #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
   925
                    #component: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   926
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   927
                        #collection: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   928
                         #(
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   929
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   930
                              #name: 'ActionLabel'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   931
                              #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
   932
                              #label: 'Selector:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   933
                              #adjust: #left
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   934
                              #resizeForLabel: true
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   935
                          )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   936
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   937
                              #name: 'ActionSelector'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   938
                              #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
   939
                              #activeHelpKey: #selectionLabelClickSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   940
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   941
                              #model: #labelActionSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   942
                              #type: #symbolOrNil
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   943
                          )
427
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   944
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   945
                              #name: 'ArgumentLabel'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   946
                              #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
   947
                              #label: 'Argument:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   948
                              #adjust: #left
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   949
                              #resizeForLabel: true
427
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   950
                          )
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   951
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   952
                              #name: 'ArgumentValue'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   953
                              #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
   954
                              #activeHelpKey: #selectionLabelSelectorArgument
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   955
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   956
                              #model: #labelActionArgument
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   957
                              #type: #string
427
ad235cdacee5 support for new color menu added + some rearranges
tz
parents: 421
diff changeset
   958
                          )
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   959
                        )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   960
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   961
                    #label: 'Label Select Action:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   962
                    #labelPosition: #topLeft
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   963
                )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
   964
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   965
                    #name: 'framedBox2'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   966
                    #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
   967
                    #component: 
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   968
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   969
                        #collection: 
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   970
                         #(
e4401e30077a tabs added
tz
parents: 442
diff changeset
   971
                           #(#CheckBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   972
                              #name: 'canSelect'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   973
                              #layout: #(#Point 107 21)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   974
                              #activeHelpKey: #selectionIsSelectable
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: #canSelect
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   977
                              #label: 'Is Selectable'
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   978
                          )
e4401e30077a tabs added
tz
parents: 442
diff changeset
   979
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   980
                              #name: 'selectorLabel'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   981
                              #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
   982
                              #label: 'Selector:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   983
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   984
                              #resizeForLabel: true
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   985
                          )
e4401e30077a tabs added
tz
parents: 442
diff changeset
   986
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   987
                              #name: 'selectSelector'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
   988
                              #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
   989
                              #activeHelpKey: #selectionCellClickSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   990
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   991
                              #model: #selectSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   992
                              #type: #symbolOrNil
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   993
                          )
e4401e30077a tabs added
tz
parents: 442
diff changeset
   994
                        )
e4401e30077a tabs added
tz
parents: 442
diff changeset
   995
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   996
                    #label: 'Cell Selection:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
   997
                    #labelPosition: #topLeft
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
   998
                )
e4401e30077a tabs added
tz
parents: 442
diff changeset
   999
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1000
                    #name: 'framedBox3'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1001
                    #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
  1002
                    #component: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1003
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1004
                        #collection: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1005
                         #(
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1006
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1007
                              #name: 'doubleLabel'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1008
                              #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
  1009
                              #label: 'Selector:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1010
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1011
                              #resizeForLabel: true
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1012
                          )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1013
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1014
                              #name: 'doubleClicked'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1015
                              #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
  1016
                              #activeHelpKey: #selectionCellDoubleClickSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1017
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1018
                              #model: #doubleClickedSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1019
                              #type: #symbolOrNil
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1020
                          )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1021
                        )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1022
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1023
                    #label: 'Cell Double Click:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1024
                    #labelPosition: #topLeft
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1025
                )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1026
              )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1027
          )
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1028
      )
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1029
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1030
    "Modified: / 19.5.1998 / 22:36:08 / cg"
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1031
!
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1032
528
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
  1033
slices
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
  1034
    ^#(
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
  1035
        (Basics         basicsEditSpec)
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
  1036
        (Values         valuesEditSpec)
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
  1037
        (Format         formatEditSpec)
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
  1038
        (Selection      selectionEditSpec)
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
  1039
        (Frame          frameEditSpec)
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
  1040
        (Colors         colorsEditSpec)
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
  1041
    )
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
  1042
!
4c6acd1fa911 dialog style revised
tz
parents: 524
diff changeset
  1043
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1044
valuesEditSpec
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1045
    "This resource specification was automatically generated
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1046
     by the UIPainter of ST/X."
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1047
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1048
    "Do not manually edit this!! If it is corrupted,
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1049
     the UIPainter may not be able to read the specification."
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1050
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1051
    "
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1052
     UIPainter new openOnClass:DataSetBuilder andSelector:#valuesEditSpec
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1053
     DataSetBuilder new openInterface:#valuesEditSpec
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1054
    "
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1055
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1056
    <resource: #canvas>
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1057
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1058
    ^
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1059
     
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1060
       #(#FullSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1061
          #window: 
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1062
           #(#WindowSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1063
              #name: 'DataSet Basic'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1064
              #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
  1065
              #label: 'DataSet Basic'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1066
              #min: #(#Point 10 10)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1067
              #max: #(#Point 1280 1024)
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1068
              #bounds: #(#Rectangle 216 173 512 479)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1069
              #usePreferredExtent: false
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1070
          )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1071
          #component: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1072
           #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1073
              #collection: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1074
               #(
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1075
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1076
                    #name: 'valuesBox'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1077
                    #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
  1078
                    #component: 
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1079
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1080
                        #collection: 
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1081
                         #(
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1082
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1083
                              #name: 'readLabel'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1084
                              #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
  1085
                              #label: 'Read:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1086
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1087
                              #resizeForLabel: true
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1088
                          )
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1089
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1090
                              #name: 'readSelector'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1091
                              #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
  1092
                              #activeHelpKey: #valuesReadSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1093
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1094
                              #model: #readSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1095
                              #type: #symbolOrNil
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1096
                          )
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
  1097
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1098
                              #name: 'writeLabel'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1099
                              #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
  1100
                              #label: 'Write:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1101
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1102
                              #resizeForLabel: true
470
e4401e30077a tabs added
tz
parents: 442
diff changeset
  1103
                          )
379
1a24037cd490 support of writeSelector
ca
parents: 377
diff changeset
  1104
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1105
                              #name: 'writeSelector'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1106
                              #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
  1107
                              #activeHelpKey: #valuesWriteSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1108
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1109
                              #model: #writeSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1110
                              #type: #symbolOrNil
379
1a24037cd490 support of writeSelector
ca
parents: 377
diff changeset
  1111
                          )
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1112
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1113
                              #name: 'printLabel'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1114
                              #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
  1115
                              #label: 'Print:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1116
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1117
                              #resizeForLabel: true
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1118
                          )
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1119
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1120
                              #name: 'printSelector'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1121
                              #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
  1122
                              #activeHelpKey: #valuesPrintSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1123
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1124
                              #model: #printSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1125
                              #type: #symbolOrNil
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1126
                          )
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1127
                        )
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1128
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1129
                    #label: 'Value Selectors:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1130
                    #labelPosition: #topLeft
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1131
                )
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1132
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1133
                    #name: 'menusBox'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1134
                    #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
  1135
                    #component: 
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1136
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1137
                        #collection: 
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
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1140
                              #name: 'menuLabel'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1141
                              #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
  1142
                              #label: 'Selector:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1143
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1144
                              #resizeForLabel: true
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1145
                          )
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1146
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1147
                              #name: 'menuSelector'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1148
                              #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
  1149
                              #activeHelpKey: #valuesMenuSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1150
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1151
                              #model: #menu
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1152
                              #type: #symbolOrNil
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1153
                          )
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
  1154
                        )
3116330c3d57 help texts added
tz
parents: 567
diff changeset
  1155
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1156
                    #label: 'Menu:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1157
                    #labelPosition: #topLeft
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
  1158
                )
3116330c3d57 help texts added
tz
parents: 567
diff changeset
  1159
                 #(#FramedBoxSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1160
                    #name: 'framedBox1'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1161
                    #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
  1162
                    #component: 
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
  1163
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1164
                        #collection: 
597
3116330c3d57 help texts added
tz
parents: 567
diff changeset
  1165
                         #(
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1166
                           #(#LabelSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1167
                              #name: 'label2'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1168
                              #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
  1169
                              #activeHelpKey: #valuesChoiceSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1170
                              #label: 'Selector:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1171
                              #adjust: #right
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1172
                              #resizeForLabel: true
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1173
                          )
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1174
                           #(#InputFieldSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1175
                              #name: 'inputField2'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1176
                              #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
  1177
                              #activeHelpKey: #valuesChoiceSelector
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1178
                              #tabable: true
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1179
                              #model: #choices
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1180
                              #type: #symbolOrNil
370
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1181
                          )
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1182
                        )
c90e57ac04a5 add help text and support of label is image
ca
parents: 357
diff changeset
  1183
                    )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1184
                    #label: 'List Choice:'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1185
                    #labelPosition: #topLeft
391
5c7fa5484d14 VW compatible
ca
parents: 380
diff changeset
  1186
                )
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1187
              )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1188
          )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1189
      )
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1190
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1191
    "Modified: / 19.5.1998 / 22:33:53 / cg"
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1192
!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1193
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1194
windowSpec
817
d350f49ae748 add column justification
ca
parents: 816
diff changeset
  1195
    "This resource specification was automatically generated
d350f49ae748 add column justification
ca
parents: 816
diff changeset
  1196
     by the UIPainter of ST/X."
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1197
817
d350f49ae748 add column justification
ca
parents: 816
diff changeset
  1198
    "Do not manually edit this!! If it is corrupted,
d350f49ae748 add column justification
ca
parents: 816
diff changeset
  1199
     the UIPainter may not be able to read the specification."
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1200
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1201
    "
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1202
     UIPainter new openOnClass:DataSetBuilder andSelector:#windowSpec
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1203
     DataSetBuilder new openInterface:#windowSpec
817
d350f49ae748 add column justification
ca
parents: 816
diff changeset
  1204
     DataSetBuilder open
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1205
    "
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1206
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1207
    <resource: #canvas>
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1208
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1209
    ^
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1210
     
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1211
       #(#FullSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1212
          #window: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1213
           #(#WindowSpec
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1214
              #name: 'Data Set Builder'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1215
              #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
  1216
              #label: 'Data Set Builder'
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1217
              #min: #(#Point 10 10)
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1218
              #max: #(#Point 1152 900)
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1219
              #bounds: #(#Rectangle 28 46 661 613)
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1220
              #menu: #menu
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1221
              #usePreferredExtent: false
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1222
          )
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1223
          #component: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1224
           #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1225
              #collection: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1226
               #(
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1227
                 #(#MenuPanelSpec
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1228
                    #name: 'menuToolbarView'
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1229
                    #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 32 0)
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1230
                    #menu: #menuToolbar
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1231
                )
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1232
                 #(#VariableVerticalPanelSpec
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1233
                    #name: 'VariableVerticalPanel1'
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1234
                    #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
  1235
                    #component: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1236
                     #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1237
                        #collection: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1238
                         #(
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1239
                           #(#FramedBoxSpec
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1240
                              #name: 'FramedBox'
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1241
                              #component: 
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1242
                               #(#SpecCollection
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1243
                                  #collection: 
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1244
                                   #(
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1245
                                     #(#DataSetSpec
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1246
                                        #name: 'columnView'
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1247
                                        #layout: #(#LayoutFrame 15 0.0 16 0.0 15 1.0 16 1.0)
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1248
                                        #hasHorizontalScrollBar: true
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1249
                                        #hasVerticalScrollBar: false
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1250
                                        #miniScrollerHorizontal: true
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1251
                                        #rowClassName: 'CodingExamples_GUI::GUIDemoDataSetView::Row'
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1252
                                        #useIndex: false
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1253
                                        #has3Dsepartors: true
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1254
                                    )
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1255
                                  )
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1256
                              )
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1257
                              #label: 'Table Columns'
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1258
                              #labelPosition: #topLeft
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1259
                          )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1260
                           #(#VariableHorizontalPanelSpec
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1261
                              #name: 'VariablePanel'
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1262
                              #component: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1263
                               #(#SpecCollection
687
363d54091c9e make the font edit field for the label be visible
tz
parents: 601
diff changeset
  1264
                                  #collection: 
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1265
                                   #(
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1266
                                     #(#ViewSpec
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1267
                                        #name: 'labelsView'
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1268
                                        #component: 
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1269
                                         #(#SpecCollection
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1270
                                            #collection: 
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1271
                                             #(
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1272
                                               #(#SequenceViewSpec
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1273
                                                  #name: 'labelAndColumns'
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1274
                                                  #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1275
                                                  #model: #selectedColumnModel
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1276
                                                  #menu: #menuEdit
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1277
                                                  #hasHorizontalScrollBar: true
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1278
                                                  #hasVerticalScrollBar: true
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1279
                                                  #miniScrollerHorizontal: true
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1280
                                                  #useIndex: true
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1281
                                                  #sequenceList: #seqList
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1282
                                              )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1283
                                            )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1284
                                        )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1285
                                    )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1286
                                     #(#ViewSpec
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1287
                                        #name: 'specView'
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
                                               #(#TabViewSpec
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1293
                                                  #name: 'tabView'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1294
                                                  #layout: #(#LayoutFrame 1 0.0 0 0 0 1.0 50 0)
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1295
                                                  #model: #tabModel
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1296
                                                  #menu: #tabList
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1297
                                                  #useIndex: true
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1298
                                              )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1299
                                               #(#SubCanvasSpec
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1300
                                                  #name: 'specCanvas'
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1301
                                                  #layout: #(#LayoutFrame 1 0.0 50 0.0 0 1.0 -30 1.0)
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1302
                                                  #specHolder: #specChannel
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1303
                                              )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1304
                                               #(#UISubSpecification
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1305
                                                  #name: 'SubSpecification'
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1306
                                                  #layout: #(#LayoutFrame 2 0.0 -26 1 -2 1.0 -2 1.0)
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1307
                                                  #majorKey: #ToolApplicationModel
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1308
                                                  #minorKey: #windowSpecForCommit
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1309
                                              )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1310
                                            )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1311
                                        )
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1312
                                        #level: -1
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1313
                                    )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1314
                                  )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1315
                              )
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1316
                              #level: -1
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1317
                              #handles: #(#Any 0.235387 1.0)
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1318
                          )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1319
                        )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1320
                    )
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1321
                    #handles: #(#Any 0.25 1.0)
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1322
                )
825
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1323
                 #(#UISubSpecification
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1324
                    #name: 'infoBarSubSpec'
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1325
                    #layout: #(#LayoutFrame 0 0.0 -24 1 0 1.0 0 1.0)
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1326
                    #majorKey: #ToolApplicationModel
89719cf96c63 revised for superclass ResourceSpecEditor
tz
parents: 818
diff changeset
  1327
                    #minorKey: #windowSpecForInfoBar
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1328
                )
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1329
              )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1330
          )
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1331
      )
829
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1332
dac49512301a language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents: 826
diff changeset
  1333
    "Modified: / 19.5.1998 / 23:35:33 / cg"
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1334
! !
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1335
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1336
!DataSetBuilder class methodsFor:'menu specs'!
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1337
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1338
menu
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1339
    "This resource specification was automatically generated
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1340
     by the MenuEditor of ST/X."
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1341
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1342
    "Do not manually edit this!! If it is corrupted,
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1343
     the MenuEditor may not be able to read the specification."
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1344
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1345
    "
408
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1346
     MenuEditor new openOnClass:DataSetBuilder andSelector:#menu
9215eb553600 totally revised version
tz
parents: 391
diff changeset
  1347
     (Menu new fromLiteralArrayEncoding:(DataSetBuilder menu)) startUp
332
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1348
    "
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1349
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1350
    <resource: #menu>
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1351
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1352
    ^
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1353
     
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1354
       #(#Menu
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1355
          
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1356
           #(
b895330fc7aa intitial checkin
ca
parents:
diff changeset
  1357
             #(#MenuItem
818
5bd68980f09a support standAlone mode
ca
parents: 817
diff changeset
  1358
                #label: 'About'
829