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