Tools__ProjectDefinitionEditor.st
author Claus Gittinger <cg@exept.de>
Tue, 01 Oct 2019 09:54:00 +0200
changeset 3771 33d35c030113
parent 3523 25fa267c550a
permissions -rw-r--r--
#UI_ENHANCEMENT by exept class: MethodFinderWindow class changed: #helpSpec
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
    "
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
    87
     UIHelpTool openOnClass:Tools::ProjectDefinitionEditor
2121
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
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   102
!ProjectDefinitionEditor class methodsFor:'interface specs'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   103
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   104
classesSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   105
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   106
     by the UIPainter of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   107
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   109
     the UIPainter may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   110
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   111
    "
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
   112
     UIPainter new openOnClass:Tools::ProjectDefinitionEditor andSelector:#classesSpec
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
   113
     Tools::ProjectDefinitionEditor new openInterface:#classesSpec
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   114
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   115
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   116
    <resource: #canvas>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   117
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   118
    ^
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   119
     #(FullSpec
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   120
	name: classesSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   121
	window:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   122
       (WindowSpec
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   123
	  label: 'NewApplication'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   124
	  name: 'NewApplication'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   125
	  min: (Point 0 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   126
	  bounds: (Rectangle 0 0 300 300)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   127
	)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   128
	component:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
       (SpecCollection
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   130
	  collection: (
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   131
	   (DataSetSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   132
	      name: 'ClassesTable'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   133
	      layout: (LayoutFrame 0 0 0 0 0 1 0 1)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   134
	      model: selectedClassIndexHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   135
	      menu: classListMenu
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   136
	      hasHorizontalScrollBar: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   137
	      hasVerticalScrollBar: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   138
	      dataList: classListHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   139
	      columnHolder: classesTableColumns
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   140
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   141
	   )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   142
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   143
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   144
      )
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
   145
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
   146
    "Modified: / 07-09-2006 / 11:35:14 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   147
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   148
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   149
compilationSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   150
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   151
     by the UIPainter of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   152
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   153
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   154
     the UIPainter may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   155
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   156
    "
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
   157
     UIPainter new openOnClass:Tools::ProjectDefinitionEditor andSelector:#compilationSpec
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
   158
     Tools::ProjectDefinitionEditor new openInterface:#compilationSpec
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   159
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   160
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   161
    <resource: #canvas>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   162
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   163
    ^
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   164
     #(FullSpec
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   165
	name: compilationSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   166
	window:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   167
       (WindowSpec
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   168
	  label: 'NewApplication'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   169
	  name: 'NewApplication'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   170
	  min: (Point 0 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   171
	  bounds: (Rectangle 0 0 433 300)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   172
	)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   173
	component:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   174
       (SpecCollection
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   175
	  collection: (
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   176
	   (FramedBoxSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   177
	      label: 'Optimization'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   178
	      name: 'FramedBox1'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   179
	      layout: (LayoutFrame 0 0 0 0 0 1 93 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   180
	      labelPosition: topLeft
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   181
	      translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   182
	      component:
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   183
	     (SpecCollection
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   184
		collection: (
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   185
		 (LabelSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   186
		    label: 'STC Optimization Flags:'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   187
		    name: 'Label1'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   188
		    layout: (LayoutFrame 0 0.0 7 0 160 0 29 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   189
		    translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   190
		    adjust: right
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   191
		  )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   192
		 (ComboBoxSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   193
		    name: 'STCOptimizationFlagsComboBox'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   194
		    layout: (LayoutFrame 162 0.0 5 0 0 1.0 27 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   195
		    model: stcOptimizationFlagsHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   196
		    acceptOnPointerLeave: false
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   197
		    comboList: stcOptimizationFlagList
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   198
		    postBuildCallback: flagHolderBuilt:
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   199
		  )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   200
		 (LabelSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   201
		    label: 'CC Optimization Flags:'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   202
		    name: 'Label2'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   203
		    layout: (LayoutFrame 0 0.0 35 0 160 0 57 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   204
		    translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   205
		    adjust: right
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   206
		  )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   207
		 (ComboBoxSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   208
		    name: 'CCOptimizationFlagsComboBox'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   209
		    layout: (LayoutFrame 162 0.0 33 0 0 1.0 55 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   210
		    model: ccOptimizationFlagsHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   211
		    acceptOnPointerLeave: false
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   212
		    comboList: ccOptimizationFlagList
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   213
		    postBuildCallback: flagHolderBuilt:
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   214
		  )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   215
		 )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   216
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   217
	      )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   218
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   219
	   (FramedBoxSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   220
	      label: 'Includes'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   221
	      name: 'FramedBox2'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   222
	      layout: (LayoutFrame 0 0 98 0 0 1 160 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   223
	      labelPosition: topLeft
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   224
	      translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   225
	      component:
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   226
	     (SpecCollection
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   227
		collection: (
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   228
		 (LabelSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   229
		    label: 'Additional Includes:'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   230
		    name: 'Label3'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   231
		    layout: (LayoutFrame 0 0.0 7 0 160 0 29 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   232
		    translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   233
		    adjust: right
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   234
		  )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   235
		 (InputFieldSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   236
		    name: 'IncludeFlagsEntryField'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   237
		    layout: (LayoutFrame 162 0.0 5 0 0 1.0 27 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   238
		    model: includeFlagsHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   239
		    acceptOnReturn: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   240
		    acceptOnTab: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   241
		    acceptOnLostFocus: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   242
		    acceptOnPointerLeave: false
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   243
		  )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   244
		 )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   245
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   246
	      )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   247
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   248
	   )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   249
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   250
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   251
      )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   252
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   253
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   254
descriptionSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   255
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   256
     by the UIPainter of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   257
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   258
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   259
     the UIPainter may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   260
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   261
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   262
     UIPainter new openOnClass:ApplicationDefinitionBuilder andSelector:#descriptionSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   263
     ApplicationDefinitionBuilder new openInterface:#descriptionSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   264
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   265
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   266
    <resource: #canvas>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   267
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   268
    ^
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   269
     #(FullSpec
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   270
	name: descriptionSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   271
	window:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   272
       (WindowSpec
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   273
	  label: 'NewApplication'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   274
	  name: 'NewApplication'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   275
	  min: (Point 0 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   276
	  bounds: (Rectangle 0 0 433 300)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   277
	)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   278
	component:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   279
       (SpecCollection
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   280
	  collection: (
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   281
	   (LabelSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   282
	      label: 'Company:'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   283
	      name: 'CompanyLabel'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   284
	      layout: (LayoutFrame 2 0.0 13 0 160 0 35 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   285
	      translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   286
	      adjust: right
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   287
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   288
	   (InputFieldSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   289
	      name: 'CompanyEntryField'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   290
	      layout: (LayoutFrame 162 0.0 12 0 -2 1.0 34 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   291
	      model: companyNameHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   292
	      acceptOnReturn: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   293
	      acceptOnTab: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   294
	      acceptOnLostFocus: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   295
	      acceptOnPointerLeave: false
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   296
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   297
	   (LabelSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   298
	      label: 'Description:'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   299
	      name: 'DescriptionLabel'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   300
	      layout: (LayoutFrame 2 0.0 39 0 160 0 61 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   301
	      translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   302
	      adjust: right
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   303
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   304
	   (InputFieldSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   305
	      name: 'DescriptionEntryField'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   306
	      layout: (LayoutFrame 162 0.0 38 0 -2 1.0 60 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   307
	      model: descriptionHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   308
	      acceptOnReturn: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   309
	      acceptOnTab: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   310
	      acceptOnLostFocus: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   311
	      acceptOnPointerLeave: false
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   312
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   313
	   (LabelSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   314
	      label: 'ProductName:'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   315
	      name: 'ProductNameLabel'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   316
	      layout: (LayoutFrame 2 0.0 65 0 160 0 87 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   317
	      translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   318
	      adjust: right
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   319
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   320
	   (InputFieldSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   321
	      name: 'ProductNameEntryField'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   322
	      layout: (LayoutFrame 162 0.0 64 0 -2 1.0 86 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   323
	      model: productNameHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   324
	      acceptOnReturn: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   325
	      acceptOnTab: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   326
	      acceptOnLostFocus: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   327
	      acceptOnPointerLeave: false
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   328
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   329
	   (LabelSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   330
	      label: 'ProductVersion:'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   331
	      name: 'ProductVersionLabel'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   332
	      layout: (LayoutFrame 2 0.0 91 0 160 0 113 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   333
	      translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   334
	      adjust: right
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   335
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   336
	   (InputFieldSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   337
	      name: 'MajorVersionNrEntryField'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   338
	      layout: (LayoutFrame 162 0.0 90 0 182 0.0 112 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   339
	      model: majorVersionNrHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   340
	      type: number
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   341
	      acceptOnReturn: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   342
	      acceptOnTab: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   343
	      acceptOnLostFocus: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   344
	      acceptOnPointerLeave: false
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   345
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   346
	   (InputFieldSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   347
	      name: 'MinorVersionNrEntryField'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   348
	      layout: (LayoutFrame 184 0.0 90 0 204 0.0 112 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   349
	      model: minorVersionNrHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   350
	      type: numberOrNil
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   351
	      acceptOnReturn: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   352
	      acceptOnTab: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   353
	      acceptOnLostFocus: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   354
	      acceptOnPointerLeave: false
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   355
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   356
	   (InputFieldSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   357
	      name: 'RevisionNrEntryField'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   358
	      layout: (LayoutFrame 206 0.0 90 0 226 0.0 112 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   359
	      model: revisionNrHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   360
	      type: number
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   361
	      acceptOnReturn: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   362
	      acceptOnTab: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   363
	      acceptOnLostFocus: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   364
	      acceptOnPointerLeave: false
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   365
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   366
	   (InputFieldSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   367
	      name: 'ReleaseNrEntryField'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   368
	      layout: (LayoutFrame 228 0.0 90 0 248 0.0 112 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   369
	      model: releaseNrHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   370
	      type: number
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   371
	      acceptOnReturn: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   372
	      acceptOnTab: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   373
	      acceptOnLostFocus: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   374
	      acceptOnPointerLeave: false
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   375
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   376
	   (LabelSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   377
	      label: 'LegalCopyright:'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   378
	      name: 'LegalCopyrightLabel'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   379
	      layout: (LayoutFrame 2 0.0 119 0 160 0 141 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   380
	      translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   381
	      adjust: right
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   382
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   383
	   (InputFieldSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   384
	      name: 'LegalCopyrightEntryField'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   385
	      layout: (LayoutFrame 162 0.0 118 0 -2 1.0 140 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   386
	      model: legalCopyrightHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   387
	      acceptOnReturn: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   388
	      acceptOnTab: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   389
	      acceptOnLostFocus: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   390
	      acceptOnPointerLeave: false
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   391
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   392
	   (LabelSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   393
	      label: 'FileDescriptionDescription:'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   394
	      name: 'FileDescriptionLabel'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   395
	      layout: (LayoutFrame 2 0.0 161 0 160 0 183 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   396
	      translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   397
	      adjust: right
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   398
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   399
	   (InputFieldSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   400
	      name: 'FileDescriptionEntryField'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   401
	      layout: (LayoutFrame 162 0.0 160 0 -2 1.0 182 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   402
	      model: fileDescriptionHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   403
	      acceptOnReturn: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   404
	      acceptOnTab: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   405
	      acceptOnLostFocus: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   406
	      acceptOnPointerLeave: false
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   407
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   408
	   (LabelSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   409
	      label: 'FileVersion:'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   410
	      name: 'FileVersionLabel'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   411
	      layout: (LayoutFrame 2 0.0 187 0 160 0 209 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   412
	      translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   413
	      adjust: right
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   414
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   415
	   (InputFieldSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   416
	      name: 'FileMajorVersionNrEntryField'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   417
	      layout: (LayoutFrame 162 0.0 186 0 182 0.0 208 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   418
	      model: fileMajorVersionNrHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   419
	      type: number
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   420
	      acceptOnReturn: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   421
	      acceptOnTab: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   422
	      acceptOnLostFocus: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   423
	      acceptOnPointerLeave: false
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   424
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   425
	   (InputFieldSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   426
	      name: 'FileMinorVersionNrEntryField'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   427
	      layout: (LayoutFrame 184 0.0 186 0 204 0.0 208 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   428
	      model: fileMinorVersionNrHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   429
	      type: number
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   430
	      acceptOnReturn: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   431
	      acceptOnTab: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   432
	      acceptOnLostFocus: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   433
	      acceptOnPointerLeave: false
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   434
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   435
	   (InputFieldSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   436
	      name: 'FileRevisionNrEntryField'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   437
	      layout: (LayoutFrame 206 0.0 186 0 226 0.0 208 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   438
	      model: fileRevisionNrHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   439
	      type: number
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   440
	      acceptOnReturn: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   441
	      acceptOnTab: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   442
	      acceptOnLostFocus: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   443
	      acceptOnPointerLeave: false
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   444
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   445
	   (InputFieldSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   446
	      name: 'FileReleaseNrEntryField'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   447
	      layout: (LayoutFrame 228 0.0 186 0 248 0.0 208 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   448
	      model: fileReleaseNrHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   449
	      type: number
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   450
	      acceptOnReturn: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   451
	      acceptOnTab: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   452
	      acceptOnLostFocus: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   453
	      acceptOnPointerLeave: false
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   454
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   455
	   (LabelSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   456
	      label: 'Icon Filename:'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   457
	      name: 'IconFileNameLabel'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   458
	      layout: (LayoutFrame 2 0.0 236 0 160 0 258 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   459
	      visibilityChannel: isApplicationDefinitionHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   460
	      translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   461
	      adjust: right
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   462
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   463
	   (InputFieldSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   464
	      name: 'IconFileNameEntryField'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   465
	      layout: (LayoutFrame 162 0.0 234 0 -2 1.0 256 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   466
	      visibilityChannel: isApplicationDefinitionHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   467
	      model: iconFileNameHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   468
	      acceptOnReturn: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   469
	      acceptOnTab: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   470
	      acceptOnLostFocus: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   471
	      acceptOnPointerLeave: false
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   472
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   473
	   )
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   474
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   475
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   476
      )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   477
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   478
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   479
extensionsSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   480
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   481
     by the UIPainter of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   482
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   483
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   484
     the UIPainter may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   485
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   486
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   487
     UIPainter new openOnClass:ApplicationDefinitionEditor andSelector:#extensionsSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   488
     ApplicationDefinitionEditor new openInterface:#extensionsSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   489
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   490
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   491
    <resource: #canvas>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   492
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   493
    ^
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   494
     #(FullSpec
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   495
	name: extensionsSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   496
	window:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   497
       (WindowSpec
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   498
	  label: 'NewApplication'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   499
	  name: 'NewApplication'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   500
	  min: (Point 0 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   501
	  bounds: (Rectangle 0 0 300 300)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   502
	)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   503
	component:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   504
       (SpecCollection
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   505
	  collection: (
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   506
	   (DataSetSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   507
	      name: 'ExtensionsTable'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   508
	      layout: (LayoutFrame 0 0 0 0 0 1 0 1)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   509
	      model: selectedExtensionIndexHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   510
	      hasHorizontalScrollBar: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   511
	      hasVerticalScrollBar: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   512
	      dataList: extensionsListHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   513
	      columnHolder: extensionsTableColumns
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   514
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   515
	   )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   516
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   517
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   518
      )
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
   519
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
   520
    "Modified: / 07-09-2006 / 11:35:17 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   521
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   522
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   523
prerequisitesSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   524
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   525
     by the UIPainter of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   526
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   527
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   528
     the UIPainter may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   529
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   530
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   531
     UIPainter new openOnClass:ApplicationDefinitionEditor andSelector:#extensionsSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   532
     ApplicationDefinitionEditor new openInterface:#extensionsSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   533
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   534
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   535
    <resource: #canvas>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   536
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   537
    ^
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   538
     #(FullSpec
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   539
	name: extensionsSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   540
	window:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   541
       (WindowSpec
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   542
	  label: 'NewApplication'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   543
	  name: 'NewApplication'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   544
	  min: (Point 0 0)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   545
	  bounds: (Rectangle 0 0 300 300)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   546
	)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   547
	component:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   548
       (SpecCollection
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   549
	  collection: (
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   550
	   (DataSetSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   551
	      name: 'ExtensionsTable'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   552
	      layout: (LayoutFrame 0 0 0 0 0 1 0 1)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   553
	      model: selectedPrerequisitesIndexHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   554
	      hasHorizontalScrollBar: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   555
	      hasVerticalScrollBar: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   556
	      dataList: prerequisitesListHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   557
	      columnHolder: prerequisitesTableColumns
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   558
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   559
	   )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   560
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   561
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   562
      )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   563
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   564
    "Created: / 05-09-2006 / 13:21:32 / cg"
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
   565
    "Modified: / 07-09-2006 / 11:35:20 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   566
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   567
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   568
startupSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   569
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   570
     by the UIPainter of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   571
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   572
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   573
     the UIPainter may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   574
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   575
    "
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
   576
     UIPainter new openOnClass:Tools::ProjectDefinitionEditor andSelector:#startupSpec
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
   577
     Tools::ProjectDefinitionEditor new openInterface:#startupSpec
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   578
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   579
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   580
    <resource: #canvas>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   581
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   582
    ^
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   583
     #(FullSpec
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   584
	name: startupSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   585
	window:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   586
       (WindowSpec
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   587
	  label: 'NewApplication'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   588
	  name: 'NewApplication'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   589
	  min: (Point 0 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   590
	  bounds: (Rectangle 0 0 433 300)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   591
	)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   592
	component:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   593
       (SpecCollection
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   594
	  collection: (
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   595
	   (FramedBoxSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   596
	      label: 'Startup'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   597
	      name: 'StartupFrame'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   598
	      layout: (LayoutFrame 0 0 0 0 0 1 93 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   599
	      labelPosition: topLeft
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   600
	      translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   601
	      component:
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   602
	     (SpecCollection
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   603
		collection: (
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   604
		 (LabelSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   605
		    label: 'Startup Class:'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   606
		    name: 'Label1'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   607
		    layout: (LayoutFrame 0 0.0 7 0 160 0 29 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   608
		    translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   609
		    adjust: right
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   610
		  )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   611
		 (InputFieldSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   612
		    name: 'StartupClassEntryField'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   613
		    layout: (LayoutFrame 162 0.0 5 0 0 1.0 27 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   614
		    model: startupClassNameHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   615
		    acceptOnReturn: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   616
		    acceptOnTab: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   617
		    acceptOnLostFocus: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   618
		    acceptOnPointerLeave: false
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   619
		  )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   620
		 (LabelSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   621
		    label: 'Startup Selector:'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   622
		    name: 'Label2'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   623
		    layout: (LayoutFrame 0 0.0 35 0 160 0 57 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   624
		    translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   625
		    adjust: right
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   626
		  )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   627
		 (InputFieldSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   628
		    name: 'StartupSelectorEntryField'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   629
		    layout: (LayoutFrame 162 0.0 33 0 0 1.0 55 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   630
		    model: startupSelectorHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   631
		    acceptOnReturn: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   632
		    acceptOnTab: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   633
		    acceptOnLostFocus: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   634
		    acceptOnPointerLeave: false
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   635
		  )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   636
		 )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   637
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   638
	      )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   639
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   640
	   (FramedBoxSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   641
	      label: 'Execution'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   642
	      name: 'ExecutionFrame'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   643
	      layout: (LayoutFrame 0 0 94 0 0 1 176 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   644
	      labelPosition: topLeft
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   645
	      translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   646
	      component:
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   647
	     (SpecCollection
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   648
		collection: (
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   649
		 (CheckBoxSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   650
		    label: 'Non-GUI Application'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   651
		    name: 'Non-GUI CheckBox'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   652
		    layout: (LayoutFrame 0 0.0 7 0 0 0.5 29 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   653
		    model: isNonGUIApplicationHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   654
		    translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   655
		  )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   656
		 (CheckBoxSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   657
		    label: 'Singlethreaded'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   658
		    name: 'SinglethreadedCheckBox'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   659
		    layout: (LayoutFrame 0 0.5 7 0 0 1 29 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   660
		    enableChannel: isNonGUIApplicationHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   661
		    model: startSinglethreadedHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   662
		    translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   663
		  )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   664
		 (CheckBoxSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   665
		    label: 'Has Console'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   666
		    name: 'HasConsoleCheckBox1'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   667
		    layout: (LayoutFrame 0 0.5 34 0 0 1 56 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   668
		    enableChannel: isGUIApplicationHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   669
		    model: shownHasConsoleHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   670
		    translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   671
		  )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   672
		 )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   673
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   674
	      )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   675
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   676
	   (FramedBoxSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   677
	      label: 'File Extensions'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   678
	      name: 'FileExtensionsFrame'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   679
	      layout: (LayoutFrame 0 0 177 0 0 1 237 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   680
	      labelPosition: topLeft
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   681
	      translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   682
	      component:
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   683
	     (SpecCollection
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   684
		collection: (
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   685
		 (LabelSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   686
		    label: 'Document Extensions:'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   687
		    name: 'Label3'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   688
		    layout: (LayoutFrame 0 0.0 7 0 160 0 29 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   689
		    activeHelpKey: documentExtensions
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   690
		    translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   691
		    adjust: right
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   692
		  )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   693
		 (InputFieldSpec
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   694
		    activeHelpKey: documentExtensions
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   695
		    name: 'EntryField1'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   696
		    layout: (LayoutFrame 162 0.0 5 0 0 1.0 27 0)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   697
		    model: documentExtensionsListStringHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   698
		    type: string
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   699
		    acceptOnReturn: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   700
		    acceptOnTab: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   701
		    acceptOnLostFocus: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   702
		    acceptOnPointerLeave: false
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   703
		  )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   704
		 )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   705
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   706
	      )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   707
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   708
	   )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   709
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   710
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   711
      )
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   712
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   713
    "Modified: / 15-10-2006 / 14:35:12 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   714
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   715
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   716
windowSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   717
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   718
     by the UIPainter of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   719
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   720
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   721
     the UIPainter may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   722
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   723
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   724
     UIPainter new openOnClass:ApplicationDefinitionBuilder andSelector:#windowSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   725
     ApplicationDefinitionBuilder new openInterface:#windowSpec
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   726
     ApplicationDefinitionBuilder open
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   727
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   728
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   729
    <resource: #canvas>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   730
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   731
    ^
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   732
     #(FullSpec
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   733
	name: windowSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   734
	window:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   735
       (WindowSpec
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   736
	  label: 'ApplicationDefinitionBuilder'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   737
	  name: 'ApplicationDefinitionBuilder'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   738
	  min: (Point 10 10)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   739
	  max: (Point 1024 768)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   740
	  bounds: (Rectangle 0 0 596 339)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   741
	  menu: mainMenu
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   742
	)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   743
	component:
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   744
       (SpecCollection
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   745
	  collection: (
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   746
	   (NoteBookViewSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   747
	      name: 'NoteBook1'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   748
	      layout: (LayoutFrame 0 0 0 0 0 1 0 1)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   749
	      model: selectedTabIndexHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   750
	      menu: tabList
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   751
	      useIndex: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   752
	    )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   753
	   )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   754
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   755
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   756
      )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   757
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   758
    "Modified: / 03-09-2006 / 10:57:33 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   759
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   760
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   761
!ProjectDefinitionEditor class methodsFor:'list specs'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   762
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
   763
tabList
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
   764
^ self  tabListForApplication.
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
   765
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
   766
    "Created: / 06-09-2006 / 13:38:03 / cg"
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
   767
!
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
   768
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   769
tabListForApplication
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   770
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   771
     by the TabListEditor of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   772
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   773
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   774
     the TabListEditor may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   775
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   776
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   777
     TabListEditor new openOnClass: self andSelector:#tabList
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   778
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   779
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   780
    <resource: #tabList>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   781
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   782
    ^     #(
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   783
       (TabItem
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   784
	  label: 'Description'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   785
	  minorKey: descriptionSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   786
	)
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
   787
       (TabItem
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   788
	  label: 'Classes'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   789
	  createNewBuilder: false
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   790
	  translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   791
	  minorKey: classesSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   792
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   793
       (TabItem
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   794
	  label: 'Extensions'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   795
	  minorKey: extensionsSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   796
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   797
       (TabItem
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   798
	  label: 'Prerequisites'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   799
	  minorKey: prerequisitesSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   800
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   801
       (TabItem
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   802
	  label: 'Compilation'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   803
	  minorKey: compilationSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   804
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   805
       (TabItem
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   806
	  label: 'Startup'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   807
	  minorKey: startupSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   808
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   809
       )
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   810
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   811
      collect:[:aTab| TabItem new fromLiteralArrayEncoding:aTab ]
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   812
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   813
    "Created: / 05-09-2006 / 16:24:48 / cg"
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
   814
    "Modified: / 06-09-2006 / 18:44:34 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   815
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   816
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   817
tabListForLibrary
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   818
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   819
     by the TabListEditor of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   820
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   821
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   822
     the TabListEditor may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   823
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   824
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   825
     TabListEditor new openOnClass: self andSelector:#tabList
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   826
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   827
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   828
    <resource: #tabList>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   829
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   830
    ^     #(
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   831
       (TabItem
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   832
	  label: 'Description'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   833
	  minorKey: descriptionSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   834
	)
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
   835
       (TabItem
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   836
	  label: 'Classes'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   837
	  createNewBuilder: false
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   838
	  translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   839
	  minorKey: classesSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   840
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   841
       (TabItem
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   842
	  label: 'Extensions'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   843
	  minorKey: extensionsSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   844
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   845
       (TabItem
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   846
	  label: 'Prerequisites'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   847
	  minorKey: prerequisitesSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   848
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   849
       (TabItem
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   850
	  label: 'Compilation'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   851
	  minorKey: compilationSpec
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   852
	)
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   853
       )
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   854
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   855
      collect:[:aTab| TabItem new fromLiteralArrayEncoding:aTab ]
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   856
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   857
    "Created: / 05-09-2006 / 16:24:52 / cg"
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
   858
    "Modified: / 06-09-2006 / 18:44:38 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   859
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   860
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   861
!ProjectDefinitionEditor class methodsFor:'menu specs'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   862
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   863
classListMenu
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   864
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   865
     by the MenuEditor of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   866
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   867
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   868
     the MenuEditor may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   869
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   870
    "
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
   871
     MenuEditor new openOnClass:Tools::ProjectDefinitionEditor andSelector:#classListMenu
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
   872
     (Menu new fromLiteralArrayEncoding:(Tools::ProjectDefinitionEditor classListMenu)) startUp
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   873
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   874
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   875
    <resource: #menu>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   876
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   877
    ^
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   878
     #(Menu
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   879
	(
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   880
	 (MenuItem
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   881
	    enabled: hasDefinitionClassHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   882
	    label: 'Generate'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   883
	    itemValue: menuGenerateClassList
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   884
	    translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   885
	  )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   886
	 (MenuItem
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   887
	    label: '-'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   888
	  )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   889
	 (MenuItem
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   890
	    enabled: hasDefinitionClassHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   891
	    label: 'Add...'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   892
	    itemValue: menuAddClass
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   893
	    translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   894
	  )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   895
	 (MenuItem
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   896
	    enabled: hasDefinitionClassHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   897
	    label: 'Remove...'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   898
	    itemValue: menuRemoveClass
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   899
	    translateLabel: true
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
	 )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   902
	nil
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   903
	nil
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   904
      )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   905
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   906
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   907
extensionsListMenu
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   908
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   909
     by the MenuEditor of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   910
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   911
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   912
     the MenuEditor may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   913
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   914
    "
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
   915
     MenuEditor new openOnClass:Tools::ProjectDefinitionEditor andSelector:#extensionsListMenu
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
   916
     (Menu new fromLiteralArrayEncoding:(Tools::ProjectDefinitionEditor extensionsListMenu)) startUp
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   917
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   918
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   919
    <resource: #menu>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   920
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   921
    ^
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   922
     #(Menu
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   923
	(
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   924
	 (MenuItem
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   925
	    enabled: hasDefinitionClassHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   926
	    label: 'Generate'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   927
	    itemValue: menuGenerateExtensionsList
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   928
	    translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   929
	  )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   930
	 (MenuItem
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   931
	    label: '-'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   932
	  )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   933
	 (MenuItem
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   934
	    enabled: hasDefinitionClassHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   935
	    label: 'Add...'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   936
	    itemValue: menuAddExtension
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   937
	    translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   938
	  )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   939
	 (MenuItem
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   940
	    enabled: hasDefinitionClassHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   941
	    label: 'Remove...'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   942
	    itemValue: menuRemoveExtension
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   943
	    translateLabel: true
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
	 )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   946
	nil
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   947
	nil
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   948
      )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   949
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   950
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   951
mainMenu
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   952
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   953
     by the MenuEditor of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   954
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   955
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   956
     the MenuEditor may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   957
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   958
    "
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
   959
     MenuEditor new openOnClass:Tools::ProjectDefinitionEditor andSelector:#mainMenu
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
   960
     (Menu new fromLiteralArrayEncoding:(Tools::ProjectDefinitionEditor mainMenu)) startUp
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   961
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   962
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   963
    <resource: #menu>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   964
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   965
    ^
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   966
     #(Menu
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   967
	(
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   968
	 (MenuItem
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   969
	    label: 'File'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   970
	    translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   971
	    submenu:
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   972
	   (Menu
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   973
	      (
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   974
	       (MenuItem
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   975
		  label: 'New Library'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   976
		  itemValue: menuNewLibraryDefinition
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   977
		  translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   978
		)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   979
	       (MenuItem
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   980
		  label: 'New Application'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   981
		  itemValue: menuNewApplicationDefinition
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   982
		  translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   983
		)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   984
	       (MenuItem
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   985
		  label: '-'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   986
		)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   987
	       (MenuItem
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   988
		  label: 'Open...'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   989
		  itemValue: menuOpen
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   990
		  translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   991
		)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   992
	       (MenuItem
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   993
		  label: '-'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   994
		)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   995
	       (MenuItem
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   996
		  enabled: hasDefinitionClassHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   997
		  label: 'Save'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   998
		  itemValue: menuSave
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
   999
		  translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1000
		)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1001
	       (MenuItem
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1002
		  enabled: hasDefinitionClassHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1003
		  label: 'Save As...'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1004
		  itemValue: menuSaveAs
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1005
		  translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1006
		)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1007
	       (MenuItem
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1008
		  label: '-'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1009
		)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1010
	       (MenuItem
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1011
		  label: 'Exit'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1012
		  itemValue: closeRequest
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1013
		  translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1014
		)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1015
	       )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1016
	      nil
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1017
	      nil
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1018
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1019
	  )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1020
	 (MenuItem
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1021
	    label: 'Definition'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1022
	    translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1023
	    submenu:
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1024
	   (Menu
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1025
	      (
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1026
	       (MenuItem
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1027
		  enabled: hasDefinitionClassHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1028
		  label: 'Generate Definitions'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1029
		  itemValue: menuGenerateProjectDefinitions
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1030
		  translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1031
		)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1032
	       )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1033
	      nil
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1034
	      nil
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1035
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1036
	  )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1037
	 (MenuItem
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1038
	    label: 'Classes'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1039
	    translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1040
	    isVisible: classesMenuVisibleHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1041
	    submenuChannel: classListMenu
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1042
	    keepLinkedMenu: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1043
	  )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1044
	 (MenuItem
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1045
	    label: 'Extensions'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1046
	    translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1047
	    isVisible: extensionsMenuVisibleHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1048
	    submenuChannel: extensionsListMenu
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1049
	    keepLinkedMenu: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1050
	  )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1051
	 (MenuItem
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1052
	    label: 'Prerequisites'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1053
	    translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1054
	    isVisible: prerequisitesMenuVisibleHolder
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1055
	    submenuChannel: prerequisitesListMenu
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1056
	    keepLinkedMenu: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1057
	  )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1058
	 (MenuItem
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1059
	    label: 'MENU_Help'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1060
	    translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1061
	    startGroup: conditionalRight
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1062
	    submenu:
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1063
	   (Menu
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1064
	      (
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1065
	       (MenuItem
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1066
		  label: 'Documentation'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1067
		  itemValue: openDocumentation
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1068
		  translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1069
		)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1070
	       (MenuItem
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1071
		  label: '-'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1072
		)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1073
	       (MenuItem
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1074
		  label: 'About this Application...'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1075
		  itemValue: openAboutThisApplication
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1076
		  translateLabel: true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1077
		)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1078
	       )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1079
	      nil
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1080
	      nil
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1081
	    )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1082
	  )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1083
	 )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1084
	nil
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1085
	nil
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1086
      )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1087
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1088
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1089
prerequisitesListMenu
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1090
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1091
     by the MenuEditor of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1092
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1093
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1094
     the MenuEditor may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1095
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1096
    "
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1097
     MenuEditor new openOnClass:Tools::ProjectDefinitionEditor andSelector:#prerequisitesListMenu
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1098
     (Menu new fromLiteralArrayEncoding:(Tools::ProjectDefinitionEditor prerequisitesListMenu)) startUp
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1099
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1100
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1101
    <resource: #menu>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1102
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1103
    ^
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1104
     #(Menu
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1105
	(
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1106
	 (MenuItem
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1107
	    enabled: hasDefinitionClassHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1108
	    label: 'Generate'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1109
	    itemValue: menuGeneratePrerequisitesList
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1110
	    translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1111
	  )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1112
	 (MenuItem
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1113
	    label: '-'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1114
	  )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1115
	 (MenuItem
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1116
	    enabled: hasDefinitionClassHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1117
	    label: 'Add...'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1118
	    itemValue: menuAddPrerequisite
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1119
	    translateLabel: true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1120
	  )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1121
	 (MenuItem
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1122
	    enabled: hasDefinitionClassHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1123
	    label: 'Remove...'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1124
	    itemValue: menuRemovePrerequisite
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1125
	    translateLabel: true
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
	 )
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1128
	nil
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1129
	nil
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1130
      )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1131
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1132
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1133
!ProjectDefinitionEditor class methodsFor:'tableColumns specs'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1134
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1135
classesTableColumns
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1136
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1137
     by the DataSetBuilder of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1138
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1139
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1140
     the DataSetBuilder may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1141
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1142
    "
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1143
     DataSetBuilder new openOnClass:Tools::ProjectDefinitionEditor andSelector:#classesTableColumns
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1144
    "
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1145
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1146
    <resource: #tableColumns>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1147
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1148
    ^#(
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1149
      (DataSetColumnSpec
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1150
	 label: 'Class'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1151
	 labelAlignment: left
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1152
	 labelButtonType: Button
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1153
	 model: className
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1154
	 canSelect: false
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1155
       )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1156
      (DataSetColumnSpec
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1157
	 label: 'Auto'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1158
	 labelButtonType: Button
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1159
	 editorType: CheckToggle
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1160
	 rendererType: CheckToggle
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1161
	 model: autoloaded
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1162
       )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1163
      (DataSetColumnSpec
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1164
	 label: 'Win32'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1165
	 labelButtonType: Button
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1166
	 editorType: CheckToggle
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1167
	 rendererType: CheckToggle
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1168
	 model: win32
2078
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
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1171
	 label: 'Unix'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1172
	 labelButtonType: Button
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1173
	 editorType: CheckToggle
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1174
	 rendererType: CheckToggle
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1175
	 model: unix
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
      )
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1178
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1179
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1180
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1181
extensionsTableColumns
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1182
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1183
     by the DataSetBuilder of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1184
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1185
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1186
     the DataSetBuilder may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1187
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1188
    "
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1189
     DataSetBuilder new openOnClass:Tools::ProjectDefinitionEditor andSelector:#extensionsTableColumns
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
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1192
    <resource: #tableColumns>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1193
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1194
    ^#(
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1195
      (DataSetColumnSpec
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1196
	 label: 'Class'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1197
	 labelAlignment: left
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1198
	 labelButtonType: Button
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1199
	 model: className
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1200
	 canSelect: false
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1201
       )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1202
      (DataSetColumnSpec
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1203
	 label: 'Selector'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1204
	 labelAlignment: left
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1205
	 labelButtonType: Button
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1206
	 model: selector
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1207
	 canSelect: false
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1208
       )
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1209
      )
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1210
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
prerequisitesTableColumns
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1214
    "This resource specification was automatically generated
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1215
     by the DataSetBuilder of ST/X."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1216
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1217
    "Do not manually edit this!! If it is corrupted,
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1218
     the DataSetBuilder may not be able to read the specification."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1219
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1220
    "
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  1221
     DataSetBuilder new openOnClass:Tools::ProjectDefinitionEditor andSelector:#prerequisitesTableColumns
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
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1224
    <resource: #tableColumns>
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1225
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1226
    ^#(
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1227
      (DataSetColumnSpec
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1228
	 label: 'Package'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1229
	 labelAlignment: left
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1230
	 labelButtonType: Button
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1231
	 model: package
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
      )
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1234
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1235
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1236
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1237
!ProjectDefinitionEditor methodsFor:'accessing'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1238
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1239
definitionClass
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1240
    ^ definitionClass
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1241
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1242
    "Created: / 04-09-2006 / 16:30:09 / cg"
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
definitionClass:aClass
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1246
    definitionClass := aClass.
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1247
    self refetchDefinitionValues.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1248
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1249
    "Created: / 04-09-2006 / 16:30:18 / cg"
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1250
    "Modified: / 07-09-2006 / 12:26:57 / cg"
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  1251
!
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  1252
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  1253
specClass:aClass
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  1254
    super specClass:aClass.
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  1255
    self definitionClass:aClass theNonMetaclass.
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  1256
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  1257
    "Created: / 06-09-2006 / 19:24:10 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1258
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1259
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1260
!ProjectDefinitionEditor methodsFor:'aspects'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1261
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1262
ccOptimizationFlagList
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1263
    ^ #(
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1264
	'-O'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1265
	'-g'
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1266
    )
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1267
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1268
    "Created: / 15-10-2006 / 15:14:39 / cg"
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1269
!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1270
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1271
ccOptimizationFlagsHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1272
    ccOptimizationFlagsHolder isNil ifTrue:[
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1273
	ccOptimizationFlagsHolder := ValueHolder new.
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1274
    ].
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1275
    ^ ccOptimizationFlagsHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1276
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1277
    "Created: / 15-10-2006 / 15:13:14 / cg"
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1278
!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1279
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1280
classListHolder
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1281
    classListHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1282
	classListHolder := #() asValue.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1283
    ].
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1284
    ^ classListHolder.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1285
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1286
    "Created: / 07-09-2006 / 11:34:35 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1287
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1288
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1289
classesTableColumns
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1290
    classesTableColumns isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1291
	classesTableColumns := self class classesTableColumns asValue.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1292
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1293
    ^ classesTableColumns.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1294
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1295
    "Modified: / 04-09-2006 / 17:58:09 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1296
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1297
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1298
companyNameHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1299
    companyNameHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1300
	companyNameHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1301
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1302
    ^ companyNameHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1303
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1304
    "Created: / 04-09-2006 / 17:58:02 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1305
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1306
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1307
descriptionHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1308
    descriptionHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1309
	descriptionHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1310
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1311
    ^ descriptionHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1312
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1313
    "Modified: / 04-09-2006 / 17:58:15 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1314
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1315
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1316
documentExtensionsListStringHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1317
    documentExtensionsListStringHolder isNil ifTrue:[
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1318
	documentExtensionsListStringHolder := '' asValue.
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1319
    ].
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1320
    ^ documentExtensionsListStringHolder.
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1321
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1322
    "Created: / 15-10-2006 / 14:32:29 / cg"
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1323
!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1324
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1325
extensionsListHolder
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1326
    extensionsListHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1327
	extensionsListHolder := #() asValue.
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1328
    ].
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1329
    ^ extensionsListHolder.
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1330
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1331
    "Created: / 07-09-2006 / 11:34:50 / cg"
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1332
!
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1333
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1334
fileDescriptionHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1335
    fileDescriptionHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1336
	fileDescriptionHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1337
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1338
    ^ fileDescriptionHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1339
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1340
    "Modified: / 04-09-2006 / 17:58:19 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1341
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1342
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1343
fileMajorVersionNrHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1344
    "automatically generated by UIPainter ..."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1345
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1346
    "*** the code below creates a default model when invoked."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1347
    "*** (which may not be the one you wanted)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1348
    "*** Please change as required and accept it in the browser."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1349
    "*** (and replace this comment by something more useful ;-)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1350
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1351
    fileMajorVersionNrHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1352
	fileMajorVersionNrHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1353
"/ 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
  1354
"/       fileMajorVersionNrHolder addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1355
"/       fileMajorVersionNrHolder onChangeSend:#fileMajorVersionNrHolderChanged to:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1356
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1357
    ^ fileMajorVersionNrHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1358
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1359
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1360
fileMinorVersionNrHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1361
    "automatically generated by UIPainter ..."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1362
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1363
    "*** the code below creates a default model when invoked."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1364
    "*** (which may not be the one you wanted)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1365
    "*** Please change as required and accept it in the browser."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1366
    "*** (and replace this comment by something more useful ;-)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1367
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1368
    fileMinorVersionNrHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1369
	fileMinorVersionNrHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1370
"/ 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
  1371
"/       fileMinorVersionNrHolder addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1372
"/       fileMinorVersionNrHolder onChangeSend:#fileMinorVersionNrHolderChanged to:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1373
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1374
    ^ fileMinorVersionNrHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1375
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1376
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1377
fileReleaseNrHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1378
    "automatically generated by UIPainter ..."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1379
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1380
    "*** the code below creates a default model when invoked."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1381
    "*** (which may not be the one you wanted)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1382
    "*** Please change as required and accept it in the browser."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1383
    "*** (and replace this comment by something more useful ;-)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1384
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1385
    fileReleaseNrHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1386
	fileReleaseNrHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1387
"/ 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
  1388
"/       fileReleaseNrHolder addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1389
"/       fileReleaseNrHolder onChangeSend:#fileReleaseNrHolderChanged to:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1390
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1391
    ^ fileReleaseNrHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1392
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1393
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1394
fileRevisionNrHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1395
    "automatically generated by UIPainter ..."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1396
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1397
    "*** the code below creates a default model when invoked."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1398
    "*** (which may not be the one you wanted)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1399
    "*** Please change as required and accept it in the browser."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1400
    "*** (and replace this comment by something more useful ;-)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1401
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1402
    fileRevisionNrHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1403
	fileRevisionNrHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1404
"/ 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
  1405
"/       fileRevisionNrHolder addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1406
"/       fileRevisionNrHolder onChangeSend:#fileRevisionNrHolderChanged to:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1407
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1408
    ^ fileRevisionNrHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1409
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1410
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1411
hasConsoleHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1412
    hasConsoleHolder isNil ifTrue:[
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1413
	hasConsoleHolder := false asValue
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1414
    ].
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1415
    ^ hasConsoleHolder.
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1416
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1417
    "Created: / 20-09-2006 / 14:39:18 / cg"
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1418
!
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1419
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1420
iconFileNameHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1421
    iconFileNameHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1422
	iconFileNameHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1423
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1424
    ^ iconFileNameHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1425
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1426
    "Created: / 04-09-2006 / 18:01:22 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1427
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1428
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1429
isApplicationDefinitionHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1430
    isApplicationDefinitionHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1431
	isApplicationDefinitionHolder := false asValue
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1432
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1433
    ^ isApplicationDefinitionHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1434
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1435
    "Created: / 04-09-2006 / 19:22:47 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1436
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1437
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1438
isGUIApplicationHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1439
    ^ BlockValue forLogicalNot:self isNonGUIApplicationHolder
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1440
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1441
    "Created: / 20-09-2006 / 14:38:32 / cg"
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1442
!
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1443
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1444
isNonGUIApplicationHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1445
    isNonGUIApplicationHolder isNil ifTrue:[
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1446
	isNonGUIApplicationHolder := false asValue.
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1447
	isNonGUIApplicationHolder addDependent:self.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1448
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1449
    ^ isNonGUIApplicationHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1450
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1451
    "Created: / 05-09-2006 / 13:34:31 / cg"
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1452
    "Modified: / 15-10-2006 / 14:00:03 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1453
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1454
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1455
legalCopyrightHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1456
    "automatically generated by UIPainter ..."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1457
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1458
    "*** the code below creates a default model when invoked."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1459
    "*** (which may not be the one you wanted)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1460
    "*** Please change as required and accept it in the browser."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1461
    "*** (and replace this comment by something more useful ;-)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1462
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1463
    legalCopyrightHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1464
	legalCopyrightHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1465
"/ 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
  1466
"/       legalCopyrightHolder addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1467
"/       legalCopyrightHolder onChangeSend:#legalCopyrightHolderChanged to:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1468
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1469
    ^ legalCopyrightHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1470
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1471
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1472
majorVersionNrHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1473
    "automatically generated by UIPainter ..."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1474
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1475
    "*** the code below creates a default model when invoked."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1476
    "*** (which may not be the one you wanted)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1477
    "*** Please change as required and accept it in the browser."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1478
    "*** (and replace this comment by something more useful ;-)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1479
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1480
    majorVersionNrHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1481
	majorVersionNrHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1482
"/ 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
  1483
"/       majorVersionNrHolder addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1484
"/       majorVersionNrHolder onChangeSend:#majorVersionNrHolderChanged to:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1485
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1486
    ^ majorVersionNrHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1487
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1488
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1489
minorVersionNrHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1490
    "automatically generated by UIPainter ..."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1491
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1492
    "*** the code below creates a default model when invoked."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1493
    "*** (which may not be the one you wanted)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1494
    "*** Please change as required and accept it in the browser."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1495
    "*** (and replace this comment by something more useful ;-)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1496
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1497
    minorVersionNrHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1498
	minorVersionNrHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1499
"/ 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
  1500
"/       minorVersionNrHolder addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1501
"/       minorVersionNrHolder onChangeSend:#minorVersionNrHolderChanged to:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1502
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1503
    ^ minorVersionNrHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1504
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1505
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1506
prerequisitesListHolder
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1507
    prerequisitesListHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1508
	prerequisitesListHolder := #() asValue.
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1509
    ].
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1510
    ^ prerequisitesListHolder.
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1511
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1512
    "Created: / 07-09-2006 / 11:35:03 / cg"
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1513
!
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1514
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1515
productNameHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1516
    "automatically generated by UIPainter ..."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1517
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1518
    "*** the code below creates a default model when invoked."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1519
    "*** (which may not be the one you wanted)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1520
    "*** Please change as required and accept it in the browser."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1521
    "*** (and replace this comment by something more useful ;-)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1522
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1523
    productNameHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1524
	productNameHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1525
"/ 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
  1526
"/       productNameHolder addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1527
"/       productNameHolder onChangeSend:#productNameHolderChanged to:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1528
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1529
    ^ productNameHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1530
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1531
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1532
releaseNrHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1533
    "automatically generated by UIPainter ..."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1534
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1535
    "*** the code below creates a default model when invoked."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1536
    "*** (which may not be the one you wanted)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1537
    "*** Please change as required and accept it in the browser."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1538
    "*** (and replace this comment by something more useful ;-)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1539
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1540
    releaseNrHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1541
	releaseNrHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1542
"/ 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
  1543
"/       releaseNrHolder addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1544
"/       releaseNrHolder onChangeSend:#releaseNrHolderChanged to:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1545
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1546
    ^ releaseNrHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1547
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1548
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1549
revisionNrHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1550
    "automatically generated by UIPainter ..."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1551
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1552
    "*** the code below creates a default model when invoked."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1553
    "*** (which may not be the one you wanted)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1554
    "*** Please change as required and accept it in the browser."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1555
    "*** (and replace this comment by something more useful ;-)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1556
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1557
    revisionNrHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1558
	revisionNrHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1559
"/ 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
  1560
"/       revisionNrHolder addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1561
"/       revisionNrHolder onChangeSend:#revisionNrHolderChanged to:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1562
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1563
    ^ revisionNrHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1564
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1565
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1566
selectedClassIndexHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1567
    "automatically generated by UIPainter ..."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1568
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1569
    "*** the code below creates a default model when invoked."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1570
    "*** (which may not be the one you wanted)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1571
    "*** Please change as required and accept it in the browser."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1572
    "*** (and replace this comment by something more useful ;-)"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1573
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1574
    selectedClassIndexHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1575
	selectedClassIndexHolder := ValueHolder new.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1576
"/ 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
  1577
"/       selectedClassIndexHolder addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1578
"/       selectedClassIndexHolder onChangeSend:#selectedClassIndexHolderChanged to:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1579
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1580
    ^ selectedClassIndexHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1581
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1582
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1583
shownHasConsoleHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1584
    shownHasConsoleHolder isNil ifTrue:[
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1585
	shownHasConsoleHolder := IndirectValue for:self hasConsoleHolder.
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1586
    ].
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1587
    ^ shownHasConsoleHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1588
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1589
    "Created: / 15-10-2006 / 13:59:01 / cg"
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1590
!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1591
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1592
shownHasConsoleValue
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1593
    ^ BlockValue
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1594
	with:[:m1 :m2 | self isGUIApplicationHolder value not
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1595
			or:[ self hasConsoleHolder value] ]
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1596
	argument:(self hasConsoleHolder)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1597
	argument:(self isGUIApplicationHolder).
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1598
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1599
    "Created: / 15-10-2006 / 13:54:16 / cg"
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1600
!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1601
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1602
startSinglethreadedHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1603
    startSinglethreadedHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1604
	startSinglethreadedHolder := false asValue.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1605
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1606
    ^ startSinglethreadedHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1607
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1608
    "Created: / 05-09-2006 / 13:34:54 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1609
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1610
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1611
startupClassNameHolder
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1612
    startupClassNameHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1613
	startupClassNameHolder := '' asValue.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1614
    ].
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1615
    ^ startupClassNameHolder.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1616
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1617
    "Created: / 06-09-2006 / 18:41:52 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1618
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1619
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1620
startupSelectorHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1621
    startupSelectorHolder isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1622
	startupSelectorHolder := '' asValue.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1623
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1624
    ^ startupSelectorHolder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1625
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1626
    "Created: / 05-09-2006 / 13:34:20 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1627
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1628
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1629
stcOptimizationFlagList
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1630
    ^ #(
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1631
	'+optSpace'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1632
	'+optSpace2'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1633
	'+optSpace3'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1634
	'+optInline'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1635
	'-optInline'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1636
	'-inlineNew'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1637
	'-inlineNot'
2121
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
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1640
    "Created: / 15-10-2006 / 15:14:29 / cg"
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1641
!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1642
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1643
stcOptimizationFlagsHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1644
    stcOptimizationFlagsHolder isNil ifTrue:[
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1645
	stcOptimizationFlagsHolder := ValueHolder new.
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1646
    ].
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1647
    ^ stcOptimizationFlagsHolder
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1648
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1649
    "Modified: / 15-10-2006 / 15:13:10 / cg"
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1650
!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1651
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1652
tabList
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1653
    "Generated by the TabListEditor"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1654
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1655
    |list|
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1656
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1657
    (list := builder bindingAt:#tabList) isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1658
	builder aspectAt:#tabList put:(list := self class tabListForApplication asValue).
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1659
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1660
    ^ list
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1661
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1662
    "Modified: / 06-09-2006 / 17:58:08 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1663
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1664
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1665
!ProjectDefinitionEditor methodsFor:'aspects-menu'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1666
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1667
classesMenuVisibleHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1668
    ^ builder booleanValueAspectFor:#'classesMenuVisibleHolder'
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1669
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1670
    "Modified: / 03-09-2006 / 10:57:00 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1671
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1672
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1673
extensionsMenuVisibleHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1674
    ^ builder booleanValueAspectFor:#'extensionsMenuVisibleHolder'
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1675
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1676
    "Created: / 05-09-2006 / 13:03:16 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1677
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1678
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1679
hasDefinitionClass
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1680
    ^ definitionClass notNil
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1681
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1682
    "Created: / 07-09-2006 / 12:29:10 / cg"
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1683
!
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1684
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1685
hasDefinitionClassHolder
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1686
    ^ [ self hasDefinitionClass ]
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1687
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1688
    "Created: / 07-09-2006 / 12:29:22 / cg"
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1689
!
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1690
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1691
prerequisitesMenuVisibleHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1692
    ^ builder booleanValueAspectFor:#'prerequisitesMenuVisibleHolder'
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1693
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1694
    "Created: / 05-09-2006 / 13:26:45 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1695
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1696
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1697
selectedTabIndexHolder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1698
    |h|
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1699
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1700
    h := builder valueAspectFor:#'selectedTabIndexHolder' initialValue:nil.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1701
    h addDependent:self.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1702
    ^ h
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1703
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1704
    "Created: / 03-09-2006 / 10:58:05 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1705
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1706
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1707
!ProjectDefinitionEditor methodsFor:'change & update'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1708
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1709
fetchClassListEntries
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1710
    |entries|
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1711
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1712
    entries := OrderedCollection new.
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1713
    definitionClass
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1714
	classNamesAndAttributesDo:[:className :attributes |
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1715
	    |entry|
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1716
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1717
	    entry := ClassListEntry new.
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1718
	    entry
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1719
		className:className
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1720
		autoloaded:(attributes includes:#autoload)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1721
		win32:(attributes includes:#win32)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1722
		unix:(attributes includes:#unix).
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1723
	    entries add:entry.
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1724
	].
2146
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  1725
    entries sort:[:a :b | a className < b className].
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1726
    ^ entries.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1727
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1728
    "Created: / 05-09-2006 / 12:31:26 / cg"
2146
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  1729
    "Modified: / 21-11-2006 / 18:04:35 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1730
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1731
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1732
fetchExtensionsListEntries
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1733
    |entries|
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1734
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1735
    entries := OrderedCollection new.
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1736
    definitionClass
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1737
	extensionMethodNames pairWiseDo:[:className :selector |
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1738
	    |entry|
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1739
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1740
	    entry := ExtensionsListEntry new.
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1741
	    entry className:className selector:selector.
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1742
	    entries add:entry.
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1743
	].
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1744
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1745
    ^ entries.
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1746
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1747
    "Created: / 06-09-2006 / 18:45:15 / cg"
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1748
!
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  1749
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1750
fetchPrerequisitesListEntries
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1751
    |entries|
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1752
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1753
    entries := OrderedCollection new.
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1754
    definitionClass
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1755
	preRequisites do:[:packageName |
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1756
	    |entry|
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1757
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1758
	    entry := PrerequisitesListEntry new.
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1759
	    entry package:packageName.
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1760
	    entries add:entry.
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1761
	].
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1762
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1763
    ^ entries.
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1764
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1765
    "Created: / 06-09-2006 / 18:45:15 / cg"
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1766
    "Modified: / 07-09-2006 / 12:36:21 / cg"
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1767
!
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1768
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1769
fetchValues
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1770
    |definitionClass isApplicationDefinition startupClassName startupSelector|
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1771
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1772
    definitionClass := self definitionClass.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1773
    definitionClass isNil ifTrue:[^ self ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1774
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1775
    isApplicationDefinition := definitionClass isApplicationDefinition.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1776
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1777
    self isApplicationDefinitionHolder value:isApplicationDefinition.
2111
fd5f44a752ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2100
diff changeset
  1778
    self isNonGUIApplicationHolder value:(isApplicationDefinition and:[definitionClass isGUIApplication not]).
fd5f44a752ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2100
diff changeset
  1779
    self hasConsoleHolder value:(isApplicationDefinition and:[definitionClass isConsoleApplication]).
fd5f44a752ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2100
diff changeset
  1780
    self startSinglethreadedHolder value:(isApplicationDefinition and:[definitionClass isSingleThreadedApplication]).
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1781
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1782
    isApplicationDefinition ifTrue:[
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1783
	startupClassName := definitionClass name.
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1784
	startupSelector := #start.
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1785
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1786
	Error handle:[:ex | ] do:[ startupClassName := definitionClass startupClassName].
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1787
	Error handle:[:ex | ] do:[ startupSelector := definitionClass startupSelector].
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1788
	self startupClassNameHolder value:startupClassName.
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1789
	self startupSelectorHolder value:startupSelector.
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1790
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1791
	self iconFileNameHolder value:(definitionClass applicationIconFileName).
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1792
	self tabList value:(self class tabListForApplication).
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1793
	self documentExtensionsListStringHolder value:(definitionClass documentExtensions asStringWith:';').
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1794
    ] ifFalse:[
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1795
	self tabList value:(self class tabListForLibrary).
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1796
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1797
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1798
    self companyNameHolder value:(definitionClass companyName).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1799
    self descriptionHolder value:(definitionClass description).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1800
    self legalCopyrightHolder value:(definitionClass legalCopyright).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1801
    self productNameHolder value:(definitionClass productName).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1802
    self majorVersionNrHolder value:(definitionClass majorVersionNr asInteger).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1803
    self minorVersionNrHolder value:(definitionClass minorVersionNr asInteger).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1804
    self revisionNrHolder value:(definitionClass revisionNr asInteger).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1805
    self releaseNrHolder value:(definitionClass releaseNr asInteger).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1806
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1807
    self fileDescriptionHolder value:(definitionClass fileDescription).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1808
    self fileMajorVersionNrHolder value:(definitionClass fileMajorVersionNr asInteger).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1809
    self fileMinorVersionNrHolder value:(definitionClass fileMinorVersionNr asInteger).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1810
    self fileRevisionNrHolder value:(definitionClass fileRevisionNr asInteger).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1811
    self fileReleaseNrHolder value:(definitionClass fileReleaseNr asInteger).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1812
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1813
    self classListHolder value:(self fetchClassListEntries).
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1814
    self extensionsListHolder value:(self fetchExtensionsListEntries).
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1815
    self prerequisitesListHolder value:(self fetchPrerequisitesListEntries).
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1816
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1817
    self window notNil ifTrue:[
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1818
	self window
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1819
	    label:(isApplicationDefinition
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1820
		    ifTrue:'Application'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1821
		    ifFalse:'Library' )
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1822
			, ' Definition: ',definitionClass name.
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1823
    ].
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1824
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1825
    "Created: / 04-09-2006 / 16:34:39 / cg"
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1826
    "Modified: / 15-10-2006 / 14:32:45 / cg"
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1827
!
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1828
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1829
refetchDefinitionValues
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1830
    self isApplicationDefinitionHolder value:( definitionClass isApplicationDefinition ).
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1831
    self fetchValues.
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1832
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1833
    "Created: / 07-09-2006 / 12:26:54 / cg"
2078
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
update:something with:parameter from:changedObject
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1837
    changedObject == self selectedTabIndexHolder ifTrue:[
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1838
	self updateMenuVisibility.
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1839
	^ self.
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1840
    ].
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1841
    changedObject == self isNonGUIApplicationHolder ifTrue:[
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1842
	changedObject value ifTrue:[
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1843
	    "/ a NON-GUI application - always has a console
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1844
	    self shownHasConsoleHolder valueHolder:true
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1845
	] ifFalse:[
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1846
	    "/ a GUI application - sometimes has a console
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1847
	    self shownHasConsoleHolder valueHolder:(self hasConsoleHolder)
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1848
	].
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1849
	^ self.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1850
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1851
    ^ super update:something with:parameter from:changedObject
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1852
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1853
    "Created: / 03-09-2006 / 10:59:42 / cg"
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1854
    "Modified: / 15-10-2006 / 14:08:23 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1855
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1856
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1857
updateMenuVisibility
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1858
    self classesMenuVisibleHolder value:(self hasClassesTabSelected).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1859
    self extensionsMenuVisibleHolder value:(self hasExtensionsTabSelected).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1860
    self prerequisitesMenuVisibleHolder value:(self hasPrerequisitesTabSelected).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1861
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1862
    "Created: / 03-09-2006 / 11:01:48 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1863
    "Modified: / 05-09-2006 / 13:27:10 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1864
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1865
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1866
!ProjectDefinitionEditor methodsFor:'initialization & release'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1867
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1868
closeRequest
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1869
    (self hasUnsavedChanges) ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1870
	(self confirm:(resources string:'Close without saving ?')) ifFalse:[
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1871
	    ^ self
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1872
	]
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1873
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1874
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1875
    ^ super closeRequest
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1876
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1877
    "Modified: / 03-09-2006 / 10:53:14 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1878
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1879
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1880
flagHolderBuilt:aComboBox
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1881
    aComboBox menuSelectAction:[:txt |
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1882
	self updateFlagsIn:aComboBox from:txt
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1883
    ].
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1884
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1885
    "Created: / 15-10-2006 / 15:11:50 / cg"
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
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1888
postBuildWith:aBuilder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1889
    super postBuildWith:aBuilder.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1890
    self selectedTabIndexHolder value:1.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1891
    self updateMenuVisibility.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1892
    self fetchValues.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1893
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1894
    "Modified: / 04-09-2006 / 16:28:09 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1895
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1896
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1897
postOpenWith:aBuilder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1898
    "This is a hook method generated by the Browser.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1899
     It will be invoked right after the applications window has been opened.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1900
     Add any app-specific actions here (starting background processes etc.).
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1901
     See also #postBuildWith:, which is invoked before opening."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1902
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1903
    "/ add any code here ...
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1904
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1905
    ^ super postOpenWith:aBuilder
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1906
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1907
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1908
!ProjectDefinitionEditor methodsFor:'menu actions'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1909
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1910
editNew:definitionClass
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1911
    |className class newPackage|
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1912
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1913
    self hasUnsavedChanges ifTrue:[
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1914
	self halt.
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1915
    ].
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1916
    className := Dialog
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1917
		    requestClassName:'Name of new Definition class'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1918
		    okLabel:'Create'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1919
		    initialAnswer:'private_myProject'.
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1920
    className isEmptyOrNil ifTrue:[^ self].
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
    class := Smalltalk classNamed:className.
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1923
    class notNil ifTrue:[
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1924
	(class isLibraryDefinition == (definitionClass == LibraryDefinition)) ifFalse:[
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1925
	    Dialog warn:(resources
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1926
			    string:'A class named "%1" already exists as %2.'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1927
			    with:className allBold
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1928
			    with:(class isLibraryDefinition
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1929
				    ifTrue:'Library'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1930
				    ifFalse:'Application')).
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1931
	    ^ self
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1932
	].
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1933
	Dialog warn:(resources
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1934
			    string:'A class named "%1" already exists. Editing the existing definition.'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1935
			    with:className allBold).
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1936
    ] ifFalse:[
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1937
	newPackage := className copy replaceAll:$_ with:$/.
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1938
	newPackage replaceAll:$/ with:$:.
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  1939
	class := definitionClass newNamed:className package:newPackage.
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1940
    ].
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1941
    self definitionClass:class.
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1942
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1943
    "Created: / 15-10-2006 / 14:50:15 / cg"
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1944
!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1945
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1946
menuGenerateProjectDefinitions
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1947
    |action|
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  1948
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1949
    action := [:generator :defClass |
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1950
		    defClass theNonMetaclass
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1951
			forEachMethodsCodeToCompileDo:
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1952
			    [:code :category |
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1953
				generator
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1954
				    compile:code
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1955
				    forClass:defClass theMetaclass
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1956
				    inCategory:category.
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1957
			    ]
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1958
			ignoreOldDefinition:true
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1959
	       ].
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  1960
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1961
    masterApplication notNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1962
	masterApplication
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1963
	    generateUndoableChange:'Generate Project Definitions'
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1964
	    overClasses:(Array with:self definitionClass)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1965
	    via:action.
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1966
    ] ifFalse:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  1967
	action value:Compiler value:self definitionClass
2082
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1968
    ].
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1969
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1970
    self refetchDefinitionValues
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1971
cb4532367cc0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2081
diff changeset
  1972
    "Created: / 07-09-2006 / 12:26:22 / cg"
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  1973
!
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  1974
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1975
menuNew
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1976
    "This method was generated by the Browser.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1977
     It will be invoked when the menu-item 'new' is selected."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1978
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1979
    "/ change below and add any actions as required here ...
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1980
    self warn:'no action for ''new'' available.'.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1981
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1982
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1983
menuNewApplicationDefinition
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1984
    self editNew:ApplicationDefinition
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1985
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1986
    "Created: / 15-10-2006 / 14:49:53 / cg"
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1987
!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1988
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1989
menuNewLibraryDefinition
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1990
    self editNew:LibraryDefinition
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1991
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1992
    "Created: / 15-10-2006 / 14:49:46 / cg"
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1993
!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  1994
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1995
menuOpen
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1996
    |projectID class answer|
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1997
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1998
    projectID := Dialog requestProject:'Project' initialAnswer:'' suggestions:nil.
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  1999
    class := ProjectDefinition definitionClassForPackage:projectID.
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2000
    class isNil ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2001
	answer := Dialog
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2002
	    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
  2003
	    labels:(resources array:#('Cancel' 'Create Library' 'Create Application' ))
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2004
	    values:#(nil LibraryDefinition ApplicationDefinition)
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2005
	    default:2
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2006
	    boxLabel:(resources string:'Create Projectdefinition').
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2007
	answer isNil ifTrue:[^ self].
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2008
    ].
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2009
    answer == #LibraryDefinition ifTrue:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2010
	class := LibraryDefinition definitionClassForPackage:projectID createIfAbsent:true
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2011
    ] ifFalse:[
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2012
	class := ApplicationDefinition definitionClassForPackage:projectID createIfAbsent:true
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2013
    ].
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2014
    self definitionClass:class.
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2015
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2016
    "Modified: / 07-09-2006 / 12:19:58 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2017
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2018
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2019
menuRemoveClass
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2020
    |classListHolder|
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2021
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2022
    classListHolder := self classListHolder.
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2023
    classListHolder value removeIndex:(self selectedClassIndexHolder value).
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2024
    classListHolder changed.
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2025
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2026
    "Created: / 06-09-2006 / 21:31:05 / cg"
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2027
    "Modified: / 07-09-2006 / 11:35:44 / cg"
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2028
!
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2029
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2030
menuSave
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2031
    self menuSaveAs:definitionClass name
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2032
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2033
    "Modified: / 05-09-2006 / 13:48:27 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2034
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2035
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2036
menuSaveAs
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2037
    |className class newPackage|
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2038
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2039
    className := Dialog
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  2040
		    requestClassName:'Name of new Definition class'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  2041
		    okLabel:'Create'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  2042
		    initialAnswer:'private_myProject'.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2043
    className isEmptyOrNil ifTrue:[^ self].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2044
    class := Smalltalk classNamed:className.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2045
    class notNil ifTrue:[
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  2046
	Dialog warn:(resources
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  2047
			    string:'A class named %1 already exists'
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  2048
			    with:className).
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  2049
	^ self.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2050
    ].
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2051
    newPackage := className copy replaceAll:$_ with:$/.
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  2052
    newPackage replaceAll:$/ with:$:.
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2053
    class := ApplicationDefinition newNamed:className package:newPackage.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2054
    self menuSaveAs:class.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2055
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2056
    "Modified: / 15-10-2006 / 14:47:53 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2057
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2058
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2059
menuSaveAs:aClassName
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2060
    self halt.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2061
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2062
    "Created: / 05-09-2006 / 13:48:03 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2063
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2064
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2065
openAboutThisApplication
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2066
    "This method was generated by the Browser.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2067
     It will be invoked when the menu-item 'help-about' is selected."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2068
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2069
    "/ could open a customized aboutBox here ...
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2070
    super openAboutThisApplication
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2071
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2072
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2073
openDocumentation
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2074
    "This method was generated by the Browser.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2075
     It will be invoked when the menu-item 'help-documentation' is selected."
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2076
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2077
    "/ change below as required ...
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2079
    "/ to open an HTML viewer on some document (under 'doc/online/<language>/' ):
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2080
    HTMLDocumentView openFullOnDocumentationFile:'TOP.html'.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2081
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2082
    "/ add application-specific help files under the 'doc/online/<language>/help/appName'
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2083
    "/ directory, and open a viewer with:
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2084
    "/ HTMLDocumentView openFullOnDocumentationFile:'help/<MyApplication>/TOP.html'.
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2085
!
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2086
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2087
updateFlagsIn:aComboBox from:flag
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2088
    |s flags base negation|
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2089
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2090
    s := aComboBox editor contents.
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2091
    flags := s asCollectionOfWords.
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2092
    (flags includes:flag) ifFalse:[
3523
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  2093
	base := (flag copyFrom:2).
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  2094
	negation := (flag startsWith:'+')
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  2095
			ifTrue:[ ('-',base) ]
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  2096
			ifFalse:[ ('+',base) ].
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  2097
	flags remove:negation ifAbsent:[].
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  2098
	flags add:flag.
25fa267c550a flyByHelpSpec -> helpSpec
Claus Gittinger <cg@exept.de>
parents: 2727
diff changeset
  2099
	aComboBox editor contents:(flags asStringWith:' ').
2121
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2100
    ].
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2101
ef8750cd1bab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
  2102
    "Created: / 15-10-2006 / 15:35:53 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2103
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2104
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2105
!ProjectDefinitionEditor methodsFor:'queries'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2106
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2107
hasClassesTabSelected
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2108
    ^ self selectedTabIndex == 2
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2109
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2110
    "Created: / 03-09-2006 / 11:00:39 / cg"
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2111
    "Modified: / 06-09-2006 / 21:20:21 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2112
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2113
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2114
hasExtensionsTabSelected
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2115
    ^ self selectedTabIndex == 3
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2116
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2117
    "Created: / 05-09-2006 / 13:02:26 / cg"
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2118
    "Modified: / 06-09-2006 / 21:20:25 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2119
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2120
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2121
hasPrerequisitesTabSelected
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2122
    ^ self selectedTabIndex == 4
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2123
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2124
    "Created: / 05-09-2006 / 13:27:16 / cg"
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2125
    "Modified: / 06-09-2006 / 21:20:33 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2126
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2127
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2128
hasUnsavedChanges
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2129
     ^ false
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2130
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2131
    "Created: / 03-09-2006 / 10:53:05 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2132
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2133
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2134
selectedClass
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2135
    |item|
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2136
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2137
    item := self classListHolder value at:(self selectedClassIndexHolder value).
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2138
self halt.
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2139
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2140
    "Created: / 06-09-2006 / 21:32:20 / cg"
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2141
    "Modified: / 07-09-2006 / 11:35:48 / cg"
2080
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2142
!
b76931b8e953 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2079
diff changeset
  2143
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2144
selectedTabIndex
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2145
    ^ self selectedTabIndexHolder value
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2146
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2147
    "Created: / 03-09-2006 / 11:00:48 / cg"
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2148
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2149
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2150
!ProjectDefinitionEditor::ClassListEntry methodsFor:'accessing'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2151
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2152
autoloaded
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2153
    ^ autoloaded
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2154
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2155
2146
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  2156
autoloaded:aBoolean
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  2157
    autoloaded := aBoolean.
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  2158
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  2159
    "Modified: / 21-11-2006 / 18:05:26 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2160
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2161
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2162
className
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2163
    ^ className
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
className:something
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2167
    className := something.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2168
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2169
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2170
className:classNameArg autoloaded:autoloadedArg win32:win32Arg unix:unixArg
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2171
    className := classNameArg.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2172
    autoloaded := autoloadedArg.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2173
    win32 := win32Arg.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2174
    unix := unixArg.
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2175
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2176
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2177
unix
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2178
    ^ unix
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2179
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2180
2146
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  2181
unix:aBoolean
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  2182
    unix := aBoolean.
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  2183
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  2184
    "Modified: / 21-11-2006 / 18:05:32 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2185
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2186
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2187
win32
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2188
    ^ win32
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2189
!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2190
2146
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  2191
win32:aBoolean
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  2192
    win32 := aBoolean.
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  2193
a5ce8e00652f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2128
diff changeset
  2194
    "Modified: / 21-11-2006 / 18:05:35 / cg"
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2195
! !
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2196
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2197
!ProjectDefinitionEditor::ExtensionsListEntry methodsFor:'accessing'!
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2198
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2199
className
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2200
    ^ className
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2201
!
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2202
2100
4a7a7734e30c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
  2203
className:classNameArg selector:selectorArg
2079
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2204
    className := classNameArg.
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2205
    selector := selectorArg.
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2206
!
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2207
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2208
selector
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2209
    ^ selector
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2210
! !
43f28c0ce813 tab confusion
Claus Gittinger <cg@exept.de>
parents: 2078
diff changeset
  2211
2081
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2212
!ProjectDefinitionEditor::PrerequisitesListEntry methodsFor:'accessing'!
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2213
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2214
package
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2215
    ^ package
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2216
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2217
    "Created: / 07-09-2006 / 12:23:17 / cg"
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2218
!
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2219
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2220
package:something
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2221
    package := something.
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2222
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2223
    "Created: / 07-09-2006 / 12:23:19 / cg"
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2224
! !
7bd90dbd7018 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2080
diff changeset
  2225
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2226
!ProjectDefinitionEditor class methodsFor:'documentation'!
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2227
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2228
version
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2229
    ^ '$Header$'
2666
316855d0ca7d changed:
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
  2230
!
316855d0ca7d changed:
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
  2231
316855d0ca7d changed:
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
  2232
version_CVS
316855d0ca7d changed:
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
  2233
    ^ '$Header$'
2078
67cc88b7b310 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2234
! !