TabListEditor.st
author Claus Gittinger <cg@exept.de>
Wed, 09 Jun 2004 12:08:14 +0200
changeset 1851 d036350188f5
parent 1845 d6d62913c2cc
child 1855 b340a5b9ff78
permissions -rw-r--r--
warn if spec is saved too large
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
     1
"
cc3413fc1afb initial checkin
tz
parents:
diff changeset
     2
 COPYRIGHT (c) 1997 by eXept Software AG
cc3413fc1afb initial checkin
tz
parents:
diff changeset
     3
              All Rights Reserved
cc3413fc1afb initial checkin
tz
parents:
diff changeset
     4
cc3413fc1afb initial checkin
tz
parents:
diff changeset
     5
 This software is furnished under a license and may be used
cc3413fc1afb initial checkin
tz
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
cc3413fc1afb initial checkin
tz
parents:
diff changeset
     7
 inclusion of the above copyright notice. This software may not
cc3413fc1afb initial checkin
tz
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
cc3413fc1afb initial checkin
tz
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    10
 hereby transferred.
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    11
"
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    12
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    13
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    14
1431
cdcadf6df14d remove accelerators in menu
ca
parents: 1375
diff changeset
    15
"{ Package: 'stx:libtool2' }"
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
    16
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    17
ResourceSpecEditor subclass:#TabListEditor
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
    18
	instanceVariableNames:'listOfTabs'
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    19
	classVariableNames:''
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    20
	poolDictionaries:''
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    21
	category:'Interface-UIPainter'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    22
!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    23
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    24
!TabListEditor class methodsFor:'documentation'!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    25
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    26
copyright
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    27
"
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    28
 COPYRIGHT (c) 1997 by eXept Software AG
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    29
              All Rights Reserved
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    30
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    31
 This software is furnished under a license and may be used
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    32
 only in accordance with the terms of that license and with the
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    33
 inclusion of the above copyright notice. This software may not
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    34
 be provided or otherwise made available to, or used by, any
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    35
 other person.  No title to or ownership of the software is
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    36
 hereby transferred.
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    37
"
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    38
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    39
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    40
!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    41
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    42
documentation
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    43
"
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    44
    The TabListEditor allows you to create, modify or just inspect
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    45
    tab lists for tab headers or note books.
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    46
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    47
    [start with:]
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    48
        TabItemEditor open
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    49
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    50
    [see also:]
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    51
        TabItem
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    52
        TabView
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    53
        NoteBookView
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    54
        UIPainter
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    55
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    56
    [author:]
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    57
        Claus Atzkern, eXept Software AG
749
8f8767c6f32f update other instances if clipboarding
tz
parents: 739
diff changeset
    58
        Thomas Zwick, eXept Software AG
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    59
"
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    60
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    61
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    62
! !
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    63
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    64
!TabListEditor class methodsFor:'instance creation'!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    65
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    66
openModalOnTabList: aTabList
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    67
    "Open a TabListEditor modal on aTabList"
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    68
    "self openModalOnTabList: (Array with: (TabItem label: 'Tab Item 1'))"
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    69
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    70
    ^self new openModalOnTabList: aTabList
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    71
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    72
! !
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    73
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    74
!TabListEditor class methodsFor:'accessing'!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    75
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    76
resourceType
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    77
    "get the type of resource of the method generated by the TabListEditor"
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    78
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    79
    ^#tabList
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    80
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    81
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    82
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    83
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    84
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    85
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    86
! !
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    87
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    88
!TabListEditor class methodsFor:'aspects'!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    89
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    90
aspects
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    91
    "get the aspects for the attributes of the tab list components"
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    92
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    93
    ^#(
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    94
        label
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    95
        translateLabel
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    96
        labelForegroundColor
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    97
        enabled
cc3413fc1afb initial checkin
tz
parents:
diff changeset
    98
        editAgument
1325
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
    99
        accessCharacterPosition
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   100
        shortcutKey
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   101
        activeHelpKey
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   102
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   103
        majorKey
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   104
        minorKey
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   105
        createNewBuilder
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   106
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   107
        hasHorizontalScrollBar
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   108
        hasVerticalScrollBar
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   109
        miniScrollerHorizontal
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   110
        miniScrollerVertical
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   111
    )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   112
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   113
! !
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   114
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   115
!TabListEditor class methodsFor:'help specs'!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   116
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   117
helpSpec
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   118
    "This resource specification was automatically generated
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   119
     by the UIHelpTool of ST/X."
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   120
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   121
    "Do not manually edit this!! If it is corrupted,
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   122
     the UIHelpTool may not be able to read the specification."
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   123
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   124
    "
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   125
     UIHelpTool openOnClass:TabListEditor    
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   126
    "
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   127
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   128
    <resource: #help>
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   129
1845
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   130
    ^ super helpSpec addPairsFrom:#(
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   131
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   132
#addTabItem
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   133
'Adds a new tab item.'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   134
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   135
#autoHideScrollBars
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   136
'ScrollBars should be made invisible dynamically, if there is nothing to scroll.'
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   137
1845
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   138
#basicTab
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   139
'Define the basic attributes.'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   140
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   141
#canSelect
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   142
'Turns on/off whether the tab item is selectable.'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   143
1845
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   144
#canvasTab
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   145
'Define an application, which is started if the tab is pressed the first time.'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   146
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   147
#color
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   148
'Defines the foreground color of the label. The default color derives from the style sheet.'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   149
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   150
#createNewBuilder
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   151
'Create a new builder for the application; the application use its own aspects.'
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   152
1845
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   153
#detailTab
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   154
'Define the optional/specific attributes.'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   155
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   156
#detailsAccelerator
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   157
'Key to be pressed to select the tab item from the keyboard (accelerator key).'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   158
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   159
#detailsAccessCharaterPosition
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   160
'Index of the access character position of the textual label (optional).'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   161
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   162
#detailsArgument
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   163
'An optional argument stored with the tab item.'
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   164
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   165
#fileCreateAspectMethod
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   166
'Creates the aspect method for the tab list.'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   167
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   168
#fileLoad
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   169
'Opens a dialog for selecting and loading a tab list spec from a class.'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   170
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   171
#fileNew
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   172
'Creates a new tab list.'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   173
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   174
#fileSave
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   175
'Saves current tab list.'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   176
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   177
#horizontalMiniScroller
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   178
'Use a mini-scroller as horizontal scrollbar.'
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   179
1845
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   180
#horizontalScroller
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   181
'Enable horizontal scrollability.'
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   182
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   183
#label
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   184
'Label of the tab item.'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   185
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   186
#labelDerivesFromApplication
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   187
'If turned on, the label''s string is a selector returning a string or bitmap image, which is used as logo in the tab item.'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   188
1845
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   189
#majorKey
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   190
'Name of the class to be started (application if empty); or app-selector returning application instance.'
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   191
1845
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   192
#minorKey
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   193
'Message sent to the class which returns the window specification (default: #windowSpec).'
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   194
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   195
#testPreview
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   196
'Turns on/off preview of the tab list.'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   197
1845
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   198
#verticalMiniScroller
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   199
'Use a mini-scroller as vertical scrollbar.'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   200
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   201
#verticalScroller
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   202
'Enable vertical scrollability.'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   203
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   204
)
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   205
! !
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   206
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   207
!TabListEditor class methodsFor:'image specs'!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   208
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   209
newTabItemIcon
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   210
    "This resource specification was automatically generated
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   211
     by the ImageEditor of ST/X."
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   212
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   213
    "Do not manually edit this!!!! If it is corrupted,
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   214
     the ImageEditor may not be able to read the specification."
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   215
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   216
    "
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   217
     ImageEditor openOnClass:self andSelector:#newTabItemIcon
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   218
    "
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   219
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   220
    <resource: #image>
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   221
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   222
    ^Icon
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   223
        constantNamed:#'TabListEditor newTabItemIcon'
1431
cdcadf6df14d remove accelerators in menu
ca
parents: 1375
diff changeset
   224
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'U@@@@EUPUEUUVEUPUF**+EUPUF**+EUPUF**+EUP@F**+@@@EV***UV@F*****+@F KNC*+NF(("H*+@F((BC +EF(("H*+@F(("C*+MF*****+@F"@ H*K@F"""(LK@F"" ("K@F"""(*K@F"" H*K@F*****+HK??????@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 127 127 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'G?<@G?<@G?<@G?<@G?<@???<???<???<???????<???<???<???<???????=???<???????<???????<???<???=') ; yourself); yourself]
cdcadf6df14d remove accelerators in menu
ca
parents: 1375
diff changeset
   225
! !
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   226
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   227
!TabListEditor class methodsFor:'interface specs'!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   228
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   229
basicSpec
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   230
    "This resource specification was automatically generated
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   231
     by the UIPainter of ST/X."
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   232
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   233
    "Do not manually edit this!! If it is corrupted,
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   234
     the UIPainter may not be able to read the specification."
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   235
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   236
    "
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   237
     UIPainter new openOnClass:TabListEditor andSelector:#basicSpec
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   238
     TabListEditor new openInterface:#basicSpec
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   239
    "
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   240
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   241
    <resource: #canvas>
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   242
1183
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   243
    ^ 
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   244
     #(#FullSpec
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   245
        #name: #basicSpec
1183
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   246
        #window: 
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   247
       #(#WindowSpec
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   248
          #label: 'Basic'
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   249
          #name: 'Basic'
1183
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   250
          #min: #(#Point 10 10)
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   251
          #max: #(#Point 1280 1024)
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   252
          #bounds: #(#Rectangle 803 137 1232 347)
1183
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   253
        )
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   254
        #component: 
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   255
       #(#SpecCollection
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   256
          #collection: #(
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   257
           #(#LabelSpec
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   258
              #label: 'Label:'
1325
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   259
              #name: 'labelLabel'
1183
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   260
              #layout: #(#AlignmentOrigin 98 0 26 0 1 0.5)
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   261
              #resizeForLabel: true
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   262
            )
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   263
           #(#InputFieldSpec
1325
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   264
              #name: 'label'
1183
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   265
              #layout: #(#LayoutFrame 100 0 15 0 -5 1.0 37 0)
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   266
              #activeHelpKey: #label
1325
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   267
              #tabable: true
1183
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   268
              #model: #label
1325
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   269
              #group: #inputGroup
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   270
              #immediateAccept: true
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   271
              #acceptOnReturn: false
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   272
              #acceptOnTab: false
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   273
              #acceptOnLostFocus: false
1325
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   274
              #acceptChannel: #acceptChannel
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   275
              #modifiedChannel: #modifiedChannel
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   276
              #acceptOnPointerLeave: false
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   277
            )
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   278
           #(#LabelSpec
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   279
              #label: 'Accelerator:'
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   280
              #name: 'shortcutKeyLabel'
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   281
              #layout: #(#AlignmentOrigin 98 0 55 0 1 0.5)
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   282
              #resizeForLabel: true
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   283
            )
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   284
           #(#InputFieldSpec
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   285
              #name: 'shortcutKey'
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   286
              #layout: #(#LayoutFrame 100 0 44 0 -5 1.0 66 0)
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   287
              #activeHelpKey: #detailsAccelerator
1325
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   288
              #tabable: true
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   289
              #model: #shortcutKey
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   290
              #group: #inputGroup
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   291
              #type: #symbolOrNil
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   292
              #immediateAccept: true
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   293
              #acceptOnReturn: false
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   294
              #acceptOnTab: false
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   295
              #acceptOnLostFocus: false
1325
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   296
              #acceptChannel: #acceptChannel
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   297
              #modifiedChannel: #modifiedChannel
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   298
              #acceptOnPointerLeave: false
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   299
            )
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   300
           #(#LabelSpec
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   301
              #label: 'Argument:'
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   302
              #name: 'editAgumentLabel'
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   303
              #layout: #(#AlignmentOrigin 98 0 84 0 1 0.5)
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   304
              #resizeForLabel: true
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   305
            )
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   306
           #(#InputFieldSpec
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   307
              #name: 'editAgument'
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   308
              #layout: #(#LayoutFrame 100 0 73 0 -5 1.0 95 0)
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   309
              #activeHelpKey: #detailsArgument
1325
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   310
              #tabable: true
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   311
              #model: #editAgument
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   312
              #group: #inputGroup
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   313
              #immediateAccept: true
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   314
              #acceptOnReturn: false
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   315
              #acceptOnTab: false
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   316
              #acceptOnLostFocus: false
1325
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   317
              #acceptChannel: #acceptChannel
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   318
              #modifiedChannel: #modifiedChannel
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   319
              #acceptOnPointerLeave: false
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   320
            )
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   321
           #(#LabelSpec
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   322
              #label: 'Access Character Position:'
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   323
              #name: 'accessCharacterPositionLabel'
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   324
              #layout: #(#AlignmentOrigin 275 0 113 0 1 0.5)
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   325
              #resizeForLabel: true
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   326
            )
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   327
           #(#InputFieldSpec
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   328
              #name: 'accessCharacterPosition'
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   329
              #layout: #(#LayoutFrame 278 0 103 0 -5 1.0 125 0)
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   330
              #activeHelpKey: #detailsAccessCharaterPosition
1325
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   331
              #tabable: true
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   332
              #model: #accessCharacterPosition
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   333
              #group: #inputGroup
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   334
              #type: #number
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   335
              #immediateAccept: true
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   336
              #acceptOnReturn: false
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   337
              #acceptOnTab: false
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   338
              #acceptOnLostFocus: false
1183
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   339
              #acceptChannel: #acceptChannel
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   340
              #modifiedChannel: #modifiedChannel
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   341
              #acceptOnPointerLeave: false
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   342
            )
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   343
           #(#CheckBoxSpec
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   344
              #label: 'Application provides translation '
1325
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   345
              #name: 'translateLabel'
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   346
              #layout: #(#Point 96 135)
1183
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   347
              #activeHelpKey: #labelDerivesFromApplication
1325
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   348
              #tabable: true
1183
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   349
              #model: #translateLabel
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   350
            )
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   351
           #(#LabelSpec
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   352
              #label: 'Help Key:'
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   353
              #name: 'activeHelp'
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   354
              #layout: #(#AlignmentOrigin 98 0 190 0 1 0.5)
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   355
              #resizeForLabel: true
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   356
            )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   357
           #(#InputFieldSpec
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   358
              #name: 'activeHelpKey'
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   359
              #layout: #(#LayoutFrame 100 0 179 0 -5 1.0 201 0)
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   360
              #activeHelpKey: #label
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   361
              #tabable: true
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   362
              #model: #activeHelpKey
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   363
              #group: #inputGroup
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   364
              #type: #symbolOrNil
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   365
              #immediateAccept: true
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   366
              #acceptOnReturn: false
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   367
              #acceptOnTab: false
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   368
              #acceptOnLostFocus: false
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   369
              #acceptChannel: #acceptChannel
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   370
              #modifiedChannel: #modifiedChannel
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   371
              #acceptOnPointerLeave: false
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   372
            )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   373
           )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   374
         
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   375
        )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   376
      )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   377
!
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   378
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   379
canvasSpec
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   380
    "This resource specification was automatically generated
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   381
     by the UIPainter of ST/X."
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   382
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   383
    "Do not manually edit this!! If it is corrupted,
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   384
     the UIPainter may not be able to read the specification."
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   385
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   386
    "
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   387
     UIPainter new openOnClass:TabListEditor andSelector:#canvasSpec
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   388
     TabListEditor new openInterface:#canvasSpec
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   389
    "
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   390
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   391
    <resource: #canvas>
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   392
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   393
    ^ 
1845
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   394
     #(FullSpec
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   395
        name: canvasSpec
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   396
        window: 
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   397
       (WindowSpec
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   398
          label: 'Canvas'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   399
          name: 'Canvas'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   400
          min: (Point 10 10)
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   401
          max: (Point 1280 1024)
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   402
          bounds: (Rectangle 0 0 383 220)
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   403
        )
1845
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   404
        component: 
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   405
       (SpecCollection
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   406
          collection: (
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   407
           (LabelSpec
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   408
              label: 'Class Name / Major Key:'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   409
              name: 'majorKeyLabel'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   410
              layout: (AlignmentOrigin 160 0 26 0 1 0.5)
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   411
              activeHelpKey: majorKey
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   412
              translateLabel: true
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   413
              resizeForLabel: true
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   414
            )
1845
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   415
           (InputFieldSpec
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   416
              name: 'majorKeyField'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   417
              layout: (LayoutFrame 161 0 15 0 -5 1.0 37 0)
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   418
              activeHelpKey: majorKey
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   419
              tabable: true
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   420
              model: majorKey
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   421
              group: inputGroup
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   422
              type: symbolOrNil
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   423
              immediateAccept: true
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   424
              acceptOnReturn: false
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   425
              acceptOnTab: false
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   426
              acceptOnLostFocus: false
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   427
              modifiedChannel: modifiedChannel
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   428
              acceptOnPointerLeave: false
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   429
            )
1845
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   430
           (LabelSpec
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   431
              label: 'Selector / Minor Key:'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   432
              name: 'minorKeyLabel'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   433
              layout: (AlignmentOrigin 160 0 55 0 1 0.5)
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   434
              translateLabel: true
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   435
              resizeForLabel: true
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   436
            )
1845
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   437
           (InputFieldSpec
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   438
              name: 'minorKeyField'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   439
              layout: (LayoutFrame 161 0 44 0 -5 1.0 66 0)
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   440
              activeHelpKey: majorKey
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   441
              tabable: true
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   442
              model: minorKey
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   443
              group: inputGroup
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   444
              type: symbolOrNil
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   445
              immediateAccept: true
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   446
              acceptOnReturn: false
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   447
              acceptOnTab: false
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   448
              acceptOnLostFocus: false
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   449
              modifiedChannel: modifiedChannel
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   450
              acceptOnPointerLeave: false
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   451
            )
1845
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   452
           (FramedBoxSpec
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   453
              label: 'Scroll Bars'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   454
              name: 'FramedBox'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   455
              layout: (LayoutFrame 0 0.0 119 0.0 0 1.0 214 0)
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   456
              labelPosition: topLeft
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   457
              component: 
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   458
             (SpecCollection
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   459
                collection: (
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   460
                 (HorizontalPanelViewSpec
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   461
                    name: 'HorizontalPanel1'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   462
                    layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   463
                    horizontalLayout: fitSpace
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   464
                    verticalLayout: fitSpace
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   465
                    horizontalSpace: 3
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   466
                    verticalSpace: 3
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   467
                    component: 
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   468
                   (SpecCollection
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   469
                      collection: (
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   470
                       (ViewSpec
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   471
                          name: 'Box1'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   472
                          component: 
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   473
                         (SpecCollection
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   474
                            collection: (
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   475
                             (CheckBoxSpec
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   476
                                label: 'Vertical'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   477
                                name: 'verticalScrollBarCheckBox'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   478
                                layout: (LayoutFrame 0 0.0 3 0 0 1.0 27 0)
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   479
                                activeHelpKey: verticalScroller
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   480
                                tabable: true
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   481
                                model: hasVerticalScrollBar
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   482
                                translateLabel: true
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   483
                              )
1845
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   484
                             (CheckBoxSpec
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   485
                                label: 'Mini'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   486
                                name: 'miniScrollerVerticalCheckBox'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   487
                                layout: (LayoutFrame 0 0.0 32 0 0 1.0 56 0)
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   488
                                activeHelpKey: verticalMiniScroller
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   489
                                tabable: true
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   490
                                model: miniScrollerVertical
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   491
                                translateLabel: true
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   492
                              )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   493
                             )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   494
                           
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   495
                          )
1845
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   496
                          useDefaultExtent: true
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   497
                        )
1845
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   498
                       (ViewSpec
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   499
                          name: 'Box2'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   500
                          component: 
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   501
                         (SpecCollection
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   502
                            collection: (
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   503
                             (CheckBoxSpec
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   504
                                label: 'Horizontal'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   505
                                name: 'horizontalScrollBarCheckBox'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   506
                                layout: (LayoutFrame 0 0.0 3 0 0 1.0 27 0)
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   507
                                activeHelpKey: horizontalScroller
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   508
                                tabable: true
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   509
                                model: hasHorizontalScrollBar
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   510
                                translateLabel: true
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   511
                              )
1845
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   512
                             (CheckBoxSpec
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   513
                                label: 'Mini'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   514
                                name: 'miniScrollerHorizontalCheckBox'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   515
                                layout: (LayoutFrame 0 0.0 32 0 0 1.0 56 0)
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   516
                                activeHelpKey: horizontalMiniScroller
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   517
                                tabable: true
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   518
                                model: miniScrollerHorizontal
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   519
                                translateLabel: true
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   520
                              )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   521
                             )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   522
                           
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   523
                          )
1845
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   524
                          extent: (Point 113 57)
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   525
                        )
1845
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   526
                       (ViewSpec
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   527
                          name: 'Box3'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   528
                          component: 
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   529
                         (SpecCollection
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   530
                            collection: (
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   531
                             (LabelSpec
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   532
                                label: 'Auto Hide:'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   533
                                name: 'Label1'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   534
                                layout: (LayoutFrame 0 0.0 6 0 0 1.0 23 0)
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   535
                                translateLabel: true
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   536
                                resizeForLabel: true
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   537
                                adjust: left
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   538
                              )
1845
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   539
                             (PopUpListSpec
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   540
                                label: 'Default'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   541
                                name: 'PopUpList1'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   542
                                layout: (LayoutFrame 0 0.0 32 0 0 1.0 54 0)
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   543
                                activeHelpKey: autoHideScrollBars
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   544
                                tabable: true
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   545
                                model: autoHideScrollBars
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   546
                                menu: 
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   547
                               (Default
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   548
                                  On Off
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   549
                                )
1845
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   550
                                useIndex: true
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   551
                              )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   552
                             )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   553
                           
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   554
                          )
1845
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   555
                          extent: (Point 113 57)
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   556
                        )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   557
                       )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   558
                     
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   559
                    )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   560
                  )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   561
                 )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   562
               
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   563
              )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   564
            )
1845
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   565
           (CheckBoxSpec
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   566
              label: 'Create New Builder'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   567
              name: 'createNewBuilder'
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   568
              layout: (Point 161 75)
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   569
              activeHelpKey: createNewBuilder
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   570
              model: createNewBuilder
d6d62913c2cc translate label; major/minorKey mentioned
ca
parents: 1431
diff changeset
   571
              translateLabel: true
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   572
            )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   573
           )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   574
         
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   575
        )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   576
      )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   577
!
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   578
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   579
detailSpec
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   580
    "This resource specification was automatically generated
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   581
     by the UIPainter of ST/X."
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   582
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   583
    "Do not manually edit this!! If it is corrupted,
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   584
     the UIPainter may not be able to read the specification."
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   585
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   586
    "
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   587
     UIPainter new openOnClass:TabListEditor andSelector:#detailSpec
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   588
     TabListEditor new openInterface:#detailSpec
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   589
    "
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   590
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   591
    <resource: #canvas>
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   592
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   593
    ^ 
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   594
     #(#FullSpec
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   595
        #name: #detailSpec
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   596
        #window: 
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   597
       #(#WindowSpec
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   598
          #label: 'Details'
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   599
          #name: 'Details'
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   600
          #min: #(#Point 10 10)
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   601
          #max: #(#Point 1280 1024)
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   602
          #bounds: #(#Rectangle 12 22 370 129)
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   603
        )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   604
        #component: 
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   605
       #(#SpecCollection
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   606
          #collection: #(
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   607
           #(#CheckBoxSpec
1325
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   608
              #label: 'Can Select'
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   609
              #name: 'enabled'
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   610
              #layout: #(#Point 46 14)
1325
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   611
              #activeHelpKey: #canSelect
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   612
              #tabable: true
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   613
              #model: #enabled
1183
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   614
            )
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   615
           #(#LabelSpec
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   616
              #label: 'Color:'
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   617
              #name: 'ForegroundLabel'
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   618
              #layout: #(#AlignmentOrigin 46 0 62 0 1 0.5)
1183
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   619
              #resizeForLabel: true
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   620
              #adjust: #right
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   621
            )
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   622
           #(#ColorMenuSpec
1325
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   623
              #attributes: 
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   624
             #(#tabable
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   625
                true
a7c38b60f2fb support accelerator and accessCharacter
ca
parents: 1245
diff changeset
   626
              )
1183
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   627
              #name: 'ForegroundColorMenu'
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   628
              #layout: #(#LayoutFrame 48 0 50 0 -10 1.0 72 0)
1183
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   629
              #activeHelpKey: #color
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   630
              #model: #labelForegroundColor
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   631
              #labelsAreColored: false
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   632
            )
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   633
           )
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   634
         
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   635
        )
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   636
      )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   637
!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   638
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   639
windowSpec
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   640
    "This resource specification was automatically generated
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   641
     by the UIPainter of ST/X."
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   642
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   643
    "Do not manually edit this!! If it is corrupted,
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   644
     the UIPainter may not be able to read the specification."
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   645
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   646
    "
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   647
     UIPainter new openOnClass:TabListEditor andSelector:#windowSpec
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   648
     TabListEditor new openInterface:#windowSpec
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   649
     TabListEditor open
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   650
    "
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   651
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   652
    <resource: #canvas>
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   653
1183
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   654
    ^ 
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   655
     #(#FullSpec
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   656
        #name: #windowSpec
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   657
        #window: 
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   658
       #(#WindowSpec
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   659
          #label: 'Tab List Editor'
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   660
          #name: 'Tab List Editor'
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   661
          #min: #(#Point 440 280)
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   662
          #max: #(#Point 1152 900)
1375
bab043fa81fa *** empty log message ***
ca
parents: 1374
diff changeset
   663
          #bounds: #(#Rectangle 596 292 1132 661)
1183
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   664
          #menu: #menu
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   665
        )
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   666
        #component: 
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   667
       #(#SpecCollection
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   668
          #collection: #(
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   669
           #(#MenuPanelSpec
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   670
              #name: 'menuToolbarView'
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   671
              #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 34 0)
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   672
              #menu: #menuToolbar
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   673
              #showSeparatingLines: true
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   674
            )
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   675
           #(#VariableHorizontalPanelSpec
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   676
              #name: 'VariablePanel'
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   677
              #layout: #(#LayoutFrame 0 0.0 36 0.0 0 1.0 -26 1.0)
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   678
              #component: 
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   679
             #(#SpecCollection
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   680
                #collection: #(
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   681
                 #(#SelectionInListModelViewSpec
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   682
                    #attributes: 
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   683
                   #(#vpext
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   684
                      
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   685
                     #(#Array
1374
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   686
                        #Array #Array
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   687
                        #Array #Array
1375
bab043fa81fa *** empty log message ***
ca
parents: 1374
diff changeset
   688
                        #Array #Point
bab043fa81fa *** empty log message ***
ca
parents: 1374
diff changeset
   689
                        0.264414 1.0
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   690
                      )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   691
                    )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   692
                    #name: 'ListOfLabels'
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   693
                    #tabable: true
1183
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   694
                    #model: #selectionHolder
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   695
                    #menu: #menuEdit
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   696
                    #hasHorizontalScrollBar: true
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   697
                    #hasVerticalScrollBar: true
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   698
                    #miniScrollerHorizontal: true
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   699
                    #listModel: #listOfTabs
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   700
                    #highlightMode: #line
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   701
                    #selectConditionSelector: #askForItemModification
1183
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   702
                  )
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   703
                 #(#ViewSpec
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   704
                    #name: 'SpecView'
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   705
                    #level: -1
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   706
                    #component: 
1183
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   707
                   #(#SpecCollection
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   708
                      #collection: #(
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   709
                       #(#NoteBookViewSpec
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   710
                          #name: 'NoteBook'
1183
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   711
                          #layout: #(#LayoutFrame 1 0.0 0 0.0 0 1.0 -30 1.0)
1375
bab043fa81fa *** empty log message ***
ca
parents: 1374
diff changeset
   712
                          #enableChannel: #hasSelectionHolder
1374
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   713
                          #tabable: true
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   714
                          #model: #noteBookModel
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   715
                          #menu: #noteBookTabList
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   716
                          #useIndex: true
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   717
                          #keepCanvasAlive: true
1183
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   718
                        )
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   719
                       #(#UISubSpecification
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   720
                          #name: 'subSpec'
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   721
                          #layout: #(#LayoutFrame 2 0.0 -26 1 -2 1.0 -2 1)
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   722
                          #majorKey: #ToolApplicationModel
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   723
                          #minorKey: #windowSpecForCommit
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   724
                        )
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   725
                       #(#NoteBookViewSpec
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   726
                          #name: 'TestNoteBook'
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   727
                          #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   728
                          #visibilityChannel: #testMode
1374
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   729
                          #tabable: true
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   730
                          #menu: #testItemList
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   731
                          #useIndex: true
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   732
                        )
1183
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   733
                       )
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   734
                     
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   735
                    )
1183
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   736
                  )
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   737
                 )
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   738
               
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   739
              )
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   740
              #handles: #(#Any 0.24053 1.0)
1183
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   741
            )
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   742
           #(#UISubSpecification
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   743
              #name: 'infoBarSubSpec'
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   744
              #layout: #(#LayoutFrame 0 0.0 -24 1 0 1.0 0 1.0)
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   745
              #majorKey: #ToolApplicationModel
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   746
              #minorKey: #windowSpecForInfoBar
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   747
            )
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   748
           )
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   749
         
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   750
        )
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   751
      )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   752
! !
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   753
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   754
!TabListEditor class methodsFor:'list specs'!
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   755
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   756
noteBookTabList
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   757
    "This resource specification was automatically generated
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   758
     by the TabListEditor of ST/X."
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   759
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   760
    "Do not manually edit this!! If it is corrupted,
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   761
     the TabListEditor may not be able to read the specification."
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   762
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   763
    "
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   764
     TabListEditor new openOnClass:TabListEditor andSelector:#noteBookTabList
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   765
    "
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   766
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   767
    <resource: #tabList>
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   768
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   769
    ^     #(
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   770
       #(#TabItem
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   771
          #label: 'Basic'
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   772
          #activeHelpKey: #basicTab
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   773
          #minorKey: #basicSpec
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   774
        )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   775
       #(#TabItem
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   776
          #label: 'Details'
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   777
          #activeHelpKey: #detailTab
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   778
          #minorKey: #detailSpec
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   779
        )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   780
       #(#TabItem
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   781
          #label: 'Canvas'
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   782
          #activeHelpKey: #canvasTab
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   783
          #minorKey: #canvasSpec
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   784
        )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   785
       )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   786
     
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   787
      collect:[:aTab| TabItem new fromLiteralArrayEncoding:aTab ]
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   788
! !
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   789
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   790
!TabListEditor class methodsFor:'menu specs'!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   791
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   792
menu
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   793
    "This resource specification was automatically generated
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   794
     by the MenuEditor of ST/X."
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   795
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   796
    "Do not manually edit this!! If it is corrupted,
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   797
     the MenuEditor may not be able to read the specification."
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   798
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   799
    "
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   800
     MenuEditor new openOnClass:TabListEditor andSelector:#menu
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   801
     (Menu new fromLiteralArrayEncoding:(TabListEditor menu)) startUp
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   802
    "
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   803
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   804
    <resource: #menu>
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   805
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   806
    ^
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   807
     
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   808
       #(#Menu
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   809
          
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   810
           #(
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   811
             #(#MenuItem
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   812
                #label: 'About'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   813
                #activeHelpKey: #about
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   814
                #labelImage: #(#ResourceRetriever nil #menuIcon)
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   815
                #submenuChannel: #menuAbout
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   816
            )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   817
             #(#MenuItem
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   818
                #label: 'File'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   819
                #activeHelpKey: #file
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   820
                #submenu: 
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   821
                 #(#Menu
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   822
                    
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   823
                     #(
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   824
                       #(#MenuItem
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   825
                          #label: 'New'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   826
                          #value: #doNew
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   827
                          #activeHelpKey: #fileNew
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   828
                      )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   829
                       #(#MenuItem
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   830
                          #label: '-'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   831
                      )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   832
                       #(#MenuItem
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   833
                          #label: 'Load...'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   834
                          #translateLabel: true
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   835
                          #value: #doLoad
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   836
                          #activeHelpKey: #fileLoad
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   837
                      )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   838
                       #(#MenuItem
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   839
                          #label: '-'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   840
                      )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   841
                       #(#MenuItem
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   842
                          #label: 'Save'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   843
                          #value: #doSave
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   844
                          #activeHelpKey: #fileSave
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   845
                      )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   846
                       #(#MenuItem
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   847
                          #label: 'Save As...'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   848
                          #value: #doSaveAs
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   849
                          #activeHelpKey: #fileSave
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   850
                      )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   851
                       #(#MenuItem
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   852
                          #label: '-'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   853
                      )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   854
                       #(#MenuItem
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   855
                          #label: 'Browse Class'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   856
                          #value: #doBrowseClass
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   857
                          #activeHelpKey: #fileBrowseClass
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   858
                      )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   859
                       #(#MenuItem
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   860
                          #label: '-'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   861
                      )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   862
                       #(#MenuItem
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   863
                          #label: 'Exit'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   864
                          #value: #closeRequest
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   865
                          #activeHelpKey: #fileExit
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   866
                      )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   867
                    ) nil
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   868
                    nil
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   869
                )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   870
            )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   871
             #(#MenuItem
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   872
                #label: 'Edit'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   873
                #activeHelpKey: #edit
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   874
                #submenuChannel: #menuEdit
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   875
            )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   876
             #(#MenuItem
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   877
                #label: 'Add'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   878
                #activeHelpKey: #add
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   879
                #submenu: 
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   880
                 #(#Menu
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   881
                    
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   882
                     #(
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   883
                       #(#MenuItem
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   884
                          #label: 'Tab Item'
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   885
                          #value: #doCreate
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   886
                          #activeHelpKey: #addTabItem
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   887
                          #labelImage: #(#ResourceRetriever nil #newTabItemIcon 'Tab Item')
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   888
                      )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   889
                    ) nil
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   890
                    nil
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   891
                )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   892
            )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   893
             #(#MenuItem
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   894
                #label: 'Generate'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   895
                #activeHelpKey: #add
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   896
                #submenu: 
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   897
                 #(#Menu
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   898
                    
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   899
                     #(
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   900
                       #(#MenuItem
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   901
                          #label: 'Aspect Method'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   902
                          #value: #doGenerateAspectMethod
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   903
                          #activeHelpKey: #fileCreateAspectMethod
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   904
                          #enabled: #hasClassAndSelector
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   905
                      )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   906
                    ) nil
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   907
                    nil
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   908
                )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   909
            )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   910
             #(#MenuItem
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   911
                #label: 'Test'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   912
                #activeHelpKey: #test
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   913
                #submenu: 
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   914
                 #(#Menu
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   915
                    
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   916
                     #(
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   917
                       #(#MenuItem
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   918
                          #label: 'Preview'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   919
                          #activeHelpKey: #testPreview
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
   920
                          #enabled: #canToggleTestMode
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   921
                          #indication: #testMode
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   922
                      )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   923
                    ) nil
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   924
                    nil
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   925
                )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   926
            )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   927
             #(#MenuItem
749
8f8767c6f32f update other instances if clipboarding
tz
parents: 739
diff changeset
   928
                #label: 'History'
8f8767c6f32f update other instances if clipboarding
tz
parents: 739
diff changeset
   929
                #activeHelpKey: #history
8f8767c6f32f update other instances if clipboarding
tz
parents: 739
diff changeset
   930
                #submenuChannel: #menuHistory
8f8767c6f32f update other instances if clipboarding
tz
parents: 739
diff changeset
   931
            )
8f8767c6f32f update other instances if clipboarding
tz
parents: 739
diff changeset
   932
             #(#MenuItem
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   933
                #label: 'Help'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   934
                #startGroup: #right
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   935
                #activeHelpKey: #help
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   936
                #submenuChannel: #menuHelp
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   937
            )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   938
          ) nil
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   939
          nil
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   940
      )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   941
!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   942
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   943
menuEdit
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   944
    "This resource specification was automatically generated
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   945
     by the MenuEditor of ST/X."
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   946
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   947
    "Do not manually edit this!! If it is corrupted,
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   948
     the MenuEditor may not be able to read the specification."
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   949
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   950
    "
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   951
     MenuEditor new openOnClass:TabListEditor andSelector:#menuEdit
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   952
     (Menu new fromLiteralArrayEncoding:(TabListEditor menuEdit)) startUp
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   953
    "
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   954
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   955
    <resource: #menu>
cc3413fc1afb initial checkin
tz
parents:
diff changeset
   956
1374
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   957
    ^ 
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   958
     #(#Menu
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   959
        #(
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   960
         #(#MenuItem
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   961
            #label: 'Cut'
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   962
            #value: #doCut
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   963
            #activeHelpKey: #editCut
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   964
            #enabled: #hasSelectionHolder
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   965
          )
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   966
         #(#MenuItem
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   967
            #label: 'Copy'
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   968
            #value: #doCopy
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   969
            #activeHelpKey: #editCopy
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   970
            #enabled: #hasSelectionHolder
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   971
          )
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   972
         #(#MenuItem
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   973
            #label: 'Paste'
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   974
            #value: #doPaste
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   975
            #activeHelpKey: #editPaste
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   976
            #enabled: #valueOfCanPaste
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   977
          )
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   978
         #(#MenuItem
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   979
            #label: 'Delete'
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   980
            #value: #doDelete
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   981
            #activeHelpKey: #editPaste
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   982
            #enabled: #hasSelectionHolder
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   983
          )
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   984
         #(#MenuItem
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   985
            #label: '-'
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   986
          )
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   987
         #(#MenuItem
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   988
            #label: 'Move Up'
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   989
            #value: #doMoveTabUpOrDown:
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   990
            #activeHelpKey: #editMoveUp
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   991
            #enabled: #canMoveTabItemUpOrDown
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   992
            #argument: #up
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   993
            #labelImage: #(#ResourceRetriever #Icon #upIcon 'Move Up')
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   994
          )
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   995
         #(#MenuItem
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   996
            #label: 'Move Down'
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   997
            #value: #doMoveTabUpOrDown:
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   998
            #activeHelpKey: #editMoveDown
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
   999
            #enabled: #canMoveTabItemUpOrDown
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1000
            #argument: #down
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1001
            #labelImage: #(#ResourceRetriever #Icon #downIcon 'Move Down')
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1002
          )
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1003
         #(#MenuItem
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1004
            #label: '-'
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1005
            #isVisible: #hiddenAccelerator
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1006
          )
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1007
         #(#MenuItem
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1008
            #label: 'Accept'
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1009
            #translateLabel: true
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1010
            #isVisible: #hiddenAccelerator
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1011
            #value: #accept
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1012
            #enabled: #valueOfEnablingCommitButtons
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1013
          )
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1014
         )
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1015
        nil
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1016
        nil
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1017
      )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1018
!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1019
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1020
menuToolbar
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1021
    "This resource specification was automatically generated
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1022
     by the MenuEditor of ST/X."
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1023
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1024
    "Do not manually edit this!! If it is corrupted,
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1025
     the MenuEditor may not be able to read the specification."
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1026
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1027
    "
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1028
     MenuEditor new openOnClass:TabListEditor andSelector:#menuToolbar
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1029
     (Menu new fromLiteralArrayEncoding:(TabListEditor menuToolbar)) startUp
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1030
    "
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1031
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1032
    <resource: #menu>
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1033
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1034
    ^ 
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1035
     #(#Menu
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1036
        #(
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1037
         #(#MenuItem
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1038
            #label: 'New'
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1039
            #isButton: true
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1040
            #value: #doNew
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1041
            #activeHelpKey: #fileNew
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1042
            #labelImage: #(#ResourceRetriever #Icon #newIcon)
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1043
          )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1044
         #(#MenuItem
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1045
            #label: 'Load'
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1046
            #isButton: true
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1047
            #value: #doLoad
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1048
            #activeHelpKey: #fileLoad
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1049
            #labelImage: #(#ResourceRetriever #Icon #loadIcon)
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1050
          )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1051
         #(#MenuItem
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1052
            #label: 'Save'
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1053
            #isButton: true
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1054
            #value: #doSave
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1055
            #activeHelpKey: #fileSave
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1056
            #labelImage: #(#ResourceRetriever #Icon #saveIcon)
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1057
          )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1058
         #(#MenuItem
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1059
            #label: ''
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1060
          )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1061
         #(#MenuItem
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1062
            #label: 'Cut'
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1063
            #isButton: true
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1064
            #value: #doCut
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1065
            #activeHelpKey: #editCut
1374
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1066
            #enabled: #hasSelectionHolder
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1067
            #labelImage: #(#ResourceRetriever #Icon #cutIcon)
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1068
          )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1069
         #(#MenuItem
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1070
            #label: 'Copy'
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1071
            #isButton: true
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1072
            #value: #doCopy
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1073
            #activeHelpKey: #editCopy
1374
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1074
            #enabled: #hasSelectionHolder
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1075
            #labelImage: #(#ResourceRetriever #Icon #copyIcon)
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1076
          )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1077
         #(#MenuItem
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1078
            #label: 'Paste'
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1079
            #isButton: true
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1080
            #value: #doPaste
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1081
            #activeHelpKey: #editPaste
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1082
            #enabled: #valueOfCanPaste
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1083
            #labelImage: #(#ResourceRetriever #Icon #pasteIcon)
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1084
          )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1085
         #(#MenuItem
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1086
            #label: 'Delete'
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1087
            #isButton: true
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1088
            #value: #doDelete
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1089
            #activeHelpKey: #editDelete
1374
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1090
            #enabled: #hasSelectionHolder
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1091
            #labelImage: #(#ResourceRetriever #Icon #deleteIcon)
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1092
          )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1093
         #(#MenuItem
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1094
            #label: ''
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1095
          )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1096
         #(#MenuItem
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1097
            #label: 'Add Tab Item'
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1098
            #isButton: true
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1099
            #value: #doCreate
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1100
            #activeHelpKey: #addTabItem
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1101
            #labelImage: #(#ResourceRetriever nil #newTabItemIcon)
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1102
          )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1103
         #(#MenuItem
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1104
            #label: ''
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1105
          )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1106
         #(#MenuItem
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1107
            #label: 'Move Tab Up'
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1108
            #isButton: true
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1109
            #value: #doMoveTabUpOrDown:
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1110
            #activeHelpKey: #editMoveUp
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1111
            #enabled: #canMoveTabItemUpOrDown
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1112
            #argument: #up
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1113
            #labelImage: #(#ResourceRetriever #Icon #upIcon)
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1114
          )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1115
         #(#MenuItem
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1116
            #label: 'Move Tab Down'
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1117
            #isButton: true
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1118
            #value: #doMoveTabUpOrDown:
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1119
            #activeHelpKey: #editMoveDown
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1120
            #enabled: #canMoveTabItemUpOrDown
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1121
            #argument: #down
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1122
            #labelImage: #(#ResourceRetriever #Icon #downIcon)
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1123
          )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1124
         )
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1125
        nil
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1126
        nil
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1127
      )
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1128
! !
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1129
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1130
!TabListEditor methodsFor:'aspects'!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1131
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1132
autoHideScrollBars
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1133
    |holder|
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1134
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1135
    (holder := builder bindingAt:#autoHideScrollBars) isNil ifTrue:[
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1136
        builder aspectAt:#autoHideScrollBars put:(holder := 1 asValue).
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1137
        holder addDependent: self
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1138
    ].
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1139
    ^ holder.
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1140
!
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1141
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1142
canMoveTabItemUpOrDown
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1143
    ^ builder booleanValueAspectFor:#canMoveTabItemUpOrDown
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1144
!
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1145
1374
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1146
hasSelectionHolder
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1147
    ^ builder booleanValueAspectFor:#hasSelectionHolder
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1148
!
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1149
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1150
hiddenAccelerator
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1151
    "used to set menu entries with an accelerator not visible to the operator
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1152
    "
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1153
    ^ false
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1154
!
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1155
1326
295fe7dc6fbb add inputGroup
ca
parents: 1325
diff changeset
  1156
inputGroup
295fe7dc6fbb add inputGroup
ca
parents: 1325
diff changeset
  1157
295fe7dc6fbb add inputGroup
ca
parents: 1325
diff changeset
  1158
    |holder|
295fe7dc6fbb add inputGroup
ca
parents: 1325
diff changeset
  1159
295fe7dc6fbb add inputGroup
ca
parents: 1325
diff changeset
  1160
    (holder := builder bindingAt:#inputGroup) isNil ifTrue:[
295fe7dc6fbb add inputGroup
ca
parents: 1325
diff changeset
  1161
        builder aspectAt:#inputGroup put:(holder := EnterFieldGroup new)
295fe7dc6fbb add inputGroup
ca
parents: 1325
diff changeset
  1162
    ].
295fe7dc6fbb add inputGroup
ca
parents: 1325
diff changeset
  1163
    ^ holder.
295fe7dc6fbb add inputGroup
ca
parents: 1325
diff changeset
  1164
295fe7dc6fbb add inputGroup
ca
parents: 1325
diff changeset
  1165
295fe7dc6fbb add inputGroup
ca
parents: 1325
diff changeset
  1166
!
295fe7dc6fbb add inputGroup
ca
parents: 1325
diff changeset
  1167
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1168
listOfTabs
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1169
    ^ listOfTabs
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1170
!
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1171
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1172
noteBookModel
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1173
    |holder|
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1174
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1175
    (holder := builder bindingAt:#noteBookModel) isNil ifTrue:[
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1176
        holder := 0 asValue.
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1177
        builder aspectAt:#noteBookModel put:holder.
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1178
    ].
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1179
    ^ holder.
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1180
!
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1181
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1182
noteBookTabList
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1183
    "Generated by the TabListEditor"
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1184
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1185
    |list|
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1186
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1187
    (list := builder bindingAt:#noteBookTabList) isNil ifTrue:[
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1188
        builder aspectAt:#noteBookTabList put:(list := self class noteBookTabList).
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1189
    ].
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1190
    ^ list
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1191
!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1192
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1193
selectionHolder
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1194
    "holder which keeps the current selection
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1195
    "
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1196
    |holder|
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1197
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1198
    (holder := builder bindingAt:#selectionHolder) isNil ifTrue:[
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1199
        holder := 0 asValue.
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1200
        builder aspectAt:#selectionHolder put:holder.
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1201
        holder addDependent:self.
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1202
    ].
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1203
    ^ holder
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1204
!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1205
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1206
testItemList
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1207
    |holder|
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1208
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1209
    (holder := builder bindingAt:#testItemList) isNil ifTrue:[
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1210
        holder := ValueHolder new.
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1211
        builder aspectAt:#testItemList put:holder.
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1212
    ].
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1213
    ^ holder.
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1214
!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1215
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1216
testMode
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1217
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1218
    |holder|
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1219
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1220
    (holder := builder bindingAt:#testMode) isNil ifTrue:[
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1221
        builder aspectAt:#testMode put:(holder := false asValue).
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1222
        holder addDependent: self
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1223
    ].
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1224
    ^ holder
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1225
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1226
! !
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1227
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1228
!TabListEditor methodsFor:'building'!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1229
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1230
buildFromClass:aClass andSelector:aSelector
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1231
    "build from class and selector
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1232
    "
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1233
    |cls spec|
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1234
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1235
    self testMode value: false.
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1236
    self selection:0.
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1237
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1238
    "if opened on a tab list"
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1239
    (aClass isNil and: [aSelector isNil and: [listOfTabs size > 0]]) ifTrue:[
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1240
        listOfTabs notEmpty ifTrue:[self selection:1].
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1241
      ^ nil
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1242
    ].
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1243
    listOfTabs removeAll.
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1244
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1245
    cls := self resolveName:aClass.
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1246
    specSelector := aSelector.
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1247
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1248
    cls notNil ifTrue:[
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1249
        specSelector notNil ifTrue:[
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1250
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1251
            (cls respondsTo:specSelector) ifTrue:[
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1252
                spec := cls perform:specSelector.
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1253
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1254
                spec size ~~ 0 ifTrue:[
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1255
                    spec do:[:aTab|
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1256
                        listOfTabs add:aTab.
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1257
                    ].
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1258
                    self addToHistory:(cls name, ' ', specSelector) -> #loadFromMessage:                        
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1259
                ]
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1260
            ]
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1261
        ]
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1262
    ].
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1263
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1264
    modified := false.
1374
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1265
    listOfTabs notEmpty ifTrue:[ self selection:1 ].
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1266
!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1267
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1268
buildFromResourceSpec:aListSpec
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1269
    self buildFromTabList:aListSpec
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1270
!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1271
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1272
buildFromTabList: aTabList
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1273
    "build from a aTabList"
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1274
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1275
    self selection:0.
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1276
    listOfTabs removeAll.
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1277
1374
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1278
    aTabList do:[:aTabItem| listOfTabs add: aTabItem ].
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1279
    modified := false.
1374
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1280
    listOfTabs notEmpty ifTrue:[ self selection:1 ].
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1281
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1282
! !
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1283
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1284
!TabListEditor methodsFor:'change & update'!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1285
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1286
update:something with:aParameter from:someObject
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1287
    "one of my aspects has changed; update modified channel
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1288
    "
1374
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1289
    |list|
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1290
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1291
    someObject = self selectionHolder ifTrue:[
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1292
        ^ self selectionChanged
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1293
    ].
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1294
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1295
    someObject = self testMode ifFalse:[              
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1296
        ^ super update:something with:aParameter from:someObject.
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1297
    ].
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1298
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1299
    someObject value ifTrue:[
1375
bab043fa81fa *** empty log message ***
ca
parents: 1374
diff changeset
  1300
        self noteBookModel value:0.
bab043fa81fa *** empty log message ***
ca
parents: 1374
diff changeset
  1301
1374
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1302
        listOfTabs notEmpty ifTrue:[
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1303
            list := listOfTabs collect:[:aTab| |tab|
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1304
                tab := aTab copy.
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1305
                tab setAttributesFromClass:specClass.
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1306
                tab
1374
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1307
            ]
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1308
        ].
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1309
        self selection:0.
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1310
    ].
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1311
    self testItemList value:list.
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1312
    self updateInfoLabel.
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1313
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1314
! !
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1315
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1316
!TabListEditor methodsFor:'queries'!
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1317
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1318
canToggleTestMode
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1319
    "checks whether testMode button is enabled
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1320
    "
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1321
    self testMode value ifTrue:[
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1322
        ^ true
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1323
    ].
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1324
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1325
    self valueOfEnablingCommitButtons value ifFalse:[
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1326
        ^ listOfTabs notEmpty
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1327
    ].
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1328
    ^ false
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1329
! !
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1330
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1331
!TabListEditor methodsFor:'selection'!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1332
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1333
selectedElement
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1334
    |idx tab|
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1335
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1336
    idx := self selection.
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1337
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1338
    idx ~~ 0 ifTrue:[
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1339
        (tab := listOfTabs at:idx ifAbsent:nil) notNil ifTrue:[
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1340
            ^ tab
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1341
        ].
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1342
        self selection:0
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1343
    ].
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1344
    ^ nil
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1345
!
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1346
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1347
selection
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1348
    ^ self selectionHolder value ? 0
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1349
!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1350
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1351
selection:anIndex
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1352
    self selectionHolder value:(anIndex ? 0).
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1353
!
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1354
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1355
selectionChanged
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1356
    |noteBookModel hasSelection|
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1357
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1358
    hasSelection  := self selection ~~ 0.
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1359
    noteBookModel := self noteBookModel.
1145
8d3ca8f7bb71 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  1360
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1361
    hasSelection ifTrue:[
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1362
        self testMode value:false.
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1363
        noteBookModel value == 0 ifTrue:[noteBookModel value:1]
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1364
    ] ifFalse:[
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1365
        noteBookModel value:0
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1366
    ].
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1367
    self cancel.
1374
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1368
    self hasSelectionHolder value:hasSelection.
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1369
    self valueOfCanPaste.
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1370
!
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1371
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1372
setSelection:anIndex
1374
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1373
    |index|
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1374
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1375
    index := anIndex ? 0.
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1376
    self selectionHolder value:index withoutNotifying:self
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1377
! !
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1378
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1379
!TabListEditor methodsFor:'startup / release'!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1380
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1381
initialize
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1382
    "setup aspects used by column description specifications
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1383
    "
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1384
    super initialize.
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1385
    listOfTabs := List new.
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1386
!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1387
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1388
openModalOnTabList: aTabList
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1389
    "build a tab list from aTabList and open it modal"
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1390
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1391
    super openModalOnResourceSpec: aTabList
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1392
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1393
! !
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1394
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1395
!TabListEditor methodsFor:'user actions'!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1396
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1397
accept
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1398
    "accept changes
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1399
    "
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1400
    |tab idx asb|
1066
5096f66ba82d new inputField accept/modified behavior
Claus Gittinger <cg@exept.de>
parents: 883
diff changeset
  1401
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1402
    (tab := self selectedElement) notNil ifTrue:[
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1403
        super accept.
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1404
        aspects keysAndValuesDo:[:k :m| tab perform:(k , ':') asSymbol with:(m value) ].
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1405
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1406
        asb := self autoHideScrollBars value.
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1407
        asb := asb ~~ 1 ifTrue:[asb == 2] ifFalse:[nil].
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1408
        tab autoHideScrollBars:asb.
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1409
    ].
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1410
    self cancel.
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1411
!
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1412
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1413
addTab:aTab
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1414
    |idx|
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1415
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1416
    aTab notNil ifTrue:[
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1417
        self testMode value: false.
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1418
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1419
        (idx := self selection) == 0 ifTrue:[
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1420
            listOfTabs add:aTab.
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1421
            self selection:(listOfTabs size).
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1422
        ] ifFalse:[
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1423
            listOfTabs add:aTab afterIndex:idx
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1424
        ].
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1425
        modified := true.
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1426
    ].
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1427
!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1428
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1429
cancel
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1430
    "cancel all changes
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1431
    "
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1432
    |tab idx asb|
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1433
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1434
    (     (idx := self selection) ~~ 0
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1435
     and:[(tab := self selectedElement) notNil]
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1436
    ) ifTrue:[
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1437
        aspects keysAndValuesDo:[:k :m| m value:(tab perform:k) ].
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1438
        listOfTabs at:idx put:tab.
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1439
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1440
        asb := tab autoHideScrollBars.
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1441
        asb notNil ifTrue:[asb := asb == true ifTrue:[2] ifFalse:[3]]
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1442
                  ifFalse:[asb := 1].
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1443
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1444
        self autoHideScrollBars value:asb.
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1445
    ].
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1446
    self canMoveTabItemUpOrDown value:(listOfTabs size > 1 and:[idx ~~ 0]).
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1447
    self valueOfEnablingCommitButtons value: false
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1448
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1449
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1450
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1451
!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1452
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1453
doCopy
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1454
    "copy selected tab
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1455
    "
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1456
    |tab|
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1457
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1458
    (tab := self selectedElement) notNil ifTrue:[
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1459
        self clipboard:tab.
749
8f8767c6f32f update other instances if clipboarding
tz
parents: 739
diff changeset
  1460
        self updateAllToolInstances.
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1461
    ]
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1462
!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1463
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1464
doCreate
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1465
    self addTab:(TabItem label:'TAB').
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1466
!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1467
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1468
doCut
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1469
    "cut the selected tab; put to pasteBuffer
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1470
    "
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1471
    |tab|
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1472
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1473
    (tab := self selectedElement) notNil ifTrue:[
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1474
        self clipboard:tab.
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1475
        self doDelete.
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1476
    ].
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1477
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1478
!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1479
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1480
doDelete
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1481
    "delete selected tab
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1482
    "
1374
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1483
    |index size|
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1484
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1485
    (index := self selection) ~~ 0 ifTrue:[
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1486
        self testMode value: false.
1374
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1487
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1488
        (size := listOfTabs size) == 1 ifTrue:[
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1489
            self selection:0
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1490
        ] ifFalse:[
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1491
            self setSelection:0
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1492
        ].
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1493
        listOfTabs removeIndex:index.
1374
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1494
        index < size ifFalse:[
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1495
            index := index - 1
635e878e5c09 checkin from browser
ca
parents: 1373
diff changeset
  1496
        ].
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1497
        self selection:index.
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1498
        self updateAllToolInstances.
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1499
        modified := true.
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1500
    ].       
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1501
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1502
!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1503
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1504
doGenerateAspectMethod
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1505
    "generate aspect method
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1506
    "
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1507
    |cls code|
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1508
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1509
    (specClass notNil and:[specSelector notNil])
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1510
    ifFalse:
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1511
    [
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1512
        ^self information:'No class and selector defined!!'   
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1513
    ].
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1514
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1515
    cls := self resolveName: specClass.
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1516
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1517
    (cls canUnderstand:specSelector) ifTrue:[
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1518
        "/ method already exists, do not overwrite the method automaticaly
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1519
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1520
        ( YesNoBox title:'method '
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1521
                         , (Text string:('#', specSelector) emphasis:#bold)
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1522
                         , ' already exists!!'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1523
                 yesText:'overwrite'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1524
                  noText:'cancel'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1525
        ) confirm ifFalse:[
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1526
            ^ self
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1527
        ]
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1528
    ].
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1529
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1530
    code := '!!' , cls name , ' methodsFor:''aspects''!!\\' ,
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1531
            specSelector , '\' ,
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1532
            '    "Generated by the TabListEditor"\' ,
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1533
            '\' ,
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1534
            '    |list|\' ,
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1535
            '\' ,
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1536
            '    (list := builder bindingAt:#' , specSelector , ') isNil ifTrue:[\' ,
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1537
            '        builder aspectAt:#' , specSelector, ' put:(list := self class ', specSelector, ').\' ,
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1538
            '    ].\' ,
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1539
            '    ^ list\' ,
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1540
            '!! !!\\'.
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1541
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1542
    (ReadStream on:(code withCRs)) fileIn
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1543
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1544
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1545
!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1546
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1547
doMoveTabUpOrDown:what
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1548
    "step up or down
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1549
    "
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1550
    |tab idx sz|
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1551
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1552
    (listOfTabs size > 1 and:[(idx := self selection) ~~ 0]) ifFalse:[
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1553
        ^ self
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1554
    ].
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1555
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1556
    (tab := listOfTabs at:idx ifAbsent:nil) isNil ifTrue:[
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1557
        ^ self selection:0
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1558
    ].
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1559
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1560
    self setSelection:0.
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1561
    listOfTabs removeIndex:idx.
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1562
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1563
    sz := listOfTabs size.
1145
8d3ca8f7bb71 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  1564
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1565
    what == #down ifTrue:[
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1566
        idx := idx > sz ifTrue:[1] ifFalse:[idx + 1]
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1567
    ] ifFalse:[
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1568
        idx := idx == 1 ifTrue:[sz + 1] ifFalse:[idx - 1]
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1569
    ].
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1570
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1571
    listOfTabs add:tab beforeIndex:idx.
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1572
    self setSelection:idx.
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1573
    modified := true.
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1574
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1575
!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1576
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1577
doPaste
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1578
    "paste a tab
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1579
    "
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1580
    |tab|
1145
8d3ca8f7bb71 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1066
diff changeset
  1581
1373
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1582
    ((tab := self class clipboard) notNil and:[tab isKindOf:TabItem]) ifTrue:[
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1583
        self addTab:(tab deepCopy).
623e692f53fc add more functionality; canvas and help
ca
parents: 1326
diff changeset
  1584
    ]
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1585
!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1586
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1587
doSave
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1588
    "generate code for class and instance
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1589
    "
1245
fd0127c25b66 encoding & decoding
ca
parents: 1183
diff changeset
  1590
    |cls code spec category mthd list|
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1591
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1592
    (specClass notNil and:[specSelector notNil])
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1593
    ifFalse:
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1594
    [
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1595
        ^self doSaveAs
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1596
    ].
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1597
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1598
    cls := self resolveName: specClass.
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1599
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1600
    listOfTabs isEmpty ifTrue:[^self information:'No tab list defined!!'].
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1601
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1602
    spec  := WriteStream on:String new.
1245
fd0127c25b66 encoding & decoding
ca
parents: 1183
diff changeset
  1603
    list := Array new:(listOfTabs size).
fd0127c25b66 encoding & decoding
ca
parents: 1183
diff changeset
  1604
    listOfTabs keysAndValuesDo:[:i :el|list at:i put:(el literalArrayEncoding)].
fd0127c25b66 encoding & decoding
ca
parents: 1183
diff changeset
  1605
fd0127c25b66 encoding & decoding
ca
parents: 1183
diff changeset
  1606
    UISpecification prettyPrintSpecArray:list on:spec indent:5.
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1607
    spec := spec contents.
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1608
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1609
    "/ if that method already exists, do not overwrite the category
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1610
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1611
    category := 'list specs'.
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1612
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1613
    (mthd := cls class compiledMethodAt:specSelector) notNil ifTrue:[
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1614
        category := mthd category.
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1615
    ].
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1616
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1617
    code := Character excla asString 
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1618
            , cls name , ' class methodsFor:' , category storeString
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1619
            , Character excla asString , '\\'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1620
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1621
            , specSelector , '\'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1622
            , (self class codeGenerationComment replChar:$!! withString:'!!!!')
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1623
            , '\\    "\'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1624
            , '     TabListEditor new openOnClass:' , cls name , ' andSelector:#' , specSelector , '\'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1625
            , '    "\'.
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1626
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1627
    code := code 
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1628
            , '\'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1629
            , '    <resource: #tabList>\\'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1630
            , '    ^' 
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1631
            , '     ', spec, '\'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1632
            , '      collect:[:aTab| TabItem new fromLiteralArrayEncoding:aTab ]'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1633
            , '\'
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1634
            , Character excla asString
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1635
            , ' '
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1636
            , Character excla asString
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1637
            , '\'.
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1638
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1639
    code := code withCRs.
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1640
    (ReadStream on:code) fileIn.
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1641
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1642
    (cls canUnderstand:specSelector) ifFalse:[
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1643
        (YesNoBox confirm:'Generate aspect method?') ifTrue:[
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1644
            self doGenerateAspectMethod
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1645
        ]
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1646
    ].
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1647
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1648
    self addToHistory:(cls name, ' ', specSelector) -> #loadFromMessage:.
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1649
    modified  := false.
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1650
    hasSaved  := true.
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1651
! !
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1652
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1653
!TabListEditor class methodsFor:'documentation'!
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1654
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1655
version
1066
5096f66ba82d new inputField accept/modified behavior
Claus Gittinger <cg@exept.de>
parents: 883
diff changeset
  1656
    ^ '$Header$'
739
cc3413fc1afb initial checkin
tz
parents:
diff changeset
  1657
! !