Tools__ProjectDefinitionEditor.st
author Stefan Vogel <sv@exept.de>
Mon, 25 Feb 2008 20:39:01 +0100
changeset 2294 0a4591e6bb20
parent 2146 a5ce8e00652f
child 2666 316855d0ca7d
permissions -rw-r--r--
changed #doGenerateAspectMethodFor -- do not generate aspect methods already defined in superclasses or in class -- allow to change some settings even if not class/selector is defined (yet)
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 changeset
  1184
      (DataSetColumnSpec
2111
fd5f44a752ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2100
diff changeset
  1185
         label: 'Win32'
fd5f44a752ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2100
diff changeset
  1186
         labelButtonType: Button
2146
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  1187
         editorType: CheckToggle
2111
fd5f44a752ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2100
diff changeset
  1188
         rendererType: CheckToggle
fd5f44a752ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2100
diff changeset
  1189
         model: win32
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1190
       )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1191
      (DataSetColumnSpec
2111
fd5f44a752ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2100
diff changeset
  1192
         label: 'Unix'
fd5f44a752ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2100
diff changeset
  1193
         labelButtonType: Button
2146
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  1194
         editorType: CheckToggle
2111
fd5f44a752ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2100
diff changeset
  1195
         rendererType: CheckToggle
fd5f44a752ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2100
diff changeset
  1196
         model: unix
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1197
       )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1198
      )
2111
fd5f44a752ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2100
diff changeset
  1199
    
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1200
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1201
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1202
extensionsTableColumns
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1203
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1204
     by the DataSetBuilder of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1205
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1206
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1207
     the DataSetBuilder may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1208
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1209
    "
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1210
     DataSetBuilder new openOnClass:Tools::ProjectDefinitionEditor andSelector:#extensionsTableColumns
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1211
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1212
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1213
    <resource: #tableColumns>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1214
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1215
    ^#(
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1216
      (DataSetColumnSpec
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1217
	 label: 'Class'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1218
	 labelAlignment: left
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1219
	 labelButtonType: Button
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1220
	 model: className
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1221
	 canSelect: false
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1222
       )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1223
      (DataSetColumnSpec
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1224
	 label: 'Selector'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1225
	 labelAlignment: left
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1226
	 labelButtonType: Button
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1227
	 model: selector
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1228
	 canSelect: false
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1229
       )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1230
      )
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1231
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1232
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1233
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1234
prerequisitesTableColumns
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1235
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1236
     by the DataSetBuilder of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1237
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1238
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1239
     the DataSetBuilder may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1240
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1241
    "
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  1242
     DataSetBuilder new openOnClass:Tools::ProjectDefinitionEditor andSelector:#prerequisitesTableColumns
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1243
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1244
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1245
    <resource: #tableColumns>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1246
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1247
    ^#(
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1248
      (DataSetColumnSpec
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1249
	 label: 'Package'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1250
	 labelAlignment: left
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1251
	 labelButtonType: Button
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1252
	 model: package
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1253
       )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1254
      )
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1255
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1256
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1257
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1258
!ProjectDefinitionEditor methodsFor:'accessing'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1259
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1260
definitionClass
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1261
    ^ definitionClass
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1262
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1263
    "Created: / 04-09-2006 / 16:30:09 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1264
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1265
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1266
definitionClass:aClass
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1267
    definitionClass := aClass.
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1268
    self refetchDefinitionValues.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1269
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1270
    "Created: / 04-09-2006 / 16:30:18 / cg"
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1271
    "Modified: / 07-09-2006 / 12:26:57 / cg"
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  1272
!
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  1273
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  1274
specClass:aClass
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  1275
    super specClass:aClass.
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  1276
    self definitionClass:aClass theNonMetaclass.
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  1277
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  1278
    "Created: / 06-09-2006 / 19:24:10 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1279
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1280
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1281
!ProjectDefinitionEditor methodsFor:'aspects'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1282
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1283
ccOptimizationFlagList
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1284
    ^ #(
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1285
        '-O'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1286
        '-g'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1287
    )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1288
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1289
    "Created: / 15-10-2006 / 15:14:39 / cg"
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1290
!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1291
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1292
ccOptimizationFlagsHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1293
    ccOptimizationFlagsHolder isNil ifTrue:[
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1294
        ccOptimizationFlagsHolder := ValueHolder new.
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1295
    ].
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1296
    ^ ccOptimizationFlagsHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1297
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1298
    "Created: / 15-10-2006 / 15:13:14 / cg"
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1299
!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1300
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1301
classListHolder
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1302
    classListHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1303
	classListHolder := #() asValue.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1304
    ].
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1305
    ^ classListHolder.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1306
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1307
    "Created: / 07-09-2006 / 11:34:35 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1308
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1309
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1310
classesTableColumns
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1311
    classesTableColumns isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1312
	classesTableColumns := self class classesTableColumns asValue.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1313
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1314
    ^ classesTableColumns.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1315
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1316
    "Modified: / 04-09-2006 / 17:58:09 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1317
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1318
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1319
companyNameHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1320
    companyNameHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1321
	companyNameHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1322
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1323
    ^ companyNameHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1324
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1325
    "Created: / 04-09-2006 / 17:58:02 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1326
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1327
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1328
descriptionHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1329
    descriptionHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1330
	descriptionHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1331
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1332
    ^ descriptionHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1333
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1334
    "Modified: / 04-09-2006 / 17:58:15 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1335
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1336
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1337
documentExtensionsListStringHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1338
    documentExtensionsListStringHolder isNil ifTrue:[
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1339
        documentExtensionsListStringHolder := '' asValue.
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1340
    ].
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1341
    ^ documentExtensionsListStringHolder.
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1342
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1343
    "Created: / 15-10-2006 / 14:32:29 / cg"
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1344
!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1345
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1346
extensionsListHolder
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1347
    extensionsListHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1348
	extensionsListHolder := #() asValue.
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1349
    ].
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1350
    ^ extensionsListHolder.
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1351
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1352
    "Created: / 07-09-2006 / 11:34:50 / cg"
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1353
!
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1354
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1355
fileDescriptionHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1356
    fileDescriptionHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1357
	fileDescriptionHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1358
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1359
    ^ fileDescriptionHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1360
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1361
    "Modified: / 04-09-2006 / 17:58:19 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1362
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1363
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1364
fileMajorVersionNrHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1365
    "automatically generated by UIPainter ..."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1366
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1367
    "*** the code below creates a default model when invoked."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1368
    "*** (which may not be the one you wanted)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1369
    "*** Please change as required and accept it in the browser."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1370
    "*** (and replace this comment by something more useful ;-)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1371
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1372
    fileMajorVersionNrHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1373
	fileMajorVersionNrHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1374
"/ if your app needs to be notified of changes, uncomment one of the lines below:
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1375
"/       fileMajorVersionNrHolder addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1376
"/       fileMajorVersionNrHolder onChangeSend:#fileMajorVersionNrHolderChanged to:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1377
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1378
    ^ fileMajorVersionNrHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1379
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1380
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1381
fileMinorVersionNrHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1382
    "automatically generated by UIPainter ..."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1383
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1384
    "*** the code below creates a default model when invoked."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1385
    "*** (which may not be the one you wanted)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1386
    "*** Please change as required and accept it in the browser."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1387
    "*** (and replace this comment by something more useful ;-)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1388
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1389
    fileMinorVersionNrHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1390
	fileMinorVersionNrHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1391
"/ if your app needs to be notified of changes, uncomment one of the lines below:
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1392
"/       fileMinorVersionNrHolder addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1393
"/       fileMinorVersionNrHolder onChangeSend:#fileMinorVersionNrHolderChanged to:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1394
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1395
    ^ fileMinorVersionNrHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1396
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1397
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1398
fileReleaseNrHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1399
    "automatically generated by UIPainter ..."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1400
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1401
    "*** the code below creates a default model when invoked."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1402
    "*** (which may not be the one you wanted)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1403
    "*** Please change as required and accept it in the browser."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1404
    "*** (and replace this comment by something more useful ;-)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1405
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1406
    fileReleaseNrHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1407
	fileReleaseNrHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1408
"/ if your app needs to be notified of changes, uncomment one of the lines below:
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1409
"/       fileReleaseNrHolder addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1410
"/       fileReleaseNrHolder onChangeSend:#fileReleaseNrHolderChanged to:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1411
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1412
    ^ fileReleaseNrHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1413
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1414
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1415
fileRevisionNrHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1416
    "automatically generated by UIPainter ..."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1417
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1418
    "*** the code below creates a default model when invoked."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1419
    "*** (which may not be the one you wanted)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1420
    "*** Please change as required and accept it in the browser."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1421
    "*** (and replace this comment by something more useful ;-)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1422
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1423
    fileRevisionNrHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1424
	fileRevisionNrHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1425
"/ if your app needs to be notified of changes, uncomment one of the lines below:
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1426
"/       fileRevisionNrHolder addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1427
"/       fileRevisionNrHolder onChangeSend:#fileRevisionNrHolderChanged to:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1428
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1429
    ^ fileRevisionNrHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1430
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1431
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1432
hasConsoleHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1433
    hasConsoleHolder isNil ifTrue:[
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1434
        hasConsoleHolder := false asValue
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1435
    ].
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1436
    ^ hasConsoleHolder.
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1437
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1438
    "Created: / 20-09-2006 / 14:39:18 / cg"
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1439
!
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1440
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1441
iconFileNameHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1442
    iconFileNameHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1443
	iconFileNameHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1444
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1445
    ^ iconFileNameHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1446
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1447
    "Created: / 04-09-2006 / 18:01:22 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1448
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1449
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1450
iconFilenameHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1451
    "automatically generated by UIPainter ..."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1452
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1453
    "*** the code below creates a default model when invoked."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1454
    "*** (which may not be the one you wanted)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1455
    "*** Please change as required and accept it in the browser."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1456
    "*** (and replace this comment by something more useful ;-)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1457
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1458
    iconFilenameHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1459
	iconFilenameHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1460
"/ if your app needs to be notified of changes, uncomment one of the lines below:
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1461
"/       iconFilenameHolder addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1462
"/       iconFilenameHolder onChangeSend:#iconFilenameHolderChanged to:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1463
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1464
    ^ iconFilenameHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1465
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1466
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1467
isApplicationDefinitionHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1468
    isApplicationDefinitionHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1469
	isApplicationDefinitionHolder := false asValue
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1470
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1471
    ^ isApplicationDefinitionHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1472
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1473
    "Created: / 04-09-2006 / 19:22:47 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1474
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1475
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1476
isGUIApplicationHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1477
    ^ BlockValue forLogicalNot:self isNonGUIApplicationHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1478
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1479
    "Created: / 20-09-2006 / 14:38:32 / cg"
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1480
!
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1481
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1482
isNonGUIApplicationHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1483
    isNonGUIApplicationHolder isNil ifTrue:[
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1484
        isNonGUIApplicationHolder := false asValue.
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1485
        isNonGUIApplicationHolder addDependent:self.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1486
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1487
    ^ isNonGUIApplicationHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1488
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1489
    "Created: / 05-09-2006 / 13:34:31 / cg"
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1490
    "Modified: / 15-10-2006 / 14:00:03 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1491
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1492
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1493
legalCopyrightHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1494
    "automatically generated by UIPainter ..."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1495
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1496
    "*** the code below creates a default model when invoked."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1497
    "*** (which may not be the one you wanted)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1498
    "*** Please change as required and accept it in the browser."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1499
    "*** (and replace this comment by something more useful ;-)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1500
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1501
    legalCopyrightHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1502
	legalCopyrightHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1503
"/ if your app needs to be notified of changes, uncomment one of the lines below:
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1504
"/       legalCopyrightHolder addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1505
"/       legalCopyrightHolder onChangeSend:#legalCopyrightHolderChanged to:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1506
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1507
    ^ legalCopyrightHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1508
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1509
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1510
majorVersionNrHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1511
    "automatically generated by UIPainter ..."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1512
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1513
    "*** the code below creates a default model when invoked."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1514
    "*** (which may not be the one you wanted)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1515
    "*** Please change as required and accept it in the browser."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1516
    "*** (and replace this comment by something more useful ;-)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1517
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1518
    majorVersionNrHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1519
	majorVersionNrHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1520
"/ if your app needs to be notified of changes, uncomment one of the lines below:
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1521
"/       majorVersionNrHolder addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1522
"/       majorVersionNrHolder onChangeSend:#majorVersionNrHolderChanged to:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1523
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1524
    ^ majorVersionNrHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1525
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1526
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1527
minorVersionNrHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1528
    "automatically generated by UIPainter ..."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1529
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1530
    "*** the code below creates a default model when invoked."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1531
    "*** (which may not be the one you wanted)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1532
    "*** Please change as required and accept it in the browser."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1533
    "*** (and replace this comment by something more useful ;-)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1534
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1535
    minorVersionNrHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1536
	minorVersionNrHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1537
"/ if your app needs to be notified of changes, uncomment one of the lines below:
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1538
"/       minorVersionNrHolder addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1539
"/       minorVersionNrHolder onChangeSend:#minorVersionNrHolderChanged to:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1540
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1541
    ^ minorVersionNrHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1542
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1543
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1544
prerequisitesListHolder
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1545
    prerequisitesListHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1546
	prerequisitesListHolder := #() asValue.
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1547
    ].
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1548
    ^ prerequisitesListHolder.
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1549
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1550
    "Created: / 07-09-2006 / 11:35:03 / cg"
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1551
!
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1552
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1553
productNameHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1554
    "automatically generated by UIPainter ..."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1555
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1556
    "*** the code below creates a default model when invoked."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1557
    "*** (which may not be the one you wanted)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1558
    "*** Please change as required and accept it in the browser."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1559
    "*** (and replace this comment by something more useful ;-)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1560
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1561
    productNameHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1562
	productNameHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1563
"/ if your app needs to be notified of changes, uncomment one of the lines below:
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1564
"/       productNameHolder addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1565
"/       productNameHolder onChangeSend:#productNameHolderChanged to:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1566
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1567
    ^ productNameHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1568
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1569
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1570
releaseNrHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1571
    "automatically generated by UIPainter ..."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1572
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1573
    "*** the code below creates a default model when invoked."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1574
    "*** (which may not be the one you wanted)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1575
    "*** Please change as required and accept it in the browser."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1576
    "*** (and replace this comment by something more useful ;-)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1577
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1578
    releaseNrHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1579
	releaseNrHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1580
"/ if your app needs to be notified of changes, uncomment one of the lines below:
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1581
"/       releaseNrHolder addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1582
"/       releaseNrHolder onChangeSend:#releaseNrHolderChanged to:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1583
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1584
    ^ releaseNrHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1585
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1586
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1587
revisionNrHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1588
    "automatically generated by UIPainter ..."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1589
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1590
    "*** the code below creates a default model when invoked."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1591
    "*** (which may not be the one you wanted)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1592
    "*** Please change as required and accept it in the browser."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1593
    "*** (and replace this comment by something more useful ;-)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1594
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1595
    revisionNrHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1596
	revisionNrHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1597
"/ if your app needs to be notified of changes, uncomment one of the lines below:
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1598
"/       revisionNrHolder addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1599
"/       revisionNrHolder onChangeSend:#revisionNrHolderChanged to:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1600
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1601
    ^ revisionNrHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1602
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1603
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1604
selectedClassIndexHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1605
    "automatically generated by UIPainter ..."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1606
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1607
    "*** the code below creates a default model when invoked."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1608
    "*** (which may not be the one you wanted)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1609
    "*** Please change as required and accept it in the browser."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1610
    "*** (and replace this comment by something more useful ;-)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1611
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1612
    selectedClassIndexHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1613
	selectedClassIndexHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1614
"/ if your app needs to be notified of changes, uncomment one of the lines below:
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1615
"/       selectedClassIndexHolder addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1616
"/       selectedClassIndexHolder onChangeSend:#selectedClassIndexHolderChanged to:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1617
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1618
    ^ selectedClassIndexHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1619
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1620
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1621
shownHasConsoleHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1622
    shownHasConsoleHolder isNil ifTrue:[
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1623
        shownHasConsoleHolder := IndirectValue for:self hasConsoleHolder.
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1624
    ].
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1625
    ^ shownHasConsoleHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1626
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1627
    "Created: / 15-10-2006 / 13:59:01 / cg"
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1628
!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1629
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1630
shownHasConsoleValue
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1631
    ^ BlockValue 
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1632
        with:[:m1 :m2 | self isGUIApplicationHolder value not
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1633
                        or:[ self hasConsoleHolder value] ]
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1634
        argument:(self hasConsoleHolder)
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1635
        argument:(self isGUIApplicationHolder).
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1636
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1637
    "Created: / 15-10-2006 / 13:54:16 / cg"
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1638
!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1639
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1640
startSinglethreadedHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1641
    startSinglethreadedHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1642
	startSinglethreadedHolder := false asValue.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1643
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1644
    ^ startSinglethreadedHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1645
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1646
    "Created: / 05-09-2006 / 13:34:54 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1647
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1648
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1649
startupClassNameHolder
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1650
    startupClassNameHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1651
	startupClassNameHolder := '' asValue.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1652
    ].
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1653
    ^ startupClassNameHolder.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1654
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1655
    "Created: / 06-09-2006 / 18:41:52 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1656
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1657
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1658
startupSelectorHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1659
    startupSelectorHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1660
	startupSelectorHolder := '' asValue.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1661
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1662
    ^ startupSelectorHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1663
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1664
    "Created: / 05-09-2006 / 13:34:20 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1665
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1666
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1667
stcOptimizationFlagList
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1668
    ^ #(
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1669
        '+optSpace'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1670
        '+optSpace2'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1671
        '+optSpace3'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1672
        '+optInline'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1673
        '-optInline'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1674
        '-inlineNew'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1675
        '-inlineNot'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1676
    )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1677
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1678
    "Created: / 15-10-2006 / 15:14:29 / cg"
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1679
!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1680
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1681
stcOptimizationFlagsHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1682
    stcOptimizationFlagsHolder isNil ifTrue:[
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1683
        stcOptimizationFlagsHolder := ValueHolder new.
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1684
    ].
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1685
    ^ stcOptimizationFlagsHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1686
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1687
    "Modified: / 15-10-2006 / 15:13:10 / cg"
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1688
!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1689
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1690
tabList
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1691
    "Generated by the TabListEditor"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1692
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1693
    |list|
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1694
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1695
    (list := builder bindingAt:#tabList) isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1696
	builder aspectAt:#tabList put:(list := self class tabListForApplication asValue).
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1697
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1698
    ^ list
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1699
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1700
    "Modified: / 06-09-2006 / 17:58:08 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1701
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1702
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1703
!ProjectDefinitionEditor methodsFor:'aspects-menu'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1704
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1705
classesMenuVisibleHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1706
    ^ builder booleanValueAspectFor:#'classesMenuVisibleHolder'
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1707
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1708
    "Modified: / 03-09-2006 / 10:57:00 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1709
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1710
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1711
extensionsMenuVisibleHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1712
    ^ builder booleanValueAspectFor:#'extensionsMenuVisibleHolder'
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1713
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1714
    "Created: / 05-09-2006 / 13:03:16 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1715
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1716
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1717
hasDefinitionClass
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1718
    ^ definitionClass notNil
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1719
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1720
    "Created: / 07-09-2006 / 12:29:10 / cg"
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1721
!
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1722
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1723
hasDefinitionClassHolder
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1724
    ^ [ self hasDefinitionClass ]
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1725
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1726
    "Created: / 07-09-2006 / 12:29:22 / cg"
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1727
!
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1728
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1729
prerequisitesMenuVisibleHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1730
    ^ builder booleanValueAspectFor:#'prerequisitesMenuVisibleHolder'
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1731
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1732
    "Created: / 05-09-2006 / 13:26:45 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1733
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1734
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1735
selectedTabIndexHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1736
    |h|
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1737
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1738
    h := builder valueAspectFor:#'selectedTabIndexHolder' initialValue:nil.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1739
    h addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1740
    ^ h
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1741
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1742
    "Created: / 03-09-2006 / 10:58:05 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1743
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1744
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1745
!ProjectDefinitionEditor methodsFor:'change & update'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1746
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1747
fetchClassListEntries
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1748
    |entries|
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1749
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1750
    entries := OrderedCollection new.
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1751
    definitionClass
2146
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  1752
        classNamesAndAttributesDo:[:className :attributes |
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  1753
            |entry|
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1754
2146
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  1755
            entry := ClassListEntry new.
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  1756
            entry
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  1757
                className:className
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  1758
                autoloaded:(attributes includes:#autoload)
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  1759
                win32:(attributes includes:#win32)
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  1760
                unix:(attributes includes:#unix).
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  1761
            entries add:entry.
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  1762
        ].
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  1763
    entries sort:[:a :b | a className < b className].
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1764
    ^ entries.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1765
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1766
    "Created: / 05-09-2006 / 12:31:26 / cg"
2146
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  1767
    "Modified: / 21-11-2006 / 18:04:35 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1768
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1769
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1770
fetchExtensionsListEntries
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1771
    |entries|
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1772
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1773
    entries := OrderedCollection new.
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1774
    definitionClass
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1775
	extensionMethodNames pairWiseDo:[:className :selector |
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1776
	    |entry|
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1777
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1778
	    entry := ExtensionsListEntry new.
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1779
	    entry className:className selector:selector.
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1780
	    entries add:entry.
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1781
	].
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1782
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1783
    ^ entries.
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1784
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1785
    "Created: / 06-09-2006 / 18:45:15 / cg"
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1786
!
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1787
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1788
fetchPrerequisitesListEntries
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1789
    |entries|
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1790
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1791
    entries := OrderedCollection new.
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1792
    definitionClass
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1793
	preRequisites do:[:packageName |
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1794
	    |entry|
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1795
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1796
	    entry := PrerequisitesListEntry new.
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1797
	    entry package:packageName.
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1798
	    entries add:entry.
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1799
	].
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1800
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1801
    ^ entries.
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1802
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1803
    "Created: / 06-09-2006 / 18:45:15 / cg"
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1804
    "Modified: / 07-09-2006 / 12:36:21 / cg"
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1805
!
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1806
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1807
fetchValues
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1808
    |definitionClass isApplicationDefinition startupClassName startupSelector|
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1809
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1810
    definitionClass := self definitionClass.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1811
    definitionClass isNil ifTrue:[^ self ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1812
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1813
    isApplicationDefinition := definitionClass isApplicationDefinition.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1814
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1815
    self isApplicationDefinitionHolder value:isApplicationDefinition.
2111
fd5f44a752ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2100
diff changeset
  1816
    self isNonGUIApplicationHolder value:(isApplicationDefinition and:[definitionClass isGUIApplication not]).
fd5f44a752ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2100
diff changeset
  1817
    self hasConsoleHolder value:(isApplicationDefinition and:[definitionClass isConsoleApplication]).
fd5f44a752ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2100
diff changeset
  1818
    self startSinglethreadedHolder value:(isApplicationDefinition and:[definitionClass isSingleThreadedApplication]).
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1819
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1820
    isApplicationDefinition ifTrue:[
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1821
        startupClassName := definitionClass name.
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1822
        startupSelector := #start.
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1823
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1824
        Error handle:[:ex | ] do:[ startupClassName := definitionClass startupClassName].
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1825
        Error handle:[:ex | ] do:[ startupSelector := definitionClass startupSelector].
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1826
        self startupClassNameHolder value:startupClassName.
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1827
        self startupSelectorHolder value:startupSelector.
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1828
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1829
        self iconFileNameHolder value:(definitionClass iconFileName).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1830
        self tabList value:(self class tabListForApplication).
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1831
        self documentExtensionsListStringHolder value:(definitionClass documentExtensions asStringWith:';').
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1832
    ] ifFalse:[
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1833
        self tabList value:(self class tabListForLibrary).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1834
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1835
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1836
    self companyNameHolder value:(definitionClass companyName).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1837
    self descriptionHolder value:(definitionClass description).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1838
    self legalCopyrightHolder value:(definitionClass legalCopyright).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1839
    self productNameHolder value:(definitionClass productName).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1840
    self majorVersionNrHolder value:(definitionClass majorVersionNr asInteger).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1841
    self minorVersionNrHolder value:(definitionClass minorVersionNr asInteger).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1842
    self revisionNrHolder value:(definitionClass revisionNr asInteger).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1843
    self releaseNrHolder value:(definitionClass releaseNr asInteger).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1844
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1845
    self fileDescriptionHolder value:(definitionClass fileDescription).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1846
    self fileMajorVersionNrHolder value:(definitionClass fileMajorVersionNr asInteger).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1847
    self fileMinorVersionNrHolder value:(definitionClass fileMinorVersionNr asInteger).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1848
    self fileRevisionNrHolder value:(definitionClass fileRevisionNr asInteger).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1849
    self fileReleaseNrHolder value:(definitionClass fileReleaseNr asInteger).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1850
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1851
    self classListHolder value:(self fetchClassListEntries).
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1852
    self extensionsListHolder value:(self fetchExtensionsListEntries).
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1853
    self prerequisitesListHolder value:(self fetchPrerequisitesListEntries).
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1854
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1855
    self window notNil ifTrue:[
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1856
        self window
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1857
            label:(isApplicationDefinition
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1858
                    ifTrue:'Application'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1859
                    ifFalse:'Library' )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1860
                        , ' Definition: ',definitionClass name.
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1861
    ].
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1862
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1863
    "Created: / 04-09-2006 / 16:34:39 / cg"
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1864
    "Modified: / 15-10-2006 / 14:32:45 / cg"
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1865
!
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1866
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1867
refetchDefinitionValues
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1868
    self isApplicationDefinitionHolder value:( definitionClass isApplicationDefinition ).
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1869
    self fetchValues.
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1870
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1871
    "Created: / 07-09-2006 / 12:26:54 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1872
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1873
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1874
update:something with:parameter from:changedObject
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1875
    changedObject == self selectedTabIndexHolder ifTrue:[
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1876
        self updateMenuVisibility.
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1877
        ^ self.
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1878
    ].
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1879
    changedObject == self isNonGUIApplicationHolder ifTrue:[
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1880
        changedObject value ifTrue:[
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1881
            "/ a NON-GUI application - always has a console
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1882
            self shownHasConsoleHolder valueHolder:true
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1883
        ] ifFalse:[
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1884
            "/ a GUI application - sometimes has a console
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1885
            self shownHasConsoleHolder valueHolder:(self hasConsoleHolder)
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1886
        ].
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1887
        ^ self.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1888
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1889
    ^ super update:something with:parameter from:changedObject
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1890
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1891
    "Created: / 03-09-2006 / 10:59:42 / cg"
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1892
    "Modified: / 15-10-2006 / 14:08:23 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1893
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1894
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1895
updateMenuVisibility
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1896
    self classesMenuVisibleHolder value:(self hasClassesTabSelected).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1897
    self extensionsMenuVisibleHolder value:(self hasExtensionsTabSelected).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1898
    self prerequisitesMenuVisibleHolder value:(self hasPrerequisitesTabSelected).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1899
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1900
    "Created: / 03-09-2006 / 11:01:48 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1901
    "Modified: / 05-09-2006 / 13:27:10 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1902
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1903
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1904
!ProjectDefinitionEditor methodsFor:'initialization & release'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1905
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1906
closeRequest
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1907
    (self hasUnsavedChanges) ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1908
	(self confirm:(resources string:'Close without saving ?')) ifFalse:[
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1909
	    ^ self
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1910
	]
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1911
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1912
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1913
    ^ super closeRequest
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1914
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1915
    "Modified: / 03-09-2006 / 10:53:14 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1916
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1917
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1918
flagHolderBuilt:aComboBox
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1919
    aComboBox menuSelectAction:[:txt |
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1920
        self updateFlagsIn:aComboBox from:txt
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1921
    ].
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1922
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1923
    "Created: / 15-10-2006 / 15:11:50 / cg"
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1924
!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1925
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1926
postBuildWith:aBuilder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1927
    super postBuildWith:aBuilder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1928
    self selectedTabIndexHolder value:1.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1929
    self updateMenuVisibility.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1930
    self fetchValues.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1931
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1932
    "Modified: / 04-09-2006 / 16:28:09 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1933
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1934
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1935
postOpenWith:aBuilder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1936
    "This is a hook method generated by the Browser.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1937
     It will be invoked right after the applications window has been opened.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1938
     Add any app-specific actions here (starting background processes etc.).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1939
     See also #postBuildWith:, which is invoked before opening."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1940
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1941
    "/ add any code here ...
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1942
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1943
    ^ super postOpenWith:aBuilder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1944
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1945
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1946
!ProjectDefinitionEditor methodsFor:'menu actions'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1947
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1948
editNew:definitionClass
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1949
    |className class newPackage|
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1950
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1951
    self hasUnsavedChanges ifTrue:[
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1952
        self halt.
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1953
    ].
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1954
    className := Dialog
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1955
                    requestClassName:'Name of new Definition class'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1956
                    okLabel:'Create'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1957
                    initialAnswer:'private_myProject'.
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1958
    className isEmptyOrNil ifTrue:[^ self].
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1959
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1960
    class := Smalltalk classNamed:className.
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1961
    class notNil ifTrue:[
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1962
        (class isLibraryDefinition == (definitionClass == LibraryDefinition)) ifFalse:[
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1963
            Dialog warn:(resources
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1964
                            string:'A class named "%1" already exists as %2.'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1965
                            with:className allBold
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1966
                            with:(class isLibraryDefinition 
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1967
                                    ifTrue:'Library'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1968
                                    ifFalse:'Application')).
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1969
            ^ self
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1970
        ].
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1971
        Dialog warn:(resources
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1972
                            string:'A class named "%1" already exists. Editing the existing definition.'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1973
                            with:className allBold).
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1974
    ] ifFalse:[
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1975
        newPackage := className copy replaceAll:$_ with:$/.
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1976
        newPackage replaceAll:$/ with:$:. 
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1977
        class := definitionClass newNamed:className package:newPackage.
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1978
    ].
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1979
    self definitionClass:class.
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1980
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1981
    "Created: / 15-10-2006 / 14:50:15 / cg"
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1982
!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1983
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1984
menuGenerateProjectDefinitions
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1985
    |action|
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  1986
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1987
    action := [:generator :defClass |
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1988
		    defClass theNonMetaclass
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1989
			forEachMethodsCodeToCompileDo:
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1990
			    [:code :category |
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1991
				generator
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1992
				    compile:code
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1993
				    forClass:defClass theMetaclass
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1994
				    inCategory:category.
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1995
			    ]
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1996
			ignoreOldDefinition:true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1997
	       ].
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  1998
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1999
    masterApplication notNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2000
	masterApplication
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2001
	    generateUndoableChange:'Generate Project Definitions'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2002
	    overClasses:(Array with:self definitionClass)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2003
	    via:action.
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  2004
    ] ifFalse:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2005
	action value:Compiler value:self definitionClass
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  2006
    ].
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  2007
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  2008
    self refetchDefinitionValues
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  2009
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  2010
    "Created: / 07-09-2006 / 12:26:22 / cg"
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2011
!
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2012
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2013
menuNew
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2014
    "This method was generated by the Browser.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2015
     It will be invoked when the menu-item 'new' is selected."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2016
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2017
    "/ change below and add any actions as required here ...
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2018
    self warn:'no action for ''new'' available.'.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2019
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2020
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2021
menuNewApplicationDefinition
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2022
    self editNew:ApplicationDefinition
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2023
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2024
    "Created: / 15-10-2006 / 14:49:53 / cg"
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2025
!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2026
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2027
menuNewLibraryDefinition
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2028
    self editNew:LibraryDefinition
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2029
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2030
    "Created: / 15-10-2006 / 14:49:46 / cg"
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2031
!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2032
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2033
menuOpen
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2034
    |projectID class answer|
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2035
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2036
    projectID := Dialog requestProject:'Project' initialAnswer:'' suggestions:nil.
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2037
    class := ProjectDefinition definitionClassForPackage:projectID.
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2038
    class isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2039
	answer := Dialog
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2040
	    confirmWithCancel:(resources string:'No Projectdefinition class exists for "%1".\\Create ?' with:projectID allBold)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2041
	    labels:(resources array:#('Cancel' 'Create Library' 'Create Application' ))
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2042
	    values:#(nil LibraryDefinition ApplicationDefinition)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2043
	    default:2
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2044
	    boxLabel:(resources string:'Create Projectdefinition').
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2045
	answer isNil ifTrue:[^ self].
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2046
    ].
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2047
    answer == #LibraryDefinition ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2048
	class := LibraryDefinition definitionClassForPackage:projectID createIfAbsent:true
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2049
    ] ifFalse:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2050
	class := ApplicationDefinition definitionClassForPackage:projectID createIfAbsent:true
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2051
    ].
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2052
    self definitionClass:class.
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2053
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2054
    "Modified: / 07-09-2006 / 12:19:58 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2055
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2056
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2057
menuRemoveClass
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2058
    |classListHolder|
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2059
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2060
    classListHolder := self classListHolder.
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2061
    classListHolder value removeIndex:(self selectedClassIndexHolder value).
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2062
    classListHolder changed.
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2063
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2064
    "Created: / 06-09-2006 / 21:31:05 / cg"
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2065
    "Modified: / 07-09-2006 / 11:35:44 / cg"
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2066
!
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2067
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2068
menuSave
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2069
    self menuSaveAs:definitionClass name
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2070
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2071
    "Modified: / 05-09-2006 / 13:48:27 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2072
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2073
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2074
menuSaveAs
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2075
    |className class newPackage|
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2076
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2077
    className := Dialog
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2078
                    requestClassName:'Name of new Definition class'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2079
                    okLabel:'Create'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2080
                    initialAnswer:'private_myProject'.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2081
    className isEmptyOrNil ifTrue:[^ self].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2082
    class := Smalltalk classNamed:className.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2083
    class notNil ifTrue:[
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2084
        Dialog warn:(resources
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2085
                            string:'A class named %1 already exists'
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2086
                            with:className).
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2087
        ^ self.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2088
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2089
    newPackage := className copy replaceAll:$_ with:$/.
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2090
    newPackage replaceAll:$/ with:$:. 
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2091
    class := ApplicationDefinition newNamed:className package:newPackage.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2092
    self menuSaveAs:class.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2093
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2094
    "Modified: / 15-10-2006 / 14:47:53 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2095
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2096
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2097
menuSaveAs:aClassName
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2098
    self halt.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2099
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2100
    "Created: / 05-09-2006 / 13:48:03 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2101
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2102
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2103
openAboutThisApplication
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2104
    "This method was generated by the Browser.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2105
     It will be invoked when the menu-item 'help-about' is selected."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2106
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2107
    "/ could open a customized aboutBox here ...
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2108
    super openAboutThisApplication
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2109
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2110
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2111
openDocumentation
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2112
    "This method was generated by the Browser.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2113
     It will be invoked when the menu-item 'help-documentation' is selected."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2114
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2115
    "/ change below as required ...
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2116
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2117
    "/ to open an HTML viewer on some document (under 'doc/online/<language>/' ):
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2118
    HTMLDocumentView openFullOnDocumentationFile:'TOP.html'.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2119
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2120
    "/ add application-specific help files under the 'doc/online/<language>/help/appName'
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2121
    "/ directory, and open a viewer with:
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2122
    "/ HTMLDocumentView openFullOnDocumentationFile:'help/<MyApplication>/TOP.html'.
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2123
!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2124
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2125
updateFlagsIn:aComboBox from:flag
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2126
    |s flags base negation|
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2127
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2128
    s := aComboBox editor contents.
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2129
    flags := s asCollectionOfWords.
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2130
    (flags includes:flag) ifFalse:[
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2131
        base := (flag copyFrom:2).
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2132
        negation := (flag startsWith:'+') 
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2133
                        ifTrue:[ ('-',base) ]
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2134
                        ifFalse:[ ('+',base) ].
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2135
        flags remove:negation ifAbsent:[].
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2136
        flags add:flag.
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2137
        aComboBox editor contents:(flags asStringWith:' ').
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2138
    ].
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2139
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2140
    "Created: / 15-10-2006 / 15:35:53 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2141
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2142
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2143
!ProjectDefinitionEditor methodsFor:'queries'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2144
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2145
hasClassesTabSelected
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2146
    ^ self selectedTabIndex == 2
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2147
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2148
    "Created: / 03-09-2006 / 11:00:39 / cg"
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2149
    "Modified: / 06-09-2006 / 21:20:21 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2150
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2151
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2152
hasExtensionsTabSelected
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2153
    ^ self selectedTabIndex == 3
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2154
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2155
    "Created: / 05-09-2006 / 13:02:26 / cg"
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2156
    "Modified: / 06-09-2006 / 21:20:25 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2157
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2158
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2159
hasPrerequisitesTabSelected
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2160
    ^ self selectedTabIndex == 4
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2161
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2162
    "Created: / 05-09-2006 / 13:27:16 / cg"
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2163
    "Modified: / 06-09-2006 / 21:20:33 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2164
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2165
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2166
hasUnsavedChanges
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2167
     ^ false
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2168
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2169
    "Created: / 03-09-2006 / 10:53:05 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2170
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2171
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2172
selectedClass
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2173
    |item|
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2174
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2175
    item := self classListHolder value at:(self selectedClassIndexHolder value).
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2176
self halt.
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2177
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2178
    "Created: / 06-09-2006 / 21:32:20 / cg"
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2179
    "Modified: / 07-09-2006 / 11:35:48 / cg"
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2180
!
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2181
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2182
selectedTabIndex
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2183
    ^ self selectedTabIndexHolder value
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2184
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2185
    "Created: / 03-09-2006 / 11:00:48 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2186
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2187
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2188
!ProjectDefinitionEditor::ClassListEntry methodsFor:'accessing'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2189
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2190
autoloaded
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2191
    ^ autoloaded
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2192
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2193
2146
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  2194
autoloaded:aBoolean
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  2195
    autoloaded := aBoolean.
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  2196
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  2197
    "Modified: / 21-11-2006 / 18:05:26 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2198
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2199
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2200
className
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2201
    ^ className
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2202
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2203
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2204
className:something
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2205
    className := something.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2206
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2207
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2208
className:classNameArg autoloaded:autoloadedArg win32:win32Arg unix:unixArg
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2209
    className := classNameArg.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2210
    autoloaded := autoloadedArg.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2211
    win32 := win32Arg.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2212
    unix := unixArg.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2213
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2214
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2215
unix
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2216
    ^ unix
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2217
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2218
2146
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  2219
unix:aBoolean
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  2220
    unix := aBoolean.
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  2221
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  2222
    "Modified: / 21-11-2006 / 18:05:32 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2223
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2224
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2225
win32
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2226
    ^ win32
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2227
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2228
2146
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  2229
win32:aBoolean
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  2230
    win32 := aBoolean.
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  2231
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  2232
    "Modified: / 21-11-2006 / 18:05:35 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2233
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2234
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2235
!ProjectDefinitionEditor::ExtensionsListEntry methodsFor:'accessing'!
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2236
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2237
className
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2238
    ^ className
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2239
!
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2240
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2241
className:classNameArg selector:selectorArg
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2242
    className := classNameArg.
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2243
    selector := selectorArg.
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2244
!
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2245
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2246
selector
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2247
    ^ selector
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2248
! !
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2249
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2250
!ProjectDefinitionEditor::PrerequisitesListEntry methodsFor:'accessing'!
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2251
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2252
package
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2253
    ^ package
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2254
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2255
    "Created: / 07-09-2006 / 12:23:17 / cg"
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2256
!
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2257
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2258
package:something
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2259
    package := something.
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2260
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2261
    "Created: / 07-09-2006 / 12:23:19 / cg"
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2262
! !
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2263
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2264
!ProjectDefinitionEditor class methodsFor:'documentation'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2265
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2266
version
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2267
    ^ '$Header$'
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2268
! !