Tools__ProjectDefinitionEditor.st
author ca
Wed, 05 Dec 2007 12:51:40 +0100
changeset 2207 7f16eb639cc1
parent 2146 a5ce8e00652f
child 2666 316855d0ca7d
permissions -rw-r--r--
tabing order
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"{ Package: 'stx:libtool2' }"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
"{ NameSpace: Tools }"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
ResourceSpecEditor subclass:#ProjectDefinitionEditor
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
     6
	instanceVariableNames:'definitionClass classList extensionsList selectedClassIndexHolder
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
		classesTableColumns revisionNrHolder companyNameHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
		fileMajorVersionNrHolder minorVersionNrHolder iconFileNameHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
		fileReleaseNrHolder productNameHolder majorVersionNrHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
		fileRevisionNrHolder fileDescriptionHolder releaseNrHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
		fileMinorVersionNrHolder descriptionHolder legalCopyrightHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
		isApplicationDefinitionHolder isNonGUIApplicationHolder
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    13
		startSinglethreadedHolder hasConsoleHolder shownHasConsoleHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    14
		startupClassNameHolder startupSelectorHolder prerequisitesList
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    15
		classListHolder extensionsListHolder prerequisitesListHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    16
		documentExtensionsListStringHolder stcOptimizationFlagsHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    17
		ccOptimizationFlagsHolder'
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	classVariableNames:''
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	poolDictionaries:''
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	category:'Interface-Tools'
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
Object subclass:#ClassListEntry
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
	instanceVariableNames:'className autoloaded win32 unix'
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
	classVariableNames:''
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
	poolDictionaries:''
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
	privateIn:ProjectDefinitionEditor
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
    30
Object subclass:#ExtensionsListEntry
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
    31
	instanceVariableNames:'className selector'
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
    32
	classVariableNames:''
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
    33
	poolDictionaries:''
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
    34
	privateIn:ProjectDefinitionEditor
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
    35
!
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
    36
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
    37
Object subclass:#PrerequisitesListEntry
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
    38
	instanceVariableNames:'package'
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
    39
	classVariableNames:''
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
    40
	poolDictionaries:''
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
    41
	privateIn:ProjectDefinitionEditor
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
    42
!
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
    43
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
!ProjectDefinitionEditor class methodsFor:'documentation'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
documentation
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
    unfinished app-definition editor
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
    [author:]
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
    51
	cg (cg@FUSI)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
    [instance variables:]
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
    [class variables:]
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
    [see also:]
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
examples
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
  Starting the application:
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
    65
								[exBegin]
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
    (ProjectDefinitionEditor new
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
    67
	definitionClass:stx_libbasic) open
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
    68
								[exEnd]
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
    70
								[exBegin]
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
    (ProjectDefinitionEditor new
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
    72
	definitionClass:bosch_dapasx_application) open
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
    73
								[exEnd]
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    75
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    76
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    77
!ProjectDefinitionEditor class methodsFor:'help specs'!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    78
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    79
flyByHelpSpec
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    80
    "This resource specification was automatically generated
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    81
     by the UIHelpTool of ST/X."
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    82
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    83
    "Do not manually edit this!! If it is corrupted,
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    84
     the UIHelpTool may not be able to read the specification."
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    85
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    86
    "
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    87
     UIHelpTool openOnClass:Tools::ProjectDefinitionEditor    
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    88
    "
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    89
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    90
    <resource: #help>
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    91
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    92
    ^ super flyByHelpSpec addPairsFrom:#(
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    93
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    94
#documentExtensions
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    95
'";"-separated list of file extensions'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    96
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    97
)
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    98
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
    99
    "Created: / 15-10-2006 / 14:34:57 / cg"
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   100
!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   101
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   102
helpSpec
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   103
    "This resource specification was automatically generated
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   104
     by the UIHelpTool of ST/X."
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   105
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   106
    "Do not manually edit this!! If it is corrupted,
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   107
     the UIHelpTool may not be able to read the specification."
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   108
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   109
    "
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   110
     UIHelpTool openOnClass:Tools::ProjectDefinitionEditor    
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   111
    "
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   112
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   113
    <resource: #help>
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   114
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   115
    ^ super helpSpec addPairsFrom:#(
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   116
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   117
#documentExtensions
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   118
'";"-separated list of file extensions'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   119
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   120
)
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   121
! !
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   122
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
!ProjectDefinitionEditor class methodsFor:'interface specs'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   124
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   125
classesSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   126
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   127
     by the UIPainter of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   128
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   130
     the UIPainter may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   131
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   132
    "
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
   133
     UIPainter new openOnClass:Tools::ProjectDefinitionEditor andSelector:#classesSpec
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
   134
     Tools::ProjectDefinitionEditor new openInterface:#classesSpec
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   135
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   136
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   137
    <resource: #canvas>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   138
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   139
    ^
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   140
     #(FullSpec
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   141
	name: classesSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   142
	window:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   143
       (WindowSpec
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   144
	  label: 'NewApplication'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   145
	  name: 'NewApplication'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   146
	  min: (Point 0 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   147
	  bounds: (Rectangle 0 0 300 300)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   148
	)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   149
	component:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   150
       (SpecCollection
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   151
	  collection: (
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   152
	   (DataSetSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   153
	      name: 'ClassesTable'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   154
	      layout: (LayoutFrame 0 0 0 0 0 1 0 1)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   155
	      model: selectedClassIndexHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   156
	      menu: classListMenu
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   157
	      hasHorizontalScrollBar: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   158
	      hasVerticalScrollBar: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   159
	      dataList: classListHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   160
	      columnHolder: classesTableColumns
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   161
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   162
	   )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   163
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   164
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   165
      )
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
   166
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
   167
    "Modified: / 07-09-2006 / 11:35:14 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   168
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   169
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   170
compilationSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   171
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   172
     by the UIPainter of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   173
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   174
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   175
     the UIPainter may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   176
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   177
    "
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
   178
     UIPainter new openOnClass:Tools::ProjectDefinitionEditor andSelector:#compilationSpec
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
   179
     Tools::ProjectDefinitionEditor new openInterface:#compilationSpec
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   180
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   181
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   182
    <resource: #canvas>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   183
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   184
    ^ 
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   185
     #(FullSpec
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   186
        name: compilationSpec
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   187
        window: 
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   188
       (WindowSpec
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   189
          label: 'NewApplication'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   190
          name: 'NewApplication'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   191
          min: (Point 0 0)
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   192
          bounds: (Rectangle 0 0 433 300)
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   193
        )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   194
        component: 
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   195
       (SpecCollection
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   196
          collection: (
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   197
           (FramedBoxSpec
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   198
              label: 'Optimization'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   199
              name: 'FramedBox1'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   200
              layout: (LayoutFrame 0 0 0 0 0 1 93 0)
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   201
              labelPosition: topLeft
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   202
              translateLabel: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   203
              component: 
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   204
             (SpecCollection
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   205
                collection: (
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   206
                 (LabelSpec
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   207
                    label: 'STC Optimization Flags:'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   208
                    name: 'Label1'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   209
                    layout: (LayoutFrame 0 0.0 7 0 160 0 29 0)
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   210
                    translateLabel: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   211
                    adjust: right
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   212
                  )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   213
                 (ComboBoxSpec
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   214
                    name: 'STCOptimizationFlagsComboBox'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   215
                    layout: (LayoutFrame 162 0.0 5 0 0 1.0 27 0)
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   216
                    model: stcOptimizationFlagsHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   217
                    acceptOnPointerLeave: false
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   218
                    comboList: stcOptimizationFlagList
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   219
                    postBuildCallback: flagHolderBuilt:
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   220
                  )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   221
                 (LabelSpec
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   222
                    label: 'CC Optimization Flags:'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   223
                    name: 'Label2'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   224
                    layout: (LayoutFrame 0 0.0 35 0 160 0 57 0)
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   225
                    translateLabel: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   226
                    adjust: right
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   227
                  )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   228
                 (ComboBoxSpec
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   229
                    name: 'CCOptimizationFlagsComboBox'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   230
                    layout: (LayoutFrame 162 0.0 33 0 0 1.0 55 0)
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   231
                    model: ccOptimizationFlagsHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   232
                    acceptOnPointerLeave: false
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   233
                    comboList: ccOptimizationFlagList
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   234
                    postBuildCallback: flagHolderBuilt:
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   235
                  )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   236
                 )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   237
               
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   238
              )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   239
            )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   240
           (FramedBoxSpec
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   241
              label: 'Includes'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   242
              name: 'FramedBox2'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   243
              layout: (LayoutFrame 0 0 98 0 0 1 160 0)
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   244
              labelPosition: topLeft
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   245
              translateLabel: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   246
              component: 
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   247
             (SpecCollection
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   248
                collection: (
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   249
                 (LabelSpec
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   250
                    label: 'Additional Includes:'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   251
                    name: 'Label3'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   252
                    layout: (LayoutFrame 0 0.0 7 0 160 0 29 0)
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   253
                    translateLabel: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   254
                    adjust: right
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   255
                  )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   256
                 (InputFieldSpec
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   257
                    name: 'IncludeFlagsEntryField'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   258
                    layout: (LayoutFrame 162 0.0 5 0 0 1.0 27 0)
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   259
                    model: includeFlagsHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   260
                    acceptOnReturn: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   261
                    acceptOnTab: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   262
                    acceptOnLostFocus: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   263
                    acceptOnPointerLeave: false
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   264
                  )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   265
                 )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   266
               
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   267
              )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   268
            )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   269
           )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   270
         
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   271
        )
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   272
      )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   273
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   274
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   275
descriptionSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   276
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   277
     by the UIPainter of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   278
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   279
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   280
     the UIPainter may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   281
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   282
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   283
     UIPainter new openOnClass:ApplicationDefinitionBuilder andSelector:#descriptionSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   284
     ApplicationDefinitionBuilder new openInterface:#descriptionSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   285
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   286
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   287
    <resource: #canvas>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   288
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   289
    ^
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   290
     #(FullSpec
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   291
	name: descriptionSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   292
	window:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   293
       (WindowSpec
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   294
	  label: 'NewApplication'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   295
	  name: 'NewApplication'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   296
	  min: (Point 0 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   297
	  bounds: (Rectangle 0 0 433 300)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   298
	)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   299
	component:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   300
       (SpecCollection
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   301
	  collection: (
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   302
	   (LabelSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   303
	      label: 'Company:'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   304
	      name: 'CompanyLabel'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   305
	      layout: (LayoutFrame 2 0.0 13 0 160 0 35 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   306
	      translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   307
	      adjust: right
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   308
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   309
	   (InputFieldSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   310
	      name: 'CompanyEntryField'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   311
	      layout: (LayoutFrame 162 0.0 12 0 -2 1.0 34 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   312
	      model: companyNameHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   313
	      acceptOnReturn: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   314
	      acceptOnTab: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   315
	      acceptOnLostFocus: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   316
	      acceptOnPointerLeave: false
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   317
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   318
	   (LabelSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   319
	      label: 'Description:'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   320
	      name: 'DescriptionLabel'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   321
	      layout: (LayoutFrame 2 0.0 39 0 160 0 61 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   322
	      translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   323
	      adjust: right
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   324
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   325
	   (InputFieldSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   326
	      name: 'DescriptionEntryField'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   327
	      layout: (LayoutFrame 162 0.0 38 0 -2 1.0 60 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   328
	      model: descriptionHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   329
	      acceptOnReturn: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   330
	      acceptOnTab: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   331
	      acceptOnLostFocus: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   332
	      acceptOnPointerLeave: false
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   333
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   334
	   (LabelSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   335
	      label: 'ProductName:'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   336
	      name: 'ProductNameLabel'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   337
	      layout: (LayoutFrame 2 0.0 65 0 160 0 87 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   338
	      translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   339
	      adjust: right
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   340
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   341
	   (InputFieldSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   342
	      name: 'ProductNameEntryField'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   343
	      layout: (LayoutFrame 162 0.0 64 0 -2 1.0 86 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   344
	      model: productNameHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   345
	      acceptOnReturn: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   346
	      acceptOnTab: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   347
	      acceptOnLostFocus: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   348
	      acceptOnPointerLeave: false
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   349
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   350
	   (LabelSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   351
	      label: 'ProductVersion:'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   352
	      name: 'ProductVersionLabel'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   353
	      layout: (LayoutFrame 2 0.0 91 0 160 0 113 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   354
	      translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   355
	      adjust: right
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   356
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   357
	   (InputFieldSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   358
	      name: 'MajorVersionNrEntryField'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   359
	      layout: (LayoutFrame 162 0.0 90 0 182 0.0 112 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   360
	      model: majorVersionNrHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   361
	      type: number
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   362
	      acceptOnReturn: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   363
	      acceptOnTab: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   364
	      acceptOnLostFocus: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   365
	      acceptOnPointerLeave: false
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   366
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   367
	   (InputFieldSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   368
	      name: 'MinorVersionNrEntryField'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   369
	      layout: (LayoutFrame 184 0.0 90 0 204 0.0 112 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   370
	      model: minorVersionNrHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   371
	      type: numberOrNil
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   372
	      acceptOnReturn: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   373
	      acceptOnTab: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   374
	      acceptOnLostFocus: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   375
	      acceptOnPointerLeave: false
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   376
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   377
	   (InputFieldSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   378
	      name: 'RevisionNrEntryField'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   379
	      layout: (LayoutFrame 206 0.0 90 0 226 0.0 112 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   380
	      model: revisionNrHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   381
	      type: number
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   382
	      acceptOnReturn: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   383
	      acceptOnTab: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   384
	      acceptOnLostFocus: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   385
	      acceptOnPointerLeave: false
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   386
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   387
	   (InputFieldSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   388
	      name: 'ReleaseNrEntryField'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   389
	      layout: (LayoutFrame 228 0.0 90 0 248 0.0 112 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   390
	      model: releaseNrHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   391
	      type: number
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   392
	      acceptOnReturn: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   393
	      acceptOnTab: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   394
	      acceptOnLostFocus: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   395
	      acceptOnPointerLeave: false
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   396
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   397
	   (LabelSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   398
	      label: 'LegalCopyright:'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   399
	      name: 'LegalCopyrightLabel'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   400
	      layout: (LayoutFrame 2 0.0 119 0 160 0 141 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   401
	      translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   402
	      adjust: right
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   403
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   404
	   (InputFieldSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   405
	      name: 'LegalCopyrightEntryField'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   406
	      layout: (LayoutFrame 162 0.0 118 0 -2 1.0 140 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   407
	      model: legalCopyrightHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   408
	      acceptOnReturn: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   409
	      acceptOnTab: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   410
	      acceptOnLostFocus: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   411
	      acceptOnPointerLeave: false
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   412
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   413
	   (LabelSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   414
	      label: 'FileDescriptionDescription:'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   415
	      name: 'FileDescriptionLabel'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   416
	      layout: (LayoutFrame 2 0.0 161 0 160 0 183 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   417
	      translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   418
	      adjust: right
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   419
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   420
	   (InputFieldSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   421
	      name: 'FileDescriptionEntryField'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   422
	      layout: (LayoutFrame 162 0.0 160 0 -2 1.0 182 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   423
	      model: fileDescriptionHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   424
	      acceptOnReturn: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   425
	      acceptOnTab: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   426
	      acceptOnLostFocus: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   427
	      acceptOnPointerLeave: false
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   428
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   429
	   (LabelSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   430
	      label: 'FileVersion:'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   431
	      name: 'FileVersionLabel'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   432
	      layout: (LayoutFrame 2 0.0 187 0 160 0 209 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   433
	      translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   434
	      adjust: right
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   435
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   436
	   (InputFieldSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   437
	      name: 'FileMajorVersionNrEntryField'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   438
	      layout: (LayoutFrame 162 0.0 186 0 182 0.0 208 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   439
	      model: fileMajorVersionNrHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   440
	      type: number
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   441
	      acceptOnReturn: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   442
	      acceptOnTab: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   443
	      acceptOnLostFocus: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   444
	      acceptOnPointerLeave: false
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   445
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   446
	   (InputFieldSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   447
	      name: 'FileMinorVersionNrEntryField'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   448
	      layout: (LayoutFrame 184 0.0 186 0 204 0.0 208 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   449
	      model: fileMinorVersionNrHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   450
	      type: number
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   451
	      acceptOnReturn: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   452
	      acceptOnTab: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   453
	      acceptOnLostFocus: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   454
	      acceptOnPointerLeave: false
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   455
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   456
	   (InputFieldSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   457
	      name: 'FileRevisionNrEntryField'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   458
	      layout: (LayoutFrame 206 0.0 186 0 226 0.0 208 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   459
	      model: fileRevisionNrHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   460
	      type: number
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   461
	      acceptOnReturn: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   462
	      acceptOnTab: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   463
	      acceptOnLostFocus: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   464
	      acceptOnPointerLeave: false
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   465
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   466
	   (InputFieldSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   467
	      name: 'FileReleaseNrEntryField'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   468
	      layout: (LayoutFrame 228 0.0 186 0 248 0.0 208 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   469
	      model: fileReleaseNrHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   470
	      type: number
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   471
	      acceptOnReturn: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   472
	      acceptOnTab: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   473
	      acceptOnLostFocus: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   474
	      acceptOnPointerLeave: false
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   475
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   476
	   (LabelSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   477
	      label: 'Icon Filename:'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   478
	      name: 'IconFileNameLabel'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   479
	      layout: (LayoutFrame 2 0.0 236 0 160 0 258 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   480
	      visibilityChannel: isApplicationDefinitionHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   481
	      translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   482
	      adjust: right
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   483
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   484
	   (InputFieldSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   485
	      name: 'IconFileNameEntryField'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   486
	      layout: (LayoutFrame 162 0.0 234 0 -2 1.0 256 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   487
	      visibilityChannel: isApplicationDefinitionHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   488
	      model: iconFilenameHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   489
	      acceptOnReturn: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   490
	      acceptOnTab: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   491
	      acceptOnLostFocus: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   492
	      acceptOnPointerLeave: false
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   493
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   494
	   )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   495
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   496
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   497
      )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   498
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   499
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   500
extensionsSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   501
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   502
     by the UIPainter of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   503
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   504
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   505
     the UIPainter may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   506
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   507
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   508
     UIPainter new openOnClass:ApplicationDefinitionEditor andSelector:#extensionsSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   509
     ApplicationDefinitionEditor new openInterface:#extensionsSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   510
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   511
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   512
    <resource: #canvas>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   513
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   514
    ^
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   515
     #(FullSpec
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   516
	name: extensionsSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   517
	window:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   518
       (WindowSpec
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   519
	  label: 'NewApplication'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   520
	  name: 'NewApplication'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   521
	  min: (Point 0 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   522
	  bounds: (Rectangle 0 0 300 300)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   523
	)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   524
	component:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   525
       (SpecCollection
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   526
	  collection: (
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   527
	   (DataSetSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   528
	      name: 'ExtensionsTable'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   529
	      layout: (LayoutFrame 0 0 0 0 0 1 0 1)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   530
	      model: selectedExtensionIndexHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   531
	      hasHorizontalScrollBar: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   532
	      hasVerticalScrollBar: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   533
	      dataList: extensionsListHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   534
	      columnHolder: extensionsTableColumns
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   535
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   536
	   )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   537
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   538
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   539
      )
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
   540
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
   541
    "Modified: / 07-09-2006 / 11:35:17 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   542
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   543
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   544
prerequisitesSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   545
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   546
     by the UIPainter of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   547
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   548
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   549
     the UIPainter may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   550
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   551
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   552
     UIPainter new openOnClass:ApplicationDefinitionEditor andSelector:#extensionsSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   553
     ApplicationDefinitionEditor new openInterface:#extensionsSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   554
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   555
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   556
    <resource: #canvas>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   557
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   558
    ^
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   559
     #(FullSpec
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   560
	name: extensionsSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   561
	window:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   562
       (WindowSpec
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   563
	  label: 'NewApplication'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   564
	  name: 'NewApplication'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   565
	  min: (Point 0 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   566
	  bounds: (Rectangle 0 0 300 300)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   567
	)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   568
	component:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   569
       (SpecCollection
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   570
	  collection: (
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   571
	   (DataSetSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   572
	      name: 'ExtensionsTable'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   573
	      layout: (LayoutFrame 0 0 0 0 0 1 0 1)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   574
	      model: selectedPrerequisitesIndexHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   575
	      hasHorizontalScrollBar: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   576
	      hasVerticalScrollBar: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   577
	      dataList: prerequisitesListHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   578
	      columnHolder: prerequisitesTableColumns
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   579
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   580
	   )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   581
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   582
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   583
      )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   584
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   585
    "Created: / 05-09-2006 / 13:21:32 / cg"
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
   586
    "Modified: / 07-09-2006 / 11:35:20 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   587
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   588
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   589
startupSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   590
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   591
     by the UIPainter of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   592
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   593
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   594
     the UIPainter may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   595
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   596
    "
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
   597
     UIPainter new openOnClass:Tools::ProjectDefinitionEditor andSelector:#startupSpec
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
   598
     Tools::ProjectDefinitionEditor new openInterface:#startupSpec
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   599
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   600
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   601
    <resource: #canvas>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   602
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   603
    ^ 
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   604
     #(FullSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   605
        name: startupSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   606
        window: 
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   607
       (WindowSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   608
          label: 'NewApplication'
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   609
          name: 'NewApplication'
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   610
          min: (Point 0 0)
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   611
          bounds: (Rectangle 0 0 433 300)
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   612
        )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   613
        component: 
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   614
       (SpecCollection
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   615
          collection: (
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   616
           (FramedBoxSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   617
              label: 'Startup'
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   618
              name: 'StartupFrame'
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
   619
              layout: (LayoutFrame 0 0 0 0 0 1 93 0)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   620
              labelPosition: topLeft
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   621
              translateLabel: true
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   622
              component: 
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   623
             (SpecCollection
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   624
                collection: (
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   625
                 (LabelSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   626
                    label: 'Startup Class:'
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   627
                    name: 'Label1'
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   628
                    layout: (LayoutFrame 0 0.0 7 0 160 0 29 0)
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   629
                    translateLabel: true
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   630
                    adjust: right
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   631
                  )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   632
                 (InputFieldSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   633
                    name: 'StartupClassEntryField'
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   634
                    layout: (LayoutFrame 162 0.0 5 0 0 1.0 27 0)
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
   635
                    model: startupClassNameHolder
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   636
                    acceptOnReturn: true
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   637
                    acceptOnTab: true
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   638
                    acceptOnLostFocus: true
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   639
                    acceptOnPointerLeave: false
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   640
                  )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   641
                 (LabelSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   642
                    label: 'Startup Selector:'
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   643
                    name: 'Label2'
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   644
                    layout: (LayoutFrame 0 0.0 35 0 160 0 57 0)
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   645
                    translateLabel: true
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   646
                    adjust: right
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   647
                  )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   648
                 (InputFieldSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   649
                    name: 'StartupSelectorEntryField'
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   650
                    layout: (LayoutFrame 162 0.0 33 0 0 1.0 55 0)
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   651
                    model: startupSelectorHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   652
                    acceptOnReturn: true
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   653
                    acceptOnTab: true
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   654
                    acceptOnLostFocus: true
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   655
                    acceptOnPointerLeave: false
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   656
                  )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   657
                 )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   658
               
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   659
              )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   660
            )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   661
           (FramedBoxSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   662
              label: 'Execution'
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   663
              name: 'ExecutionFrame'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   664
              layout: (LayoutFrame 0 0 94 0 0 1 176 0)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   665
              labelPosition: topLeft
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   666
              translateLabel: true
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   667
              component: 
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   668
             (SpecCollection
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   669
                collection: (
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   670
                 (CheckBoxSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   671
                    label: 'Non-GUI Application'
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   672
                    name: 'Non-GUI CheckBox'
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   673
                    layout: (LayoutFrame 0 0.0 7 0 0 0.5 29 0)
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   674
                    model: isNonGUIApplicationHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   675
                    translateLabel: true
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   676
                  )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   677
                 (CheckBoxSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   678
                    label: 'Singlethreaded'
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   679
                    name: 'SinglethreadedCheckBox'
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   680
                    layout: (LayoutFrame 0 0.5 7 0 0 1 29 0)
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   681
                    enableChannel: isNonGUIApplicationHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   682
                    model: startSinglethreadedHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   683
                    translateLabel: true
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   684
                  )
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   685
                 (CheckBoxSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   686
                    label: 'Has Console'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   687
                    name: 'HasConsoleCheckBox1'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   688
                    layout: (LayoutFrame 0 0.5 34 0 0 1 56 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   689
                    enableChannel: isGUIApplicationHolder
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   690
                    model: shownHasConsoleHolder
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   691
                    translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   692
                  )
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   693
                 )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   694
               
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   695
              )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   696
            )
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   697
           (FramedBoxSpec
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   698
              label: 'File Extensions'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   699
              name: 'FileExtensionsFrame'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   700
              layout: (LayoutFrame 0 0 177 0 0 1 237 0)
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   701
              labelPosition: topLeft
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   702
              translateLabel: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   703
              component: 
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   704
             (SpecCollection
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   705
                collection: (
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   706
                 (LabelSpec
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   707
                    label: 'Document Extensions:'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   708
                    name: 'Label3'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   709
                    layout: (LayoutFrame 0 0.0 7 0 160 0 29 0)
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   710
                    activeHelpKey: documentExtensions
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   711
                    translateLabel: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   712
                    adjust: right
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   713
                  )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   714
                 (InputFieldSpec
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   715
                    activeHelpKey: documentExtensions
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   716
                    name: 'EntryField1'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   717
                    layout: (LayoutFrame 162 0.0 5 0 0 1.0 27 0)
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   718
                    model: documentExtensionsListStringHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   719
                    type: string
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   720
                    acceptOnReturn: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   721
                    acceptOnTab: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   722
                    acceptOnLostFocus: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   723
                    acceptOnPointerLeave: false
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   724
                  )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   725
                 )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   726
               
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   727
              )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   728
            )
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   729
           )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   730
         
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   731
        )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   732
      )
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   733
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   734
    "Modified: / 15-10-2006 / 14:35:12 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   735
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   736
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   737
windowSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   738
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   739
     by the UIPainter of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   740
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   741
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   742
     the UIPainter may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   743
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   744
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   745
     UIPainter new openOnClass:ApplicationDefinitionBuilder andSelector:#windowSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   746
     ApplicationDefinitionBuilder new openInterface:#windowSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   747
     ApplicationDefinitionBuilder open
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   748
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   749
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   750
    <resource: #canvas>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   751
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   752
    ^
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   753
     #(FullSpec
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   754
	name: windowSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   755
	window:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   756
       (WindowSpec
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   757
	  label: 'ApplicationDefinitionBuilder'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   758
	  name: 'ApplicationDefinitionBuilder'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   759
	  min: (Point 10 10)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   760
	  max: (Point 1024 768)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   761
	  bounds: (Rectangle 0 0 596 339)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   762
	  menu: mainMenu
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   763
	)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   764
	component:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   765
       (SpecCollection
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   766
	  collection: (
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   767
	   (NoteBookViewSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   768
	      name: 'NoteBook1'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   769
	      layout: (LayoutFrame 0 0 0 0 0 1 0 1)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   770
	      model: selectedTabIndexHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   771
	      menu: tabList
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   772
	      useIndex: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   773
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   774
	   )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   775
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   776
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   777
      )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   778
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   779
    "Modified: / 03-09-2006 / 10:57:33 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   780
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   781
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   782
!ProjectDefinitionEditor class methodsFor:'list specs'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   783
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
   784
tabList
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
   785
^ self  tabListForApplication.
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
   786
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
   787
    "Created: / 06-09-2006 / 13:38:03 / cg"
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
   788
!
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
   789
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   790
tabListForApplication
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   791
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   792
     by the TabListEditor of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   793
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   794
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   795
     the TabListEditor may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   796
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   797
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   798
     TabListEditor new openOnClass: self andSelector:#tabList
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   799
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   800
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   801
    <resource: #tabList>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   802
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   803
    ^     #(
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   804
       (TabItem
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   805
	  label: 'Description'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   806
	  minorKey: descriptionSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   807
	)
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
   808
       (TabItem
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   809
	  label: 'Classes'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   810
	  createNewBuilder: false
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   811
	  translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   812
	  minorKey: classesSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   813
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   814
       (TabItem
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   815
	  label: 'Extensions'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   816
	  minorKey: extensionsSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   817
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   818
       (TabItem
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   819
	  label: 'Prerequisites'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   820
	  minorKey: prerequisitesSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   821
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   822
       (TabItem
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   823
	  label: 'Compilation'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   824
	  minorKey: compilationSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   825
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   826
       (TabItem
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   827
	  label: 'Startup'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   828
	  minorKey: startupSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   829
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   830
       )
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   831
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   832
      collect:[:aTab| TabItem new fromLiteralArrayEncoding:aTab ]
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   833
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   834
    "Created: / 05-09-2006 / 16:24:48 / cg"
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
   835
    "Modified: / 06-09-2006 / 18:44:34 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   836
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   837
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   838
tabListForLibrary
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   839
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   840
     by the TabListEditor of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   841
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   842
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   843
     the TabListEditor may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   844
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   845
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   846
     TabListEditor new openOnClass: self andSelector:#tabList
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   847
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   848
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   849
    <resource: #tabList>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   850
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   851
    ^     #(
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   852
       (TabItem
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   853
	  label: 'Description'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   854
	  minorKey: descriptionSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   855
	)
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
   856
       (TabItem
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   857
	  label: 'Classes'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   858
	  createNewBuilder: false
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   859
	  translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   860
	  minorKey: classesSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   861
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   862
       (TabItem
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   863
	  label: 'Extensions'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   864
	  minorKey: extensionsSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   865
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   866
       (TabItem
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   867
	  label: 'Prerequisites'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   868
	  minorKey: prerequisitesSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   869
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   870
       (TabItem
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   871
	  label: 'Compilation'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   872
	  minorKey: compilationSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   873
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   874
       )
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   875
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   876
      collect:[:aTab| TabItem new fromLiteralArrayEncoding:aTab ]
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   877
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   878
    "Created: / 05-09-2006 / 16:24:52 / cg"
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
   879
    "Modified: / 06-09-2006 / 18:44:38 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   880
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   881
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   882
!ProjectDefinitionEditor class methodsFor:'menu specs'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   883
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   884
classListMenu
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   885
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   886
     by the MenuEditor of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   887
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   888
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   889
     the MenuEditor may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   890
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   891
    "
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
   892
     MenuEditor new openOnClass:Tools::ProjectDefinitionEditor andSelector:#classListMenu
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
   893
     (Menu new fromLiteralArrayEncoding:(Tools::ProjectDefinitionEditor classListMenu)) startUp
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   894
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   895
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   896
    <resource: #menu>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   897
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   898
    ^
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   899
     #(Menu
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   900
	(
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   901
	 (MenuItem
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   902
	    enabled: hasDefinitionClassHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   903
	    label: 'Generate'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   904
	    itemValue: menuGenerateClassList
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   905
	    translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   906
	  )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   907
	 (MenuItem
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   908
	    label: '-'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   909
	  )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   910
	 (MenuItem
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   911
	    enabled: hasDefinitionClassHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   912
	    label: 'Add...'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   913
	    itemValue: menuAddClass
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   914
	    translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   915
	  )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   916
	 (MenuItem
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   917
	    enabled: hasDefinitionClassHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   918
	    label: 'Remove...'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   919
	    itemValue: menuRemoveClass
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   920
	    translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   921
	  )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   922
	 )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   923
	nil
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   924
	nil
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   925
      )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   926
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   927
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   928
extensionsListMenu
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   929
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   930
     by the MenuEditor of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   931
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   932
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   933
     the MenuEditor may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   934
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   935
    "
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
   936
     MenuEditor new openOnClass:Tools::ProjectDefinitionEditor andSelector:#extensionsListMenu
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
   937
     (Menu new fromLiteralArrayEncoding:(Tools::ProjectDefinitionEditor extensionsListMenu)) startUp
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   938
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   939
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   940
    <resource: #menu>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   941
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   942
    ^
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   943
     #(Menu
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   944
	(
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   945
	 (MenuItem
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   946
	    enabled: hasDefinitionClassHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   947
	    label: 'Generate'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   948
	    itemValue: menuGenerateExtensionsList
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   949
	    translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   950
	  )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   951
	 (MenuItem
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   952
	    label: '-'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   953
	  )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   954
	 (MenuItem
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   955
	    enabled: hasDefinitionClassHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   956
	    label: 'Add...'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   957
	    itemValue: menuAddExtension
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   958
	    translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   959
	  )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   960
	 (MenuItem
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   961
	    enabled: hasDefinitionClassHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   962
	    label: 'Remove...'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   963
	    itemValue: menuRemoveExtension
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   964
	    translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   965
	  )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   966
	 )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   967
	nil
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   968
	nil
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   969
      )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   970
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   971
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   972
mainMenu
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   973
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   974
     by the MenuEditor of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   975
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   976
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   977
     the MenuEditor may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   978
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   979
    "
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
   980
     MenuEditor new openOnClass:Tools::ProjectDefinitionEditor andSelector:#mainMenu
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
   981
     (Menu new fromLiteralArrayEncoding:(Tools::ProjectDefinitionEditor mainMenu)) startUp
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   982
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   983
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   984
    <resource: #menu>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   985
2128
b64b5a143005 conditionalRight in startGroup
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
   986
    ^ 
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   987
     #(Menu
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   988
        (
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   989
         (MenuItem
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   990
            label: 'File'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   991
            translateLabel: true
2128
b64b5a143005 conditionalRight in startGroup
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
   992
            submenu: 
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   993
           (Menu
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   994
              (
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   995
               (MenuItem
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   996
                  label: 'New Library'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   997
                  itemValue: menuNewLibraryDefinition
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   998
                  translateLabel: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   999
                )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1000
               (MenuItem
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1001
                  label: 'New Application'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1002
                  itemValue: menuNewApplicationDefinition
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1003
                  translateLabel: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1004
                )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1005
               (MenuItem
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1006
                  label: '-'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1007
                )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1008
               (MenuItem
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1009
                  label: 'Open...'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1010
                  itemValue: menuOpen
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1011
                  translateLabel: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1012
                )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1013
               (MenuItem
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1014
                  label: '-'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1015
                )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1016
               (MenuItem
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1017
                  enabled: hasDefinitionClassHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1018
                  label: 'Save'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1019
                  itemValue: menuSave
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1020
                  translateLabel: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1021
                )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1022
               (MenuItem
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1023
                  enabled: hasDefinitionClassHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1024
                  label: 'Save As...'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1025
                  itemValue: menuSaveAs
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1026
                  translateLabel: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1027
                )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1028
               (MenuItem
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1029
                  label: '-'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1030
                )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1031
               (MenuItem
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1032
                  label: 'Exit'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1033
                  itemValue: closeRequest
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1034
                  translateLabel: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1035
                )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1036
               )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1037
              nil
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1038
              nil
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1039
            )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1040
          )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1041
         (MenuItem
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1042
            label: 'Definition'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1043
            translateLabel: true
2128
b64b5a143005 conditionalRight in startGroup
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1044
            submenu: 
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1045
           (Menu
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1046
              (
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1047
               (MenuItem
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1048
                  enabled: hasDefinitionClassHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1049
                  label: 'Generate Definitions'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1050
                  itemValue: menuGenerateProjectDefinitions
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1051
                  translateLabel: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1052
                )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1053
               )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1054
              nil
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1055
              nil
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1056
            )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1057
          )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1058
         (MenuItem
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1059
            label: 'Classes'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1060
            translateLabel: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1061
            isVisible: classesMenuVisibleHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1062
            submenuChannel: classListMenu
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1063
            keepLinkedMenu: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1064
          )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1065
         (MenuItem
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1066
            label: 'Extensions'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1067
            translateLabel: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1068
            isVisible: extensionsMenuVisibleHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1069
            submenuChannel: extensionsListMenu
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1070
            keepLinkedMenu: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1071
          )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1072
         (MenuItem
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1073
            label: 'Prerequisites'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1074
            translateLabel: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1075
            isVisible: prerequisitesMenuVisibleHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1076
            submenuChannel: prerequisitesListMenu
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1077
            keepLinkedMenu: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1078
          )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1079
         (MenuItem
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1080
            label: 'Help'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1081
            translateLabel: true
2128
b64b5a143005 conditionalRight in startGroup
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1082
            startGroup: conditionalRight
b64b5a143005 conditionalRight in startGroup
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1083
            submenu: 
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1084
           (Menu
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1085
              (
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1086
               (MenuItem
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1087
                  label: 'Documentation'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1088
                  itemValue: openDocumentation
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1089
                  translateLabel: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1090
                )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1091
               (MenuItem
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1092
                  label: '-'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1093
                )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1094
               (MenuItem
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1095
                  label: 'About this Application...'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1096
                  itemValue: openAboutThisApplication
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1097
                  translateLabel: true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1098
                )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1099
               )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1100
              nil
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1101
              nil
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1102
            )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1103
          )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1104
         )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1105
        nil
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1106
        nil
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1107
      )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1108
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1109
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1110
prerequisitesListMenu
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1111
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1112
     by the MenuEditor of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1113
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1114
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1115
     the MenuEditor may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1116
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1117
    "
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1118
     MenuEditor new openOnClass:Tools::ProjectDefinitionEditor andSelector:#prerequisitesListMenu
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1119
     (Menu new fromLiteralArrayEncoding:(Tools::ProjectDefinitionEditor prerequisitesListMenu)) startUp
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1120
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1121
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1122
    <resource: #menu>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1123
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1124
    ^
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1125
     #(Menu
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1126
	(
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1127
	 (MenuItem
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1128
	    enabled: hasDefinitionClassHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1129
	    label: 'Generate'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1130
	    itemValue: menuGeneratePrerequisitesList
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1131
	    translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1132
	  )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1133
	 (MenuItem
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1134
	    label: '-'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1135
	  )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1136
	 (MenuItem
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1137
	    enabled: hasDefinitionClassHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1138
	    label: 'Add...'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1139
	    itemValue: menuAddPrerequisite
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1140
	    translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1141
	  )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1142
	 (MenuItem
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1143
	    enabled: hasDefinitionClassHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1144
	    label: 'Remove...'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1145
	    itemValue: menuRemovePrerequisite
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1146
	    translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1147
	  )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1148
	 )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1149
	nil
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1150
	nil
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1151
      )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1152
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1153
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1154
!ProjectDefinitionEditor class methodsFor:'tableColumns specs'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1155
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1156
classesTableColumns
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1157
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1158
     by the DataSetBuilder of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1159
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1160
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1161
     the DataSetBuilder may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1162
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1163
    "
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1164
     DataSetBuilder new openOnClass:Tools::ProjectDefinitionEditor andSelector:#classesTableColumns
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1165
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1166
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1167
    <resource: #tableColumns>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1168
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1169
    ^#(
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1170
      (DataSetColumnSpec
2111
fd5f44a752ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2100
diff changeset
  1171
         label: 'Class'
fd5f44a752ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2100
diff changeset
  1172
         labelAlignment: left
fd5f44a752ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2100
diff changeset
  1173
         labelButtonType: Button
fd5f44a752ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2100
diff changeset
  1174
         model: className
fd5f44a752ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2100
diff changeset
  1175
         canSelect: false
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1176
       )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1177
      (DataSetColumnSpec
2111
fd5f44a752ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2100
diff changeset
  1178
         label: 'Auto'
fd5f44a752ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2100
diff changeset
  1179
         labelButtonType: Button
2146
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  1180
         editorType: CheckToggle
2111
fd5f44a752ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2100
diff changeset
  1181
         rendererType: CheckToggle
fd5f44a752ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2100
diff changeset
  1182
         model: autoloaded
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1183
       )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff