Tools__NewClassWizardDialog.st
author Claus Gittinger <cg@exept.de>
Mon, 20 Jan 2020 21:02:47 +0100
changeset 19422 c6ca1c3e0fd7
parent 18936 f52f7094d456
permissions -rw-r--r--
#REFACTORING by exept class: MultiViewToolApplication added: #askForFile:default:forSave:thenDo: changed: #askForFile:default:thenDo: #askForFile:thenDo: #menuSaveAllAs #menuSaveAs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2009 by eXept Software AG
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
     3
              All Rights Reserved
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libtool' }"
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
"{ NameSpace: Tools }"
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
SimpleDialog subclass:#NewClassWizardDialog
9218
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
    17
	instanceVariableNames:'compilerProviderBlock createdClass languageHolder indexType
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
    18
		packageHolder classNameHolder instVarNamesHolder openClassChooser
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
    19
		superclassNameHolder createRequiredMethodsHolder
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
    20
		createPrintMethodHolder createAccessorsHolder
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
    21
		createUpdateMethodHolder createInitializerHolder
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
    22
		createInitialGUICodeHolder classInstVarNamesHolder
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
    23
		classVarNamesHolder nameSpaceHolder categoryHolder
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
    24
		stereotypeHolder isCreatingClassHolder listOfSuperclassesHolder
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
    25
		canDisableTemplateCreationHolder indexTypeHolder
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
    26
		createClassInitializerMethodHolder'
9218
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
    27
	classVariableNames:'LastLanguage LastSuperclass LastPackage LastNamespace
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
    28
		LastCategory'
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
    29
	poolDictionaries:''
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
    30
	category:'Interface-Browsers-New'
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
!NewClassWizardDialog class methodsFor:'documentation'!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
copyright
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
"
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
 COPYRIGHT (c) 2009 by eXept Software AG
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
    38
              All Rights Reserved
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
 This software is furnished under a license and may be used
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
 only in accordance with the terms of that license and with the
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
 inclusion of the above copyright notice.   This software may not
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
 be provided or otherwise made available to, or used by, any
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
 other person.  No title to or ownership of the software is
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
 hereby transferred.
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
"
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
documentation
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
"
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
    documentation to be added.
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
    [author:]
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
    54
        cg (cg@CG-PC)
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
    [instance variables:]
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
    [class variables:]
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
    [see also:]
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
"
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
examples
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
"
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
  Starting the application:
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
    68
                                                                [exBegin]
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
    Tools::NewClassDialog open
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
    71
                                                                [exEnd]
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
  more examples to be added:
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
    74
                                                                [exBegin]
9205
07015f8db981 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
    75
    ... add code fragment for
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    76
    ... executable example here ...
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
    77
                                                                [exEnd]
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    78
"
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    79
! !
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    80
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    81
!NewClassWizardDialog class methodsFor:'help specs'!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    82
17903
da4d8d935304 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 17661
diff changeset
    83
helpSpec
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    84
    "This resource specification was automatically generated
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    85
     by the UIHelpTool of ST/X."
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    86
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    87
    "Do not manually edit this!! If it is corrupted,
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    88
     the UIHelpTool may not be able to read the specification."
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    89
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    90
    "
9205
07015f8db981 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
    91
     UIHelpTool openOnClass:Tools::NewClassDialog
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    92
    "
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    93
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    94
    <resource: #help>
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    95
17903
da4d8d935304 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 17661
diff changeset
    96
    ^ super helpSpec addPairsFrom:#(
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    97
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    98
#chooseSuperclass
11224
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
    99
'Open a dialog for superclass selection'
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   100
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   101
#classInstVariableNames
11224
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
   102
'Special: instance variables of the CLASS object (separated by blanks)'
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   103
9282
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
   104
#stereotype
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
   105
'Some often used class creation templates'
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
   106
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   107
#className
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
'The name of the new class (without namespace prefix)'
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   109
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   110
#classVariableNames
11224
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
   111
'Special: class variables (separated by blanks)'
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   112
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   113
#createAccessors
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   114
'Create getters and setters for all instance variables'
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   115
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   116
#createInitializer
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   117
'Generate template code for initialized instances'
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   118
18936
f52f7094d456 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18880
diff changeset
   119
#createClassInitializer
f52f7094d456 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18880
diff changeset
   120
'Generate code for class initialization'
f52f7094d456 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18880
diff changeset
   121
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   122
#createPrintMethod
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
'Create an initial print method template'
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   124
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   125
#createRequiredMethods
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   126
'Create all methods which have been declared as required by a superclass (subclass responsibility)'
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   127
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   128
#createUpdateMethod
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
'Create an initial update method template'
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   130
11224
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
   131
#createInitialGUICode
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
   132
'Create initial template code (mostly useful for applications)'
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
   133
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   134
#indexType
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   135
'Instances will have indexed instance variables'
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   136
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   137
#instanceVariableNames
11224
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
   138
'Instance variables (separated by spaces)'
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   139
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   140
#namespace
11224
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
   141
'Optional namespace in which this class is to be created (default: Smalltalk).\Notice: namespaces are used to avoid name conflicts, not for organization\(that is what categries are for)'
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   142
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   143
#namespaceChooser
11224
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
   144
'Open a dialog for namespace selection'
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   145
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   146
#package
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   147
'Packages are units for deployment\(separately compiled & deployable libraries and applications).\For class creation, choose the package into which this class should be placed.\For package creation, define the packageID of the new package.\ID must be of the form: "<module>:<path>", for example: "myname:demos/myFirstDemoProgram"'
11224
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
   148
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
   149
#project
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
   150
'Project-ID (aka package) into which this class should be placed'
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
   151
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
   152
#category
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
   153
'Category into which the new class should be organized (in the browser)'
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
   154
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
   155
#categoryChooser
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
   156
'Open a dialog for category selection'
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   157
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   158
#packageChooser
11224
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
   159
'Open a dialog for package selection'
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   160
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   161
#programmingLanguage
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   162
'Programming Language to use for code in this class'
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   163
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   164
#superclass
11224
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
   165
'Superclass of the new class'
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   166
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   167
)
11224
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
   168
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
   169
    "Modified: / 27-01-2012 / 14:41:44 / cg"
18936
f52f7094d456 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18880
diff changeset
   170
    "Modified: / 22-07-2019 / 15:02:57 / Claus Gittinger"
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   171
! !
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   172
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   173
!NewClassWizardDialog class methodsFor:'image specs'!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   174
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   175
wizardIcon
14394
2fbd45bcf5ac Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 13941
diff changeset
   176
    <resource: #image>
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   177
    "This resource specification was automatically generated
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   178
     by the ImageEditor of ST/X."
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   179
    "Do not manually edit this!! If it is corrupted,
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   180
     the ImageEditor may not be able to read the specification."
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   181
    "
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   182
     self wizardIcon inspect
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   183
     ImageEditor openOnClass:self andSelector:#wizardIcon
14394
2fbd45bcf5ac Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 13941
diff changeset
   184
     Icon flushCachedIcons"
2fbd45bcf5ac Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 13941
diff changeset
   185
    
2fbd45bcf5ac Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 13941
diff changeset
   186
    ^ Icon constantNamed:'Tools::NewClassDialog class wizardIcon'
2fbd45bcf5ac Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 13941
diff changeset
   187
        ifAbsentPut:[
2fbd45bcf5ac Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 13941
diff changeset
   188
            (Depth8Image new)
2fbd45bcf5ac Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 13941
diff changeset
   189
                width:80;
2fbd45bcf5ac Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 13941
diff changeset
   190
                height:80;
2fbd45bcf5ac Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 13941
diff changeset
   191
                photometric:(#palette);
2fbd45bcf5ac Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 13941
diff changeset
   192
                bitsPerSample:(#[ 8 ]);
2fbd45bcf5ac Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 13941
diff changeset
   193
                samplesPerPixel:(1);
2fbd45bcf5ac Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 13941
diff changeset
   194
                bits:(ByteArray 
2fbd45bcf5ac Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 13941
diff changeset
   195
                            fromPackedString:'
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   196
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   197
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   198
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   199
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   200
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   201
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@_IX@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   202
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@M8@@@@@@@@@@@@@@@BVU@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   203
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@NC^3 @@@@@@@@@@@@@@@IYT% @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   204
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@L/K2 @@@@@@@@@@@@@@%%ITZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   205
@@@@@@@@@@C,;N/^7,?+:N0@;N0@@@@@@@B-T%QT% @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@M3(:>_''
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   206
9.[&9.[''9>_Z7P@@@@@@@J5BT%Q(2P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C^4=O(9.[&9^W%9.[''4=+Z
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   207
9.0@@@@@2DIRZF!!>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CS4>[%9]7\7M7]7];S4=L@@@@@@@CHSIOH
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   208
UF!!T@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@;N_&9]7\7M3[7]7^7]7(7P@@@@@@@@ALT%ITZG2V@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   209
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C(9.[]7M/]7]/(;^3]7.#,@@@@@@@@@D1@P%ITZEQR@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   210
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@N#&9^W\7MO&6._,7-7^:N0@@@@@@@@@YTABT%QT_$H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   211
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C,9>#-9-/\3M;Z6=/\7];(@@@@@@@@@@A%PDARUEQ>%$H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   212
@@@@@@@@@@@@@@@@@N#&9^#[6=/M4=+[6=7]9>$@@@@@@@@@@FU@PDIRUL"VZIX@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   213
@@C,:N[]7M3[6=OL7M3\7];N3>$@@@@@@@@@]4A@PEIT2\"-P%H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@N3''9-7\6=/[
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   214
6,3]7M3]9-[_@@@@@@@@@@A7PDA@T%JV_*5TI@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@4=;%7M3[6=/[4>[\7];''@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   215
@@@@@@@@@G\:PDABT%Q(ZL!!<T @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@:MOS4=3\6>_Z6-. S6C&:N$@@@@@@@@@@@@@]3)L
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   216
N$ART%QT2N5@+P@@@@@@@@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@:MOS9]3];^#''6-,#N=;(@@@@@@@@@@@@@@BMN$1%PDIRUF"V;V!!R
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   217
@@@@@@@@@@@@@@@@@@@@@@C 50@@@@@@@@@@@@@@@@@@@@@@@@@@@@C(9=;]6=/-;]3[60YN#0@@@@@@@@@@@@@@@H42_C)@PEIR%$NV;RQB@L#H@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   218
@@@@@@@@@K2<@@@@8N$@@@@@@@@@@@@@@@@@@@@@@N3''9-7[6.[]7]/\GYQM@@@@@@@@@@@@@@@@#SI(N$A@P%JV;^7-$4ARZEI@PFT@@@@@@@@@@@@@-[VH
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   219
-]__70@@@@@@@@@@@@@@@@@@@@@@;N_&7M/[6=+[7M6N$T8@@@@@@@@@@@@@@@BMKT!!%PDABT&"/2J?-%"QR_EI@N''0@@@@@@@@@@NF5''[WP5=__@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   220
@@@@@@@@@@@@@@C,9>[\6=/[6-/\7\IO$P@@@@@@@@@@@@@@@H4-N#(:PDABUIY>%.7HP%I<P$@:$0@@@@@@@@@@1I*]-]CW6N$@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   221
@N3&9-3[6=+[7M7^:@ZU+@@@@@@@@@@@@@A%L!! 2RC(:PDAR%*=(;Z=<%%I@PIL@@@@@@@@@@@B^!!I&66ND@@@@@@@@@@@@@@@@@@@@@@@@@;N[T3-/[6-3\
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   222
7-;,A$=N@@@@@@@@@@B-C0 WFCI_N#)@PDI<+YZV%%IBPDBS@@@@@@@@@@@@ZE.@ 0@@@@@@@@@@@@@@@@@@@@@@@@@@@@C,9,;J3-+[7M7^:@AOB#2,@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   223
@@@@HQ@OC102L$ :N$AL_IZSZDI@PDA$@@@@@@@@@@@@@M1;RZL@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@N3&5\+$6=/\7^_(@IPEXW$@@@@@@@@PDA@\HS(:
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   224
N$1LYW1<YUI@PDA@PL\@@@@@@@@@@@CH9*0=@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@;N[&7]3[7M7^:N0@@GKPO@@@@@@@@A@PDA@PGBD9NS$9N$A@PBQA
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   225
P0DL1:,@@@@@@@@@+9[-2F @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C,9>[]7M3]3,;,@@CP5;7V50@@@@@@+S$PDA@PDA@SH"H!!HQTV/]]:%+7H*:0@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   226
@ERV;^/GZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@N3''9-7]7]7J2 @@/-CW/[65@@@@@@@@@@CH2C4^FSMX 7M>ZV''P5=[P-,"T%@@@@EQ>;^7H7J)>@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   227
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@N_&7]7]7-W''@@B>-]^54HP@@@@@@@@@@@@@S$5F[(NZ4G6.0;WP-\R,+IRT@@A>%.7-2ES[*YX@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   228
@@@@@@@@@@@@@@@@:N_^7]7^9> @@N*Z-XV2M@@@@@@@@@@@@@A9$XVC!!I&2-[V=:*OE:^7G%IUTUJ>/_"YBP-*O% @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   229
@@C(9=O^7-;(;@@@@I6D[0(<@@@@@@@@@@@@@G%9%HR@!!I&Y2^6#-[WH+L"QUIZVP$IBP$IP6''*/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@N#''7];^9> @
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   230
@@@@@K:DAYE(@@@@@@@@@@@@$VJQ%IVH!!JS-1:?-;^7H17-BP$IBP$IBP''OSPP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@:N#''7-;'':P@@@@@@@HLY%S9T
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   231
@@@@@@@@@@CHX''&Q%J2++N6T1^7-;\#G^4IBP$IBP%J-#*E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C):N_^9>#,@@@@@@@@@E%&MTK%*G8@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   232
XW&Q$YR,2IR,2N7H+J1#N$A@PDA@PDCS\4@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@N3(9>_'':@@@@@@@@@BJI1D^I^7-;YY(P4IBP6 ?XW!!9^YSG%IFT
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   233
+IRT%D,:PDA@PDA@N-I@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@N''(9>_(@@@@@@@@@D\''A#0T;^7-;^7H+:>V%%HNM&E9%J2,^YFT$YFTPC)@PDA@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   234
PC(:4#)_@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@;N#(:N @@@@@@@@@I2\B$QG-7Y[H%%QBP$IBT"D[A0NQ%IQ9XWQ!!$Y@:N#(:N#(:N(&4N*4@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   235
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@:N#(:P@@@@@@@@@*J@6TON#ST%I@PDA@PDA@PD@ C!!*Q$YE!!S''&Q^#(:N#)%N#*L5U:S@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   236
@@@@@@@@@@@@@@@@@@C):N#)@@@@@@@@+B(*J#6T7K%@PDA@PDA@PC(:PDA@BW&Q$YE9$YA@N#(:N#)L#[?UL @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   237
@@@@@N''(:N0@@@@@@@BKJ"(*B9KS(C(:SC(:N#(:N#(:PD@RG9BP$IBP$C(:N#(:RH6''1*YL@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@;N'');@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   238
@@@@@HEEQTT/N-JHN$1<N#(:N#(:N#(:PC$NAIFP$IA#N#)_@@@@+]Y0N @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@:^$@@@@@@@C*[UUUQS@:
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   239
4%0:N$!!HSE=7NSD:N''0:PBDOA9BP]S(:S@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@;@@@@@@@@LU+UUUUL%3NW'']_$0@@@@A%
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   240
LS(2N#(:N#([F6L:L''O\@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C,@@@@@@@@/6-+Z6(:"+6MW< @@@@@@J42N#(:N#(:N#$[
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   241
NC)56-L@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B%_61+Z4">#G\@@@@@@@@@7=>B!!GA\WGFI)N3+9.W@+P@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   242
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@I=?_7=-!!-H@@@@@@@@@@@CG09"3.K''Z6-/&1:1SP$MT@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   243
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@-7=?_3G^@@@@@@@@@@@@+TBVPDA@PDIBUEQBP$JV+2Z-@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   244
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B7_7=?L @@@@@@@@@@@@A%SG1@PDA@%,#H+4IBP&#HI)X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   245
@@@@@@@@@@@@@@@@@K>W%9\@@@@@@@@@@@@@@DA<PDA@PDJV2L"-P$H&P*=B_@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   246
@@@@:+F0) @@@@@@@@@@@@BVYW1@PDA@P)[H2IYBP&"/%$I(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@8^(@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   247
@@@@@@@@2DA<YYY@PDIB%*>/UC=BUF!!>P%P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BSPFUR
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   248
%$A@P$JV+Z=TO$IBP''9BT @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C)%PDA@PDABP)ZV%$H.
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   249
O4IBZDIB@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B-SFU@PDA@PDIB+YZVP",?P$IRP$H@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   250
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@G]%T$A@PDA@%*7H%)YBJ#=BP%IBP@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   251
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@N$1@PDA@PDAR+Z6V_DH''O4A@P$A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   252
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@E=LN$A@PDA@P%I<_''9TP"\8PDA@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   253
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@:N$A@PDA@PDA@ZG1<ZDH>JR9@PDA@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   254
@@@@@@@@@@@@@@@@@C)LN$A@PDA@PDI(ZF!!TP#\)K$A@PDA@2@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   255
@@@:N#(:PDA@PIY@P&!!(ZDIBU4T*PD@:N#*S@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B-N#(:N#)@PDA@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   256
PDIRUEQTP"Y,UTQ@N#(:N#*V@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#(:N#(:N$A@PDA@P$IRUDIBPW=V
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   257
UU(:N$1@N#(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@IL:N#(:N#(:PDA@PDABP$IBP"YJ_61U LD9N#(2L,P@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   258
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@AHN#(:N#(:N$ABPDA@P$IBP$H&(''=?[F1EKH#Z6]KR3U:S2@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   259
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BI3[-0NSH:N#(:PDA@PDA@P$IBY.I?_8FJ"9FQ]#H2N#H:%, @@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   260
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CHW3(:$-OL3Y-]N#(:PDA@PEB(7NKATYJR$)JU%YVV+Z6-+Z7H2@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   261
@@@@@@@@@@@@@@@@@@@@N#)_"97L4]J[!!8%3"X:!!6.K#^TJR$)JR%YVU%YZ-+Z6-+\ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   262
@@@@@@@@@IL:N#(:WX"\.[&:#(=PI"Y''^9JR$)JU%YVV+Z6-+Z6-@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   263
+YMLN#)@PDA@P%I;$)JR$)JR%YVU%*6-+Z6-1 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@N+H2J6-
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   264
+Z6-+Z6-+Z6-+Z7F2L#H2@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C*2L#H2L#*
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   265
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   266
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
14394
2fbd45bcf5ac Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 13941
diff changeset
   267
@@@@@@@@@@@@@@@a');
2fbd45bcf5ac Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 13941
diff changeset
   268
                colorMapFromArray:#[ 0 0 0 0 90 210 36 30 50 36 30 130 36 30 140 36 60 80 36 60 100 60 30 140 60 30 180 60 60 180 60 90 100 60 90 130 60 150 220 84 30 80 84 60 180 84 60 210 84 60 220 84 90 130 84 90 210 84 90 220 84 120 210 84 120 220 84 150 220 96 30 220 96 30 255 96 60 50 96 60 140 96 60 210 96 60 220 96 90 100 96 90 130 96 90 140 96 90 210 96 90 220 96 90 255 96 120 140 96 120 255 96 150 220 96 150 255 120 0 80 120 0 100 120 30 80 120 30 100 120 30 130 120 30 140 120 30 255 120 60 140 120 60 180 120 60 210 120 60 220 120 60 255 120 90 50 120 90 80 120 90 100 120 90 140 120 90 180 120 90 210 120 90 220 120 90 255 120 120 100 120 120 130 120 120 140 120 120 210 120 120 220 120 120 255 120 150 220 120 150 255 120 180 255 144 30 80 144 30 100 144 60 50 144 90 130 144 90 255 144 120 140 144 120 180 144 120 220 144 120 255 144 150 130 144 150 140 144 150 180 144 150 210 144 150 220 144 150 255 144 180 220 144 180 255 156 30 100 156 60 100 156 60 130 156 90 50 156 90 130 156 90 180 156 120 140 156 120 180 156 120 210 156 120 220 156 120 255 156 150 100 156 150 140 156 150 180 156 150 210 156 150 220 156 150 255 156 180 210 156 180 220 156 180 255 156 210 255 180 30 80 180 30 100 180 60 100 180 60 130 180 90 50 180 120 100 180 120 140 180 120 180 180 150 130 180 150 140 180 150 180 180 150 210 180 150 220 180 150 255 180 180 140 180 180 180 180 180 210 180 180 220 180 180 255 180 210 220 180 210 255 204 60 100 204 90 50 204 90 140 204 120 50 204 120 80 204 120 100 204 120 130 204 120 140 204 150 100 204 150 130 204 150 140 204 150 180 204 150 210 204 150 220 204 150 255 204 180 130 204 180 140 204 180 180 204 180 210 204 180 220 204 180 255 204 210 210 204 210 220 204 210 255 216 60 100 216 120 0 216 120 100 216 120 130 216 150 50 216 150 100 216 150 130 216 150 140 216 150 180 216 180 50 216 180 100 216 180 130 216 180 140 216 180 180 216 180 210 216 180 220 216 180 255 216 210 130 216 210 140 216 210 180 216 210 210 216 210 220 216 210 255 216 240 220 216 240 255 240 60 100 240 90 130 240 120 130 240 150 0 240 150 80 240 150 130 240 150 140 240 150 180 240 180 30 240 180 50 240 180 80 240 180 100 240 180 130 240 180 140 240 180 180 240 180 210 240 210 80 240 210 100 240 210 140 240 210 180 240 210 210 240 210 220 240 210 255 240 240 220 240 240 255 240 255 255 252 90 30 252 120 30 252 150 0 252 150 30 252 150 50 252 150 80 252 150 130 252 180 0 252 180 30 252 180 50 252 180 80 252 180 100 252 180 130 252 180 140 252 180 180 252 210 30 252 210 50 252 210 80 252 210 100 252 210 130 252 210 140 252 210 180 252 210 210 252 210 220 252 240 50 252 240 80 252 240 100 252 240 130 252 240 140 252 240 180 252 240 210 252 240 220 252 240 255 252 255 210 252 255 220 252 255 255 ];
2fbd45bcf5ac Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 13941
diff changeset
   269
                mask:((ImageMask new)
2fbd45bcf5ac Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 13941
diff changeset
   270
                            width:80;
2fbd45bcf5ac Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 13941
diff changeset
   271
                            height:80;
2fbd45bcf5ac Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 13941
diff changeset
   272
                            bits:(ByteArray 
2fbd45bcf5ac Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 13941
diff changeset
   273
                                        fromPackedString:'
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   274
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0@@@@@@@@@@P@L@@@@@@@@@@\@C @@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   275
@@@C @<@@@@@@@@@O>0O @@@@@@@@_?<C<@@@@@@@@O??0?@@@@@@@@A??0O8@@@@@@@@??<A?@@@@@@@@O??@_8@@@@@@@C??0G>@@@@@@@A??8A?0@@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   276
@@_?>@_>@@@@@@@O??0G?0@@@@@@C??8A?<@@@@@@@??8@_? @@@@@@??>@G?<@@B@@@G??@A??@@A @@A?? @_?;@@X0@@_?8@G??>@G<@@G?>@A???0C?@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   277
@A?? @_??<@?0@@_?<@O??>@O0@@G??@O???@G @@A?=8G???@C0@@@_?^A???0A8@@@G?3 _??>@>@@@A?9<G???0_ @@@_<?@O??<_8@@@C?O0@???O>@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   278
@@?3<@O???? @@@O<_@C????8@@@C>C8@????<@@@@? _@O????@@@@O8C>@????0@@@C<A??????<@@@@_@_??????@@@@G0G??????0@@@@<A??????8@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   279
@@O@??????<@@@@C0O??????@@@@@<C?????G @@@@FA????? @@@@@@ _?!!??8@@@@@@HG?0_?>@@@@@@@A?0G?? @@@@@@@_0A??8@@@@@@@G8@???@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   280
@@@A<@O??0@@@@@@@^@C??<@@@@@@@G A???@@@@@@@@0@???0@@@@@@@@@O??<@@@@@@@@@C???@@@@@@@@@A???0@@@@@@@@@_??<@@@@@@@@@G???@@@@
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   281
@@@@@C???0@@@@@@@@A???<@@@@@@@@@_??? @@@@@@@@O???8@@@@@@@@O????@@@@@@@@G????0@@@@@@@C????>@@@@@@@A?????<@@@@@@A?????>@@@
14394
2fbd45bcf5ac Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 13941
diff changeset
   282
@@@A?????? @@@@@@G?????0@@@@@@@_????8@@@@@@@@????<@@@@@@@@@_??<@@@@@@@@@@A?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
2fbd45bcf5ac Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 13941
diff changeset
   283
                            yourself);
2fbd45bcf5ac Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 13941
diff changeset
   284
                yourself
2fbd45bcf5ac Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 13941
diff changeset
   285
        ]
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   286
! !
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   287
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   288
!NewClassWizardDialog class methodsFor:'interface specs'!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   289
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   290
windowSpec
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   291
    "This resource specification was automatically generated
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   292
     by the UIPainter of ST/X."
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   293
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   294
    "Do not manually edit this!! If it is corrupted,
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   295
     the UIPainter may not be able to read the specification."
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   296
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   297
    "
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
   298
     UIPainter new openOnClass:Tools::NewClassWizardDialog andSelector:#windowSpec
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
   299
     Tools::NewClassWizardDialog new openInterface:#windowSpec
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
   300
     Tools::NewClassWizardDialog open
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   301
    "
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   302
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   303
    <resource: #canvas>
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   304
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
   305
    ^ 
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   306
    #(FullSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   307
       name: windowSpec
18936
f52f7094d456 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18880
diff changeset
   308
       uuid: 'b1c26d38-ac80-11e9-ab14-b8f6b1108e05'
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   309
       window: 
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   310
      (WindowSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   311
         label: 'Class Creation Wizard'
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   312
         name: 'Class Creation Wizard'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   313
         uuid: 'f1a8929c-be47-11e8-b6ed-b8f6b1108e05'
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   314
         min: (Point 10 10)
16895
463e46f35100 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16752
diff changeset
   315
         bounds: (Rectangle 0 0 592 639)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   316
       )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   317
       component: 
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   318
      (SpecCollection
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   319
         collection: (
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   320
          (LabelSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   321
             label: 'wizardIcon'
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   322
             name: 'Label10'
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   323
             layout: (LayoutFrame 0 0 0 0 100 0 90 0)
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   324
             uuid: 'f1a89490-be47-11e8-b6ed-b8f6b1108e05'
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   325
             hasCharacterOrientedLabel: false
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   326
             translateLabel: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   327
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   328
          (LabelSpec
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   329
             label: 'Class/Package Creation Wizard'
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   330
             name: 'Label11'
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   331
             layout: (LayoutFrame 100 0 10 0 390 0 50 0)
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   332
             uuid: 'f1a89634-be47-11e8-b6ed-b8f6b1108e05'
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   333
             translateLabel: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   334
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   335
          (LabelSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   336
             label: 'Stereotype:'
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   337
             name: 'Label13'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   338
             layout: (LayoutFrame 10 0 91 0 180 0 117 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   339
             activeHelpKey: stereotype
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   340
             uuid: 'f1a89724-be47-11e8-b6ed-b8f6b1108e05'
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   341
             translateLabel: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   342
             adjust: right
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   343
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   344
          (ComboListSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   345
             name: 'ComboList3'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   346
             layout: (LayoutFrame 190 0 91 0 -32 1 117 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   347
             activeHelpKey: stereotype
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   348
             uuid: 'f1a89814-be47-11e8-b6ed-b8f6b1108e05'
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   349
             model: stereotypeHolder
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   350
             comboList: listOfStereotypes
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   351
             useIndex: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   352
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   353
          (LabelSpec
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   354
             label: 'Programming Language:'
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   355
             name: 'Label9'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   356
             layout: (LayoutFrame 7 0 126 0 301 0 152 0)
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   357
             activeHelpKey: programmingLanguage
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   358
             uuid: 'f1a8be7a-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   359
             visibilityChannel: isCreatingClassHolder
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   360
             translateLabel: true
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   361
             adjust: right
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   362
           )
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   363
          (ComboListSpec
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   364
             name: 'ComboList1'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   365
             layout: (LayoutFrame 308 0 126 0 -32 1 152 0)
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   366
             activeHelpKey: programmingLanguage
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   367
             uuid: 'f1a8bf92-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   368
             visibilityChannel: isCreatingClassHolder
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   369
             model: languageHolder
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   370
             comboList: listOfLanguages
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   371
             useIndex: true
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   372
           )
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   373
          (LabelSpec
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   374
             label: 'Class Name:'
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   375
             name: 'Label1'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   376
             layout: (LayoutFrame 10 0 172 0 180 0 198 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   377
             activeHelpKey: className
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   378
             uuid: 'f1a8c064-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   379
             visibilityChannel: isCreatingClassHolder
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   380
             translateLabel: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   381
             adjust: right
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   382
           )
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   383
          (LabelSpec
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   384
             label: '*'
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   385
             name: 'Label14'
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   386
             layout: (LayoutFrame 180 0 173 0 190 0 195 0)
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   387
             uuid: 'f1a8c1a4-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   388
             visibilityChannel: isCreatingClassHolder
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   389
             translateLabel: true
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   390
           )
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   391
          (InputFieldSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   392
             name: 'EntryField1'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   393
             layout: (LayoutFrame 190 0 172 0 -32 1 198 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   394
             activeHelpKey: className
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   395
             uuid: 'f1a8c294-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   396
             visibilityChannel: isCreatingClassHolder
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   397
             model: classNameHolder
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   398
             acceptOnReturn: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   399
             acceptOnTab: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   400
             acceptOnLostFocus: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   401
             acceptOnPointerLeave: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   402
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   403
          (LabelSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   404
             label: 'Superclass:'
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   405
             name: 'Label2'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   406
             layout: (LayoutFrame 10 0 202 0 180 0 228 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   407
             activeHelpKey: superclass
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   408
             uuid: 'f1a8c4ec-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   409
             visibilityChannel: isCreatingClassHolder
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   410
             translateLabel: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   411
             adjust: right
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   412
           )
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   413
          (LabelSpec
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   414
             label: '*'
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   415
             name: 'Label15'
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   416
             layout: (LayoutFrame 180 0 202 0 190 0 224 0)
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   417
             uuid: 'f1a8c5dc-be47-11e8-b6ed-b8f6b1108e05'
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   418
             visibilityChannel: isCreatingClassHolder
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   419
             translateLabel: true
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   420
           )
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   421
          (ComboBoxSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   422
             name: 'ComboBox1'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   423
             layout: (LayoutFrame 190 0 202 0 -32 1 228 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   424
             activeHelpKey: superclass
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   425
             uuid: 'f1a8c6b8-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   426
             visibilityChannel: isCreatingClassHolder
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   427
             model: superclassNameHolder
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   428
             acceptOnLostFocus: true
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   429
             comboList: listOfSuperclassesHolder
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   430
             useIndex: false
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   431
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   432
          (ActionButtonSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   433
             label: '...'
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   434
             name: 'Button1'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   435
             layout: (LayoutFrame -22 1 202 0 -2 1 228 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   436
             activeHelpKey: chooseSuperclass
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   437
             uuid: 'f1a8c866-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   438
             visibilityChannel: isCreatingClassHolder
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   439
             translateLabel: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   440
             model: openSuperClassChooser
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   441
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   442
          (LabelSpec
16349
60fa7f1a3373 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16205
diff changeset
   443
             label: 'Package ID:'
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   444
             name: 'Label3'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   445
             layout: (LayoutFrame 10 0 242 0 180 0 268 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   446
             activeHelpKey: package
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   447
             uuid: 'f1a8c9f6-be47-11e8-b6ed-b8f6b1108e05'
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   448
             translateLabel: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   449
             adjust: right
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   450
           )
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   451
          (LabelSpec
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   452
             label: '*'
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   453
             name: 'Label16'
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   454
             layout: (LayoutFrame 180 0 245 0 190 0 267 0)
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   455
             uuid: 'f1a8cae6-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   456
             visibilityChannel: isCreatingPackageHolder
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   457
             translateLabel: true
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   458
           )
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   459
          (ComboBoxSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   460
             name: 'ComboBox2'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   461
             layout: (LayoutFrame 190 0 242 0 -32 1 268 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   462
             activeHelpKey: package
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   463
             uuid: 'f1a8cbb8-be47-11e8-b6ed-b8f6b1108e05'
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   464
             model: packageHolder
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   465
             acceptOnReturn: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   466
             acceptOnTab: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   467
             acceptOnLostFocus: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   468
             acceptOnPointerLeave: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   469
             comboList: listOfPackages
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   470
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   471
          (ActionButtonSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   472
             label: '...'
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   473
             name: 'Button4'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   474
             layout: (LayoutFrame -22 1 242 0 -2 1 268 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   475
             activeHelpKey: packageChooser
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   476
             uuid: 'f1a8cd3e-be47-11e8-b6ed-b8f6b1108e05'
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   477
             translateLabel: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   478
             model: openPackageChooser
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   479
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   480
          (LabelSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   481
             label: 'Namespace:'
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   482
             name: 'Label4'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   483
             layout: (LayoutFrame 10 0 272 0 180 0 298 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   484
             activeHelpKey: namespace
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   485
             uuid: 'f1a8ce60-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   486
             visibilityChannel: isCreatingClassHolder
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   487
             translateLabel: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   488
             adjust: right
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   489
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   490
          (ComboListSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   491
             name: 'ComboList2'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   492
             layout: (LayoutFrame 190 0 272 0 -32 1 298 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   493
             activeHelpKey: namespace
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   494
             uuid: 'f1a8cffa-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   495
             visibilityChannel: isCreatingClassHolder
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   496
             model: nameSpaceHolder
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   497
             comboList: listOfNamespaces
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   498
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   499
          (ActionButtonSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   500
             label: '...'
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   501
             name: 'Button5'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   502
             layout: (LayoutFrame -22 1 272 0 -2 1 298 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   503
             activeHelpKey: namespaceChooser
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   504
             uuid: 'f1a8d0ea-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   505
             visibilityChannel: isCreatingClassHolder
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   506
             translateLabel: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   507
             model: openNamespaceChooser
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   508
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   509
          (LabelSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   510
             label: 'Category:'
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   511
             name: 'Label12'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   512
             layout: (LayoutFrame 10 0 302 0 180 0 328 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   513
             activeHelpKey: category
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   514
             uuid: 'f1a8d266-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   515
             visibilityChannel: isCreatingClassHolder
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   516
             translateLabel: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   517
             adjust: right
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   518
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   519
          (ComboBoxSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   520
             name: 'ComboBox3'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   521
             layout: (LayoutFrame 190 0 302 0 -32 1 328 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   522
             activeHelpKey: category
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   523
             uuid: 'f1a8d34c-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   524
             visibilityChannel: isCreatingClassHolder
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   525
             model: categoryHolder
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   526
             acceptOnLostFocus: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   527
             comboList: listOfCategories
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   528
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   529
          (ActionButtonSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   530
             label: '...'
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   531
             name: 'Button6'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   532
             layout: (LayoutFrame -22 1 302 0 -2 1 328 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   533
             activeHelpKey: categoryChooser
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   534
             uuid: 'f1a8d4c8-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   535
             visibilityChannel: isCreatingClassHolder
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   536
             translateLabel: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   537
             model: openCategoryChooser
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   538
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   539
          (LabelSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   540
             label: 'Instance Variables:'
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   541
             name: 'Label5'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   542
             layout: (LayoutFrame 10 0 342 0 180 0 368 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   543
             activeHelpKey: instanceVariableNames
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   544
             uuid: 'f1a8d5e0-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   545
             visibilityChannel: isCreatingClassHolder
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   546
             translateLabel: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   547
             adjust: right
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   548
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   549
          (InputFieldSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   550
             name: 'EntryField4'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   551
             layout: (LayoutFrame 190 0 342 0 -32 1 368 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   552
             activeHelpKey: instanceVariableNames
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   553
             uuid: 'f1a8d6bc-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   554
             visibilityChannel: isCreatingClassHolder
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   555
             model: instVarNamesHolder
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   556
             acceptOnReturn: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   557
             acceptOnTab: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   558
             acceptOnLostFocus: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   559
             acceptOnPointerLeave: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   560
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   561
          (LabelSpec
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   562
             label: 'Indexed:'
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   563
             name: 'Label17'
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   564
             layout: (LayoutFrame 10 0 372 0 180 0 398 0)
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   565
             activeHelpKey: indexType
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   566
             uuid: 'f1a8d89c-be47-11e8-b6ed-b8f6b1108e05'
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   567
             visibilityChannel: isCreatingClassHolder
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   568
             translateLabel: true
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   569
             adjust: right
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   570
           )
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   571
          (ComboListSpec
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   572
             name: 'ComboList4'
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   573
             layout: (LayoutFrame 190 0 372 0 -32 1 398 0)
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   574
             activeHelpKey: indexType
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   575
             uuid: 'f1a8da04-be47-11e8-b6ed-b8f6b1108e05'
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   576
             visibilityChannel: isCreatingClassHolder
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   577
             model: indexTypeHolder
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   578
             comboList: indexTypeNameList
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   579
             useIndex: true
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   580
           )
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   581
          (LabelSpec
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   582
             label: 'Class Variables:'
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   583
             name: 'Label6'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   584
             layout: (LayoutFrame 10 0 402 0 180 0 428 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   585
             activeHelpKey: classVariableNames
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   586
             uuid: 'f1a8dcca-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   587
             visibilityChannel: isCreatingClassHolder
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   588
             translateLabel: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   589
             adjust: right
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   590
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   591
          (InputFieldSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   592
             name: 'EntryField5'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   593
             layout: (LayoutFrame 190 0 402 0 -32 1 428 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   594
             activeHelpKey: classVariableNames
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   595
             uuid: 'f1a8dea0-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   596
             visibilityChannel: isCreatingClassHolder
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   597
             model: classVarNamesHolder
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   598
             acceptOnReturn: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   599
             acceptOnTab: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   600
             acceptOnLostFocus: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   601
             acceptOnPointerLeave: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   602
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   603
          (LabelSpec
16895
463e46f35100 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 16752
diff changeset
   604
             label: 'Class InstVars:'
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   605
             name: 'Label7'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   606
             layout: (LayoutFrame 10 0 432 0 180 0 458 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   607
             activeHelpKey: classInstVariableNames
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   608
             uuid: 'f1a8e260-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   609
             visibilityChannel: isCreatingClassHolder
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   610
             translateLabel: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   611
             adjust: right
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   612
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   613
          (InputFieldSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   614
             name: 'EntryField6'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   615
             layout: (LayoutFrame 190 0 432 0 -32 1 458 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   616
             activeHelpKey: classInstVariableNames
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   617
             uuid: 'f1a8e3e6-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   618
             visibilityChannel: isCreatingClassHolder
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   619
             model: classInstVarNamesHolder
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   620
             acceptOnReturn: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   621
             acceptOnTab: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   622
             acceptOnLostFocus: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   623
             acceptOnPointerLeave: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   624
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   625
          (LabelSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   626
             label: 'Create:'
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   627
             name: 'Label8'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   628
             layout: (LayoutFrame 10 0 472 0 110 0 494 0)
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   629
             uuid: 'f1a8e56c-be47-11e8-b6ed-b8f6b1108e05'
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   630
             translateLabel: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   631
             adjust: right
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   632
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   633
          (CheckBoxSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   634
             label: 'Initial Template Code'
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   635
             name: 'CheckBox6'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   636
             layout: (LayoutFrame 120 0 472 0 312 0 494 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   637
             activeHelpKey: createInitialGUICode
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   638
             uuid: 'f1a8e79c-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   639
             enableChannel: canDisableTemplateCreationHolder
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   640
             model: createInitialGUICodeHolder
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   641
             translateLabel: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   642
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   643
          (CheckBoxSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   644
             label: 'Initializer'
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   645
             name: 'CheckBox2'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   646
             layout: (LayoutFrame 120 0 497 0 -280 1 519 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   647
             activeHelpKey: createInitializer
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   648
             uuid: 'f1a8e88c-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   649
             visibilityChannel: isCreatingClassHolder
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   650
             model: createInitializerHolder
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   651
             translateLabel: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   652
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   653
          (CheckBoxSpec
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   654
             label: 'Accessors'
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   655
             name: 'CheckBox1'
18936
f52f7094d456 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18880
diff changeset
   656
             layout: (LayoutFrame 410 0 497 0 0 1 519 0)
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   657
             activeHelpKey: createAccessors
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   658
             uuid: 'f1a8e666-be47-11e8-b6ed-b8f6b1108e05'
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   659
             visibilityChannel: isCreatingClassHolder
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   660
             model: createAccessorsHolder
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   661
             translateLabel: true
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   662
           )
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   663
          (CheckBoxSpec
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   664
             label: 'Update Method'
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   665
             name: 'CheckBox5'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   666
             layout: (LayoutFrame 120 0 522 0 -280 1 544 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   667
             activeHelpKey: createUpdateMethod
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   668
             uuid: 'f1a8e968-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   669
             visibilityChannel: isCreatingClassHolder
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   670
             model: createUpdateMethodHolder
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   671
             translateLabel: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   672
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   673
          (CheckBoxSpec
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   674
             label: 'Print Method'
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   675
             name: 'CheckBox4'
18936
f52f7094d456 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18880
diff changeset
   676
             layout: (LayoutFrame 410 0 522 0 0 1 544 0)
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   677
             activeHelpKey: createPrintMethod
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   678
             uuid: 'f1a8eb20-be47-11e8-b6ed-b8f6b1108e05'
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   679
             visibilityChannel: false
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   680
             model: createPrintMethodHolder
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   681
             translateLabel: true
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   682
           )
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   683
          (CheckBoxSpec
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   684
             label: 'Class Initializer'
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   685
             name: 'CheckBox7'
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   686
             layout: (LayoutFrame 120 0 547 0 0 1 569 0)
18936
f52f7094d456 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18880
diff changeset
   687
             activeHelpKey: createClassInitializer
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   688
             uuid: 'f1a8ea44-be47-11e8-b6ed-b8f6b1108e05'
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   689
             visibilityChannel: isCreatingClassHolder
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   690
             model: createClassInitializerMethodHolder
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   691
             translateLabel: true
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   692
           )
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   693
          (CheckBoxSpec
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   694
             label: 'Required Methods (Subclass responsibilities)'
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   695
             name: 'CheckBox3'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   696
             layout: (LayoutFrame 120 0 572 0 0 1 594 0)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   697
             activeHelpKey: createRequiredMethods
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   698
             uuid: 'f1a8ea44-be47-11e8-b6ed-b8f6b1108e05'
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   699
             visibilityChannel: isCreatingClassHolder
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   700
             model: createRequiredMethodsHolder
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   701
             translateLabel: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   702
           )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   703
          (HorizontalPanelViewSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   704
             name: 'HorizontalPanel1'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   705
             layout: (LayoutFrame 0 0 -36 1 0 1 0 1)
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   706
             uuid: 'f1a8ebfc-be47-11e8-b6ed-b8f6b1108e05'
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   707
             horizontalLayout: center
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   708
             verticalLayout: center
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   709
             horizontalSpace: 3
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   710
             verticalSpace: 3
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   711
             reverseOrderIfOKAtLeft: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   712
             component: 
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   713
            (SpecCollection
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   714
               collection: (
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   715
                (ActionButtonSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   716
                   label: 'Cancel'
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   717
                   name: 'Button3'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   718
                   uuid: 'f1a8edd2-be47-11e8-b6ed-b8f6b1108e05'
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   719
                   translateLabel: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   720
                   model: doCancel
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   721
                   extent: (Point 125 26)
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
   722
                 )
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   723
                (ActionButtonSpec
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   724
                   label: 'OK'
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   725
                   name: 'Button2'
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   726
                   uuid: 'f1a8ef08-be47-11e8-b6ed-b8f6b1108e05'
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   727
                   translateLabel: true
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   728
                   model: doAccept
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   729
                   extent: (Point 125 26)
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   730
                 )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   731
                )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   732
              
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   733
             )
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
   734
           )
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   735
          )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   736
        
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   737
       )
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
   738
     )
18936
f52f7094d456 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18880
diff changeset
   739
f52f7094d456 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 18880
diff changeset
   740
    "Modified: / 22-07-2019 / 15:03:08 / Claus Gittinger"
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   741
! !
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   742
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   743
!NewClassWizardDialog methodsFor:'accessing'!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   744
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   745
compilerProviderBlock:aBlock
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   746
    "/ see NewSystemBrowser on how to use this
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   747
    compilerProviderBlock := aBlock.
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   748
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   749
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   750
createdClass
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   751
    ^ createdClass
9721
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
   752
!
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
   753
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
   754
language                      
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
   755
    |languageName languageClass|
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
   756
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
   757
    languageName := self listOfLanguages at:(languageHolder value).
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
   758
    languageClass := ProgrammingLanguage allSubclasses 
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
   759
        detect:[:l | l instance name = languageName]
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
   760
        ifNone:[ SmalltalkLanguage].
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
   761
    ^ languageClass instance
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
   762
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
   763
    "Created: / 30-01-2011 / 09:35:19 / cg"
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
   764
    "Modified: / 30-01-2011 / 10:40:35 / cg"
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   765
! !
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   766
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   767
!NewClassWizardDialog methodsFor:'actions'!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   768
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   769
doAccept
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   770
    self isCreatingPackageHolder value ifFalse:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   771
        self doAcceptForNewClass ifFalse:[^ self].
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   772
    ] ifTrue:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   773
        self doAcceptForNewPackage ifFalse:[^ self].
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   774
    ].    
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   775
    super doAccept.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   776
!
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   777
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   778
doAcceptForNewClass
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   779
    |newClassName superclassName superclass package answer|
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   780
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   781
    newClassName := self classNameHolder value.
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   782
    newClassName isEmptyOrNil ifTrue:[
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   783
        self warn:('No Classname entered').
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   784
        ^ false.
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   785
    ].
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   786
    newClassName isValidSmalltalkIdentifier ifFalse:[
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   787
        self warn:'No valid Classname entered (must be alphaNumeric)'.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   788
        ^ false.
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   789
    ].
17551
005205c23e37 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17285
diff changeset
   790
    newClassName isLowercaseFirst ifTrue:[
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   791
        self warn:'No valid Classname entered (first Character must be uppercase)'.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   792
        ^ false.
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   793
    ].
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   794
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   795
    superclassName := self superclassNameHolder value.
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   796
    superclass := Smalltalk classNamed:superclassName.
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   797
    superclass isNil ifTrue:[
9207
1d1b8d1ba42b changed: #doAccept
Claus Gittinger <cg@exept.de>
parents: 9205
diff changeset
   798
        (superclassName knownAsSymbol and:[Smalltalk includesKey:superclassName asSymbol]) ifFalse:[
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   799
            self warn:'No such Superclass'.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   800
            ^ false.
9207
1d1b8d1ba42b changed: #doAccept
Claus Gittinger <cg@exept.de>
parents: 9205
diff changeset
   801
        ].
1d1b8d1ba42b changed: #doAccept
Claus Gittinger <cg@exept.de>
parents: 9205
diff changeset
   802
        (Smalltalk at:superclassName asSymbol) isBehavior ifFalse:[
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   803
            self warn:'"%1" refers to a global which is not a class (%2)'
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   804
                        with:superclassName
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   805
                        with:superclass className.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   806
            ^ false.
9207
1d1b8d1ba42b changed: #doAccept
Claus Gittinger <cg@exept.de>
parents: 9205
diff changeset
   807
        ].
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   808
    ].
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   809
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   810
    package := self packageHolder value.
9211
38821c9edc77 changed: #doAccept
Stefan Vogel <sv@exept.de>
parents: 9207
diff changeset
   811
    package notEmptyOrNil ifTrue:[
38821c9edc77 changed: #doAccept
Stefan Vogel <sv@exept.de>
parents: 9207
diff changeset
   812
        (package asPackageId module isEmptyOrNil
38821c9edc77 changed: #doAccept
Stefan Vogel <sv@exept.de>
parents: 9207
diff changeset
   813
        or:[ package asPackageId directory isEmptyOrNil ]) ifTrue:[
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   814
            self warn:'The packageID "%1" must be of the form "module:directory" (for the source repository management)'
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   815
                        with:package.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   816
            ^ false.
9211
38821c9edc77 changed: #doAccept
Stefan Vogel <sv@exept.de>
parents: 9207
diff changeset
   817
        ].
9207
1d1b8d1ba42b changed: #doAccept
Claus Gittinger <cg@exept.de>
parents: 9205
diff changeset
   818
1d1b8d1ba42b changed: #doAccept
Claus Gittinger <cg@exept.de>
parents: 9205
diff changeset
   819
        (ProjectDefinition definitionClassForPackage:package) isNil ifTrue:[
1d1b8d1ba42b changed: #doAccept
Claus Gittinger <cg@exept.de>
parents: 9205
diff changeset
   820
            answer := Dialog
1d1b8d1ba42b changed: #doAccept
Claus Gittinger <cg@exept.de>
parents: 9205
diff changeset
   821
                        choose:('Create a new ProjectDefinition for "%1" ?
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   822
9205
07015f8db981 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
   823
This can also be done later.
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   824
Create the definition as:
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   825
' bindWith:package)
9207
1d1b8d1ba42b changed: #doAccept
Claus Gittinger <cg@exept.de>
parents: 9205
diff changeset
   826
                        fromList:nil values:nil
1d1b8d1ba42b changed: #doAccept
Claus Gittinger <cg@exept.de>
parents: 9205
diff changeset
   827
                        buttons:#('GUI Application' 'non-GUI Application' 'Library')
1d1b8d1ba42b changed: #doAccept
Claus Gittinger <cg@exept.de>
parents: 9205
diff changeset
   828
                        values:#(guiApplicationType #nonGuiApplicationType #libraryType)
1d1b8d1ba42b changed: #doAccept
Claus Gittinger <cg@exept.de>
parents: 9205
diff changeset
   829
                        lines:nil cancel:false.
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   830
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   831
            answer == false ifTrue:[^ false].
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   832
9207
1d1b8d1ba42b changed: #doAccept
Claus Gittinger <cg@exept.de>
parents: 9205
diff changeset
   833
            ProjectDefinition
1d1b8d1ba42b changed: #doAccept
Claus Gittinger <cg@exept.de>
parents: 9205
diff changeset
   834
                definitionClassForPackage:package
1d1b8d1ba42b changed: #doAccept
Claus Gittinger <cg@exept.de>
parents: 9205
diff changeset
   835
                projectType: (ProjectDefinition perform:answer)
1d1b8d1ba42b changed: #doAccept
Claus Gittinger <cg@exept.de>
parents: 9205
diff changeset
   836
                createIfAbsent:true.
1d1b8d1ba42b changed: #doAccept
Claus Gittinger <cg@exept.de>
parents: 9205
diff changeset
   837
        ].
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   838
    ].
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   839
11224
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
   840
"/ done in caller (for undo handling...)
9205
07015f8db981 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
   841
"/    createdClass :=
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   842
"/            superclass
9205
07015f8db981 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
   843
"/                subclass: newClassName asSymbol
07015f8db981 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
   844
"/                instanceVariableNames: instVarNamesHolder value
07015f8db981 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
   845
"/                classVariableNames: classVarNamesHolder value
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   846
"/                poolDictionaries: ' '
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   847
"/                category: '* as yet uncategorized *'.
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   848
"/
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   849
"/    classInstVarNamesHolder value notEmptyOrNil ifTrue:[
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   850
"/        createdClass class instanceVariableNames: classInstVarNamesHolder value
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   851
"/    ].
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   852
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   853
    LastSuperclass := superclassName.
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
   854
    LastCategory := categoryHolder value.
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
   855
    LastPackage := packageHolder value.
9721
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
   856
    LastLanguage := self listOfLanguages at:(languageHolder value).
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
   857
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   858
    ^ true
9721
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
   859
17551
005205c23e37 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17285
diff changeset
   860
    "Modified: / 22-06-2017 / 06:55:24 / cg"
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
   861
    "Modified: / 22-09-2018 / 15:50:30 / Claus Gittinger"
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   862
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   863
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   864
doAcceptForNewPackage
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   865
    |package projectType|
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   866
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   867
    package := self packageHolder value.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   868
    package isEmptyOrNil ifTrue:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   869
        self warn:'Missing packageID'.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   870
        ^ false.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   871
    ].
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   872
    
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   873
    (package asPackageId module isEmptyOrNil
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   874
    or:[ package asPackageId directory isEmptyOrNil ]) ifTrue:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   875
        self warn:'The packageID "%1" must be of the form "module:directory" (for the source repository management)'
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   876
                    with:package.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   877
        ^ false.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   878
    ].
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   879
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   880
    (ProjectDefinition definitionClassForPackage:package) notNil ifTrue:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   881
        self warn:'Package already exists'.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   882
        ^ false.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   883
    ].    
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   884
    self stereotypeSymbol == #GUIProject ifTrue:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   885
        projectType := ProjectDefinition guiApplicationType
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   886
    ] ifFalse:[    
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   887
        self stereotypeSymbol == #NonGUIProject ifTrue:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   888
            projectType := ProjectDefinition nonGuiApplicationType
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   889
        ] ifFalse:[    
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   890
            self stereotypeSymbol == #LibraryProject ifTrue:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   891
                projectType := ProjectDefinition libraryType
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   892
            ] ifFalse:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   893
                self warn:'oops - what kind of package is this'.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   894
                ^ false.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   895
            ]
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   896
        ].    
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   897
    ].
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   898
    ProjectDefinition
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   899
        definitionClassForPackage:package
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   900
        projectType:projectType
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   901
        createIfAbsent:true.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   902
            
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   903
    self doCancel. "/ hack - for now.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   904
    ^ false.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   905
!
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   906
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   907
doCancel
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   908
    self closeRequest.
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   909
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   910
9248
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   911
openCategoryChooser
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   912
    |category|
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   913
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   914
    category := Dialog 
9282
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
   915
                    choose:(resources string:'Select a Category')
9248
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   916
                    fromList:(Smalltalk allClassCategories asSortedCollection)
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   917
                    lines:15.
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   918
    category isNil ifTrue:[^ self].
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   919
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   920
    self categoryHolder value:category.
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   921
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   922
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   923
openNamespaceChooser
9249
195b0799d1d4 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9248
diff changeset
   924
    "(mis)use the browser's namespace dialog"
195b0799d1d4 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9248
diff changeset
   925
9248
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   926
    |browser namespaceString existing|
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   927
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   928
    (browser := masterApplication) isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   929
        browser := Tools::NewSystemBrowser basicNew
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   930
    ].
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   931
9282
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
   932
    namespaceString := browser 
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
   933
                        askForNameSpace:(resources string:'Select or Enter a Namespace') 
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
   934
                        title:(resources string:'Namespace selection') 
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
   935
                        initialText:'Smalltalk'.
9248
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   936
    namespaceString isNil ifTrue:[^ self].
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   937
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   938
    existing := Smalltalk classNamed:namespaceString.
10590
1a41a0700e59 changed: #openNamespaceChooser
Claus Gittinger <cg@exept.de>
parents: 9726
diff changeset
   939
    (existing notNil and:[existing isNameSpace]) ifTrue:[
9248
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   940
        "/ exists
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   941
    ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   942
        (existing notNil) ifTrue:[
18880
2ada87d888e3 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18423
diff changeset
   943
            Dialog warn:'"%1" is already defined, but not a namespace' with:namespaceString.
9248
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   944
            ^ self
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   945
        ].
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   946
    ].
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   947
    Class withoutUpdatingChangesDo:[
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   948
        NameSpace name:namespaceString.
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   949
    ].
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   950
    self nameSpaceHolder value:namespaceString.
10590
1a41a0700e59 changed: #openNamespaceChooser
Claus Gittinger <cg@exept.de>
parents: 9726
diff changeset
   951
1a41a0700e59 changed: #openNamespaceChooser
Claus Gittinger <cg@exept.de>
parents: 9726
diff changeset
   952
    "Modified: / 19-08-2011 / 01:00:52 / cg"
18880
2ada87d888e3 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 18423
diff changeset
   953
    "Modified: / 10-07-2019 / 18:34:42 / Claus Gittinger"
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   954
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   955
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   956
openPackageChooser
9249
195b0799d1d4 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9248
diff changeset
   957
    "(mis)use the browser's package dialog"
195b0799d1d4 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9248
diff changeset
   958
9248
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   959
    |browser package|
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   960
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   961
    (browser := masterApplication) isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   962
        browser := Tools::NewSystemBrowser basicNew
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   963
    ].
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   964
9282
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
   965
    package := browser askForProject:(resources string:'Select or Enter a Package-ID').
9248
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   966
    package isNil ifTrue:[^ self].
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   967
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   968
    self packageHolder value:package.
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   969
!
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   970
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   971
openSuperClassChooser
9249
195b0799d1d4 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9248
diff changeset
   972
    "(mis)use the browser's class dialog"
195b0799d1d4 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9248
diff changeset
   973
9248
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   974
    |browser class classValid classNameOrNil|
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   975
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   976
    (browser := masterApplication) isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   977
        browser := Tools::NewSystemBrowser basicNew
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   978
    ].
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   979
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   980
    classValid := false.
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   981
    [ classValid ] whileFalse:[
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   982
        classNameOrNil := browser
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   983
            askForClassToSearch:nil
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   984
            single:true 
9282
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
   985
            msgTail:(resources string:'Select a Class') 
9248
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   986
            resources:nil
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   987
            thenDo:nil.
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   988
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   989
        classNameOrNil isNil ifTrue:[^ self].
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   990
        class := Smalltalk classNamed:classNameOrNil.
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   991
        classValid := class notNil
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   992
    ].
Claus Gittinger <cg@exept.de>
parents: 9223
diff changeset
   993
    self superclassNameHolder value:class name.
9218
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
   994
!
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
   995
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
   996
stereotypeChanged
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   997
    |stereoTypeSymbol|
9218
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
   998
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
   999
    self listOfSuperclassesHolder value:self listOfSuperclasses.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1000
    
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1001
    stereoTypeSymbol := self stereotypeSymbol.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1002
    
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1003
    (stereoTypeSymbol = #'GUIProject'
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1004
    or:[ stereoTypeSymbol = #'NonGUIProject'
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1005
    or:[ stereoTypeSymbol = #'LibraryProject' ]]) ifTrue:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1006
        self isCreatingClassHolder value:false. 
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1007
        self canDisableTemplateCreationHolder value:false.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1008
        self createInitialGUICodeHolder value:true.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1009
    ] ifFalse:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1010
        self isCreatingClassHolder value:true.    
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1011
        self canDisableTemplateCreationHolder value:true.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1012
    ].    
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1013
    
17285
f923dd150c2f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16926
diff changeset
  1014
    stereoTypeSymbol isNil ifTrue:[
9282
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
  1015
        self createInitializerHolder value:true.
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
  1016
        self createPrintMethodHolder value:false.
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
  1017
        self createAccessorsHolder value:true.
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
  1018
        self createInitialGUICodeHolder value:false.
9726
e84b9cdc6cbe changed: #stereotypeChanged
Claus Gittinger <cg@exept.de>
parents: 9721
diff changeset
  1019
        self createUpdateMethodHolder value:false.
9282
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
  1020
    ].
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
  1021
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1022
    stereoTypeSymbol = #'DataObject' ifTrue:[
9719
60ddc5c84ff7 changed:
Claus Gittinger <cg@exept.de>
parents: 9464
diff changeset
  1023
        self superclassNameHolder value:'Model'.
60ddc5c84ff7 changed:
Claus Gittinger <cg@exept.de>
parents: 9464
diff changeset
  1024
        self createAccessorsHolder value:true.
60ddc5c84ff7 changed:
Claus Gittinger <cg@exept.de>
parents: 9464
diff changeset
  1025
        self createInitialGUICodeHolder value:false.
9726
e84b9cdc6cbe changed: #stereotypeChanged
Claus Gittinger <cg@exept.de>
parents: 9721
diff changeset
  1026
        self createUpdateMethodHolder value:false.
9719
60ddc5c84ff7 changed:
Claus Gittinger <cg@exept.de>
parents: 9464
diff changeset
  1027
    ].
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1028
"/    stereoTypeSymbol = #'Enumeration' ifTrue:[
9719
60ddc5c84ff7 changed:
Claus Gittinger <cg@exept.de>
parents: 9464
diff changeset
  1029
"/        self superclassNameHolder value:'Enumeration'.
60ddc5c84ff7 changed:
Claus Gittinger <cg@exept.de>
parents: 9464
diff changeset
  1030
"/        self createInitializerHolder value:true.
60ddc5c84ff7 changed:
Claus Gittinger <cg@exept.de>
parents: 9464
diff changeset
  1031
"/        self createAccessorsHolder value:false.
60ddc5c84ff7 changed:
Claus Gittinger <cg@exept.de>
parents: 9464
diff changeset
  1032
"/        self createInitialGUICodeHolder value:false.
60ddc5c84ff7 changed:
Claus Gittinger <cg@exept.de>
parents: 9464
diff changeset
  1033
"/    ].
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1034
    stereoTypeSymbol = #'GUIApplication' ifTrue:[
9282
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
  1035
        self superclassNameHolder value:'ApplicationModel'.
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
  1036
        self createInitializerHolder value:false.
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
  1037
        self createPrintMethodHolder value:false.
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
  1038
        self createInitialGUICodeHolder value:true.
9726
e84b9cdc6cbe changed: #stereotypeChanged
Claus Gittinger <cg@exept.de>
parents: 9721
diff changeset
  1039
        self createUpdateMethodHolder value:true.
9282
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
  1040
    ].
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1041
    stereoTypeSymbol = #'SharedPool' ifTrue:[
9719
60ddc5c84ff7 changed:
Claus Gittinger <cg@exept.de>
parents: 9464
diff changeset
  1042
        self superclassNameHolder value:'SharedPool'.
60ddc5c84ff7 changed:
Claus Gittinger <cg@exept.de>
parents: 9464
diff changeset
  1043
        self createAccessorsHolder value:false.
60ddc5c84ff7 changed:
Claus Gittinger <cg@exept.de>
parents: 9464
diff changeset
  1044
        self createInitializerHolder value:true.
60ddc5c84ff7 changed:
Claus Gittinger <cg@exept.de>
parents: 9464
diff changeset
  1045
        self createPrintMethodHolder value:false.
9282
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
  1046
        self createInitialGUICodeHolder value:false.
9719
60ddc5c84ff7 changed:
Claus Gittinger <cg@exept.de>
parents: 9464
diff changeset
  1047
        self createUpdateMethodHolder value:false.
9218
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
  1048
    ].
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1049
    (stereoTypeSymbol = #'StartupClass') ifTrue:[
11224
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
  1050
        self superclassNameHolder value:'StandaloneStartup'.
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
  1051
        self createAccessorsHolder value:false.
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
  1052
        self createInitializerHolder value:true.
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
  1053
        self createPrintMethodHolder value:false.
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
  1054
        self createInitialGUICodeHolder value:true.
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
  1055
        self createUpdateMethodHolder value:false.
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
  1056
    ].
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1057
    stereoTypeSymbol = #'TestCase' ifTrue:[
9719
60ddc5c84ff7 changed:
Claus Gittinger <cg@exept.de>
parents: 9464
diff changeset
  1058
        self superclassNameHolder value:'TestCase'.
60ddc5c84ff7 changed:
Claus Gittinger <cg@exept.de>
parents: 9464
diff changeset
  1059
        self createAccessorsHolder value:false.
9282
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
  1060
        self createInitializerHolder value:false.
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
  1061
        self createPrintMethodHolder value:false.
9719
60ddc5c84ff7 changed:
Claus Gittinger <cg@exept.de>
parents: 9464
diff changeset
  1062
        self createInitialGUICodeHolder value:true.
9726
e84b9cdc6cbe changed: #stereotypeChanged
Claus Gittinger <cg@exept.de>
parents: 9721
diff changeset
  1063
        self createUpdateMethodHolder value:false.
9218
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
  1064
    ].
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1065
    stereoTypeSymbol = #'WebService' ifTrue:[
9282
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
  1066
        self superclassNameHolder value:'HTTPService'.
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
  1067
        self createAccessorsHolder value:false.
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
  1068
        self createInitializerHolder value:false.
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
  1069
        self createPrintMethodHolder value:false.
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
  1070
        self createInitialGUICodeHolder value:true.
9726
e84b9cdc6cbe changed: #stereotypeChanged
Claus Gittinger <cg@exept.de>
parents: 9721
diff changeset
  1071
        self createUpdateMethodHolder value:false.
9218
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
  1072
    ].
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1073
    stereoTypeSymbol = #'Widget' ifTrue:[
9719
60ddc5c84ff7 changed:
Claus Gittinger <cg@exept.de>
parents: 9464
diff changeset
  1074
        self superclassNameHolder value:'View'.
9282
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
  1075
        self createInitializerHolder value:false.
a0ccecc25a76 changed:8 methods
Claus Gittinger <cg@exept.de>
parents: 9249
diff changeset
  1076
        self createPrintMethodHolder value:false.
9719
60ddc5c84ff7 changed:
Claus Gittinger <cg@exept.de>
parents: 9464
diff changeset
  1077
        self createInitialGUICodeHolder value:false.
9726
e84b9cdc6cbe changed: #stereotypeChanged
Claus Gittinger <cg@exept.de>
parents: 9721
diff changeset
  1078
        self createUpdateMethodHolder value:true.
9218
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
  1079
    ].
9719
60ddc5c84ff7 changed:
Claus Gittinger <cg@exept.de>
parents: 9464
diff changeset
  1080
11224
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
  1081
    "Modified: / 27-01-2012 / 14:47:20 / cg"
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1082
!
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1083
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1084
stereotypeSymbol
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1085
    |stereoTypeIndex stereoTypeSpec stereoTypeSymbol|
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1086
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1087
    stereoTypeIndex := self stereotypeHolder value.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1088
    stereoTypeIndex isNil ifTrue:[^ nil].
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1089
    
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1090
    stereoTypeSpec := self stereotypeSpec at:stereoTypeIndex.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1091
    stereoTypeSymbol := stereoTypeSpec first.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1092
    ^ stereoTypeSymbol
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1093
! !
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1094
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1095
!NewClassWizardDialog methodsFor:'aspects'!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1096
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1097
canDisableTemplateCreationHolder
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1098
    <resource: #uiAspect>
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1099
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1100
    canDisableTemplateCreationHolder isNil ifTrue:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1101
        canDisableTemplateCreationHolder := true asValue.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1102
    ].
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1103
    ^ canDisableTemplateCreationHolder.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1104
!
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1105
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1106
categoryHolder
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1107
    <resource: #uiAspect>
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1108
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1109
    categoryHolder isNil ifTrue:[
15296
c6ecd82484fc class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 14394
diff changeset
  1110
        categoryHolder := LastCategory asValue.
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1111
    ].
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1112
    ^ categoryHolder.
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1113
!
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1114
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1115
classInstVarNamesHolder
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1116
    <resource: #uiAspect>
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1117
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1118
    classInstVarNamesHolder isNil ifTrue:[
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1119
        classInstVarNamesHolder := ValueHolder new.
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1120
    ].
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1121
    ^ classInstVarNamesHolder.
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1122
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1123
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1124
classNameHolder
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1125
    <resource: #uiAspect>
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1126
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1127
    classNameHolder isNil ifTrue:[
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1128
        classNameHolder := ValueHolder new.
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1129
    ].
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1130
    ^ classNameHolder.
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1131
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1132
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1133
classNameVisibleHolder
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1134
    <resource: #uiAspect>
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1135
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1136
    ^ self isCreatingClassHolder
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1137
!
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1138
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1139
classVarNamesHolder
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1140
    <resource: #uiAspect>
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1141
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1142
    classVarNamesHolder isNil ifTrue:[
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1143
        classVarNamesHolder := ValueHolder new.
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1144
    ].
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1145
    ^ classVarNamesHolder.
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1146
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1147
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1148
createAccessors
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1149
    ^ self createAccessorsHolder value
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1150
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1151
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1152
createAccessorsHolder
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1153
    <resource: #uiAspect>
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1154
9205
07015f8db981 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  1155
    createAccessorsHolder isNil ifTrue:[
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1156
        createAccessorsHolder := true asValue.
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1157
    ].
9205
07015f8db981 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  1158
    ^ createAccessorsHolder.
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1159
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1160
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1161
createClassInitializerMethod
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1162
    ^ self createClassInitializerMethodHolder value
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1163
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1164
    "Created: / 22-09-2018 / 15:59:19 / Claus Gittinger"
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1165
!
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1166
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1167
createClassInitializerMethodHolder
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1168
    <resource: #uiAspect>
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1169
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1170
    createClassInitializerMethodHolder isNil ifTrue:[
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1171
        createClassInitializerMethodHolder := true asValue.
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1172
    ].
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1173
    ^ createClassInitializerMethodHolder.
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1174
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1175
    "Created: / 22-09-2018 / 15:58:58 / Claus Gittinger"
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1176
!
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1177
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1178
createInitialGUICode
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1179
    ^ self createInitialGUICodeHolder value
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1180
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1181
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1182
createInitialGUICodeHolder
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1183
    <resource: #uiAspect>
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1184
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1185
    createInitialGUICodeHolder isNil ifTrue:[
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1186
        createInitialGUICodeHolder := true asValue.
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1187
    ].
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1188
    ^ createInitialGUICodeHolder.
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1189
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1190
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1191
createInitializer
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1192
    ^ self createInitializerHolder value
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1193
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1194
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1195
createInitializerHolder
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1196
    <resource: #uiAspect>
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1197
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1198
    createInitializerHolder isNil ifTrue:[
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1199
        createInitializerHolder := true asValue.
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1200
    ].
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1201
    ^ createInitializerHolder.
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1202
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1203
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1204
createPrintMethod
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1205
    ^ self createPrintMethodHolder value
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1206
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1207
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1208
createPrintMethodHolder
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1209
    <resource: #uiAspect>
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1210
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1211
    createPrintMethodHolder isNil ifTrue:[
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1212
        createPrintMethodHolder := true asValue.
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1213
    ].
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1214
    ^ createPrintMethodHolder.
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1215
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1216
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1217
createRequiredMethods
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1218
    ^ self createRequiredMethodsHolder value
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1219
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1220
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1221
createRequiredMethodsHolder
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1222
    <resource: #uiAspect>
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1223
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1224
    createRequiredMethodsHolder isNil ifTrue:[
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1225
        createRequiredMethodsHolder := true asValue.
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1226
    ].
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1227
    ^ createRequiredMethodsHolder.
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1228
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1229
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1230
createUpdateMethod
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1231
    ^ self createUpdateMethodHolder value
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1232
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1233
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1234
createUpdateMethodHolder
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1235
    <resource: #uiAspect>
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1236
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1237
    createUpdateMethodHolder isNil ifTrue:[
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1238
        createUpdateMethodHolder := true asValue.
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1239
    ].
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1240
    ^ createUpdateMethodHolder.
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1241
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1242
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1243
indexType
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1244
    ^ (self indexTypeList at:(self indexTypeHolder value)) at:2
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1245
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1246
    "Created: / 22-09-2018 / 13:04:40 / Claus Gittinger"
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1247
!
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1248
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1249
indexTypeHolder
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1250
    <resource: #uiAspect>
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1251
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1252
    indexTypeHolder isNil ifTrue:[
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1253
        indexTypeHolder := 1 asValue.
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1254
        "/ indexTypeHolder onChangeSend:#indexTypeChanged to:self.
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1255
    ].
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1256
    ^ indexTypeHolder.
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1257
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1258
    "Created: / 22-09-2018 / 10:46:29 / Claus Gittinger"
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1259
!
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1260
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1261
indexTypeList
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1262
    <resource: #uiAspect>
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1263
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1264
    ^ #(
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1265
        "/                           variable        words  pointers 
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1266
        ('Not Indexed'               false           false  false) 
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1267
        ('Pointers'                  #pointer        false  true)
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1268
        ('Bytes'                     #byte           false  false)
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1269
        ('16bit Unsigned Integers'   #word           true   false)
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1270
        ('16bit Signed Integers'     #signedWord     false  false)
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1271
        ('32bit Unsigned Integers'   #long           false  false)
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1272
        ('32bit Signed Integers'     #signedLong     false  false)
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1273
        ('64bit Unsigned Integers'   #longLong       false  false)
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1274
        ('64bit Signed Integers'     #signedLongLong false  false)
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1275
        ('Floats'                    #float          false  false)
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1276
        ('Doubles'                   #double         false  false)
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1277
    )
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1278
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1279
    "Created: / 22-09-2018 / 11:03:31 / Claus Gittinger"
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1280
    "Modified: / 22-09-2018 / 15:36:55 / Claus Gittinger"
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1281
!
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1282
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1283
indexTypeNameList
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1284
    <resource: #uiAspect>
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1285
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1286
    ^ self indexTypeList collectColumn:1
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1287
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1288
    "Created: / 22-09-2018 / 11:16:31 / Claus Gittinger"
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1289
    "Modified: / 22-09-2018 / 12:54:03 / Claus Gittinger"
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1290
!
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1291
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1292
instVarNamesHolder
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1293
    <resource: #uiAspect>
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1294
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1295
    instVarNamesHolder isNil ifTrue:[
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1296
        instVarNamesHolder := ValueHolder new.
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1297
    ].
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1298
    ^ instVarNamesHolder.
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1299
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1300
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1301
isCreatingClassHolder
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1302
    <resource: #uiAspect>
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1303
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1304
    isCreatingClassHolder isNil ifTrue:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1305
        isCreatingClassHolder := true asValue
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1306
    ].
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1307
    ^ isCreatingClassHolder.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1308
!
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1309
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1310
isCreatingPackageHolder
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1311
    ^ BlockValue forLogicalNot:self isCreatingClassHolder.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1312
!
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1313
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1314
languageHolder
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1315
    <resource: #uiAspect>
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1316
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1317
    |idx|
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1318
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1319
    languageHolder isNil ifTrue:[
9222
1d6e1f6086f1 changed:
Claus Gittinger <cg@exept.de>
parents: 9218
diff changeset
  1320
        (self listOfLanguages size == 1) ifTrue:[
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1321
            idx := 1.
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1322
        ] ifFalse:[
9222
1d6e1f6086f1 changed:
Claus Gittinger <cg@exept.de>
parents: 9218
diff changeset
  1323
            idx := self listOfLanguages indexOf:(LastLanguage ? 'Smalltalk').
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1324
        ].
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1325
        languageHolder := idx asValue.
9205
07015f8db981 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  1326
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1327
    ].
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1328
    ^ languageHolder.
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1329
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1330
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1331
listOfCategories
16752
090ac9d87a3d #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 16349
diff changeset
  1332
    ^ Smalltalk allClassCategories asNewOrderedCollection sort
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1333
!
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1334
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1335
listOfLanguages
9205
07015f8db981 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  1336
    ^ ProgrammingLanguage allSubclasses collect:[:l | l instance name].
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1337
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1338
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1339
listOfNamespaces
9205
07015f8db981 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  1340
    ^ ((NameSpace allNameSpacesIn:Smalltalk)
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1341
        asOrderedCollection
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1342
            collect:[:ns | ns name])
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1343
                sort
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1344
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1345
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1346
listOfPackages
16205
0560b9770c74 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 15397
diff changeset
  1347
    ^ Smalltalk allPackageIDs copy sort
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1348
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1349
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1350
listOfStereotypeSymbols
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1351
    "program readable list"
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1352
    ^ self stereotypeSpec collect:[:each | each isNil ifTrue:[nil] ifFalse:[each first]].
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1353
!
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1354
9218
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
  1355
listOfStereotypes
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1356
    "human readable list"
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1357
    ^ self stereotypeSpec collect:[:each | each isNil ifTrue:[nil] ifFalse:[each second]].
9218
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
  1358
!
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
  1359
9721
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
  1360
listOfSuperclasses
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
  1361
    <resource: #uiAspect>
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
  1362
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1363
    |l superClassName
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1364
     stereoTypeSymbol more
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1365
     includeObject includeModel includeApplicationModel includeView
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1366
     includeStandaloneStartup|
9721
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
  1367
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1368
    stereoTypeSymbol := self stereotypeSymbol.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1369
    
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1370
    includeObject := includeModel := includeApplicationModel := includeView := true.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1371
    includeStandaloneStartup := false.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1372
    
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1373
    stereoTypeSymbol = #'DataObject' ifTrue:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1374
        includeApplicationModel := includeView := false.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1375
    ].
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1376
    stereoTypeSymbol = #'Enumeration' ifTrue:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1377
        includeModel := includeApplicationModel := includeView := false.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1378
    ].
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1379
    stereoTypeSymbol = #'GUIApplication' ifTrue:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1380
        includeModel := includeView := includeObject := false.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1381
    ].
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1382
    stereoTypeSymbol = #'ConsoleProgram' ifTrue:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1383
        includeModel := includeApplicationModel := includeView := includeObject := false.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1384
        includeStandaloneStartup := true.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1385
    ].
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1386
    stereoTypeSymbol = #'SharedPool' ifTrue:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1387
        includeModel := includeApplicationModel := includeView := includeObject := false.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1388
    ].
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1389
    (stereoTypeSymbol = #'StartupClass') ifTrue:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1390
        includeModel := includeApplicationModel := includeView := includeObject := false.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1391
        includeStandaloneStartup := true.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1392
    ].
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1393
    stereoTypeSymbol = #'TestCase' ifTrue:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1394
        includeModel := includeApplicationModel := includeView := includeObject := false.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1395
    ].
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1396
    stereoTypeSymbol = #'WebService' ifTrue:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1397
        includeModel := includeApplicationModel := includeView := includeObject := false.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1398
    ].
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1399
    stereoTypeSymbol = #'Widget' ifTrue:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1400
        includeModel := includeApplicationModel := includeObject := false.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1401
    ].
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1402
    
9721
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
  1403
    l := OrderedCollection new.
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1404
    (includeObject and:[superClassName ~= 'Object']) ifTrue:[
9721
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
  1405
        l add:'Object'
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
  1406
    ].
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1407
    (includeModel and:[superClassName ~= 'Model']) ifTrue:[
9721
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
  1408
        l add:'Model'
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
  1409
    ].
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1410
    (includeView and:[superClassName ~= 'View']) ifTrue:[
9721
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
  1411
        l add:'View'
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
  1412
    ].
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1413
    (includeApplicationModel and:[superClassName ~= 'ApplicationModel']) ifTrue:[
9721
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
  1414
        l add:'ApplicationModel'
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
  1415
    ].
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1416
    
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1417
    includeStandaloneStartup ifTrue:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1418
        superClassName ~= 'StandaloneStartup' ifTrue:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1419
            l add:'StandaloneStartup'
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1420
        ].
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1421
        superClassName ~= 'StandaloneStartupHeadless' ifTrue:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1422
            l add:'StandaloneStartupHeadless'
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1423
        ].
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1424
    ].
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1425
    
17661
12cfa0179e2a #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17551
diff changeset
  1426
    more := SystemBrowser default visitedClassNamesHistory.
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1427
    more notEmptyOrNil ifTrue:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1428
        l add:'-'.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1429
        l addAll:more.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1430
    ].
9721
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
  1431
    ^ l
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
  1432
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
  1433
    "Created: / 30-01-2011 / 10:34:44 / cg"
17661
12cfa0179e2a #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 17551
diff changeset
  1434
    "Modified: / 01-09-2017 / 14:22:51 / cg"
9721
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
  1435
!
47aa8329ff01 care for metaClass in class wizard
Claus Gittinger <cg@exept.de>
parents: 9719
diff changeset
  1436
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1437
listOfSuperclassesHolder
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1438
    <resource: #uiAspect>
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1439
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1440
    listOfSuperclassesHolder isNil ifTrue:[
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1441
        listOfSuperclassesHolder := self listOfSuperclasses asValue.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1442
    ].
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1443
    ^ listOfSuperclassesHolder.
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1444
!
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1445
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1446
nameSpaceHolder
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1447
    <resource: #uiAspect>
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1448
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1449
    nameSpaceHolder isNil ifTrue:[
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1450
        nameSpaceHolder := ValueHolder new.
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1451
"/       nameSpaceHolder addDependent:self.
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1452
"/       nameSpaceHolder onChangeSend:#nameSpaceHolderChanged to:self.
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1453
    ].
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1454
    ^ nameSpaceHolder.
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1455
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1456
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1457
packageHolder
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1458
    <resource: #uiAspect>
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1459
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1460
    packageHolder isNil ifTrue:[
9216
cc5c43784db2 category
Claus Gittinger <cg@exept.de>
parents: 9211
diff changeset
  1461
        packageHolder := (LastPackage ? nil "PackageId noProjectID") asValue.
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1462
    ].
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1463
    ^ packageHolder.
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1464
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1465
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1466
recentlyVisitedClasses
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1467
    <resource: #uiAspect>
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1468
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1469
    ^ SystemBrowser visitedClassNamesHistory
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1470
!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1471
9218
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
  1472
stereotypeHolder
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
  1473
    <resource: #uiAspect>
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
  1474
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
  1475
    stereotypeHolder isNil ifTrue:[
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
  1476
        stereotypeHolder := ValueHolder new.
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
  1477
        stereotypeHolder onChangeSend:#stereotypeChanged to:self.
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
  1478
    ].
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
  1479
    ^ stereotypeHolder.
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
  1480
!
86ad5ddea7b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9216
diff changeset
  1481
16926
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1482
stereotypeSpec
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1483
    ^ #(
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1484
        ( nil '<none>' )
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1485
        ( DataObject 'Data Object' )
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1486
"/      ( Enumeration Enumeration )
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1487
        ( GUIApplication 'GUI Application')
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1488
        ( ConsoleProgram 'Console Program')
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1489
        ( SharedPool 'Shared Pool')
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1490
        ( TestCase TestCase )
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1491
        ( WebService 'Web Service' )
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1492
        ( Widget Widget)
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1493
        ( StartupClass 'Startup Class (main entry for standalone apps)' )
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1494
        nil
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1495
        ( GUIProject 'GUI Project')
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1496
        ( NonGUIProject 'Non-GUI Project')
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1497
        ( LibraryProject 'Library Project')
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1498
    )
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1499
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1500
    "Modified: / 27-01-2012 / 14:46:39 / cg"
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1501
!
a5e115fc2ba2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 16895
diff changeset
  1502
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1503
superclassNameHolder
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1504
    <resource: #uiAspect>
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1505
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1506
    superclassNameHolder isNil ifTrue:[
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1507
        superclassNameHolder := (LastSuperclass ? 'Object') asValue.
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1508
    ].
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1509
    ^ superclassNameHolder.
11224
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
  1510
6f7da28fcedd comment/format in: #doAccept
Claus Gittinger <cg@exept.de>
parents: 10590
diff changeset
  1511
    "Modified: / 27-01-2012 / 14:49:43 / cg"
18423
eaf1834500a2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 17903
diff changeset
  1512
    "Modified: / 22-09-2018 / 15:49:52 / Claus Gittinger"
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1513
! !
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1514
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1515
!NewClassWizardDialog class methodsFor:'documentation'!
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1516
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1517
version_CVS
16205
0560b9770c74 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 15397
diff changeset
  1518
    ^ '$Header$'
9195
6b6a9a7b2ff2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1519
! !
13941
f3193680050b class: Tools::NewClassWizardDialog
Claus Gittinger <cg@exept.de>
parents: 11224
diff changeset
  1520