Tools_OrganizerCanvas.st
author Claus Gittinger <cg@exept.de>
Wed, 20 Apr 2005 18:27:53 +0200
changeset 6269 c9bfca4d93dc
parent 6259 e440c14b02aa
child 6398 e44eeb14731e
permissions -rw-r--r--
metrics display
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2000 by eXept Software AG
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
	      All Rights Reserved
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
"{ Package: 'stx:libtool' }"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
"{ NameSpace: Tools }"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
NavigatorModel subclass:#OrganizerCanvas
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	instanceVariableNames:'projectListSlaveMode namespaceListSlaveMode categoryListSlaveMode
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
		classInheritanceListSlaveMode classListSlaveMode
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
		classHierarchyListSlaveMode organizerMode metaToggle
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
		notMetaToggle meta classList classCategoryDoubleClickChannel
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
		classDoubleClickChannel classGeneratorHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
		classGeneratorHolderFromClassCategory
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
		classGeneratorHolderFromClassHierarchy
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
		classGeneratorHolderFromProject classGeneratorHolderFromNamespace
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
		classCategoryListMenuHolder categoryListShown
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
		classCategoryListUpdateTrigger classListUpdateTrigger
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
		classListMenuHolder classHierarchyListMenuHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
		projectListMenuHolder variablesMenuHolder filterClassVars
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
		variableFilter packageFilter nameSpaceFilter hidePrivateClasses
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
		hideUnloadedClasses showClassPackages immediateUpdate
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
		metaToggleLabelHolder selectedCategories selectedClasses
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
		selectedNamespaces selectedProjects selectionChangeCondition
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
		nameSpaceFilterSelection markApplicationsHolder'
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
	classVariableNames:''
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
	poolDictionaries:''
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
	category:'Interface-Browsers-New'
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
!OrganizerCanvas class methodsFor:'documentation'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
copyright
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
 COPYRIGHT (c) 2000 by eXept Software AG
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
	      All Rights Reserved
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
 This software is furnished under a license and may be used
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
 only in accordance with the terms of that license and with the
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
 inclusion of the above copyright notice.   This software may not
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
 be provided or otherwise made available to, or used by, any
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
 other person.  No title to or ownership of the software is
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
 hereby transferred.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
!OrganizerCanvas class methodsFor:'interface specs'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
embeddedNameSpaceListSpec
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
    "This resource specification was automatically generated
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
     by the UIPainter of ST/X."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
    "Do not manually edit this!! If it is corrupted,
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
     the UIPainter may not be able to read the specification."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
    "
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
     UIPainter new openOnClass:OrganizerCanvas andSelector:#embeddedNameSpaceListSpec
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
     OrganizerCanvas new openInterface:#embeddedNameSpaceListSpec
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
    "
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
    <resource: #canvas>
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
    ^ 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
     #(#FullSpec
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
    74
	#name: #embeddedNameSpaceListSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
    75
	#window: 
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    76
       #(#WindowSpec
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
    77
	  #label: 'Organizer'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
    78
	  #name: 'Organizer'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
    79
	  #min: #(#Point 0 0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
    80
	  #max: #(#Point 1024 721)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
    81
	  #bounds: #(#Rectangle 218 175 518 475)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
    82
	)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
    83
	#component: 
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    84
       #(#SpecCollection
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
    85
	  #collection: #(
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
    86
	   #(#SubCanvasSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
    87
	      #name: 'NamespaceList2'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
    88
	      #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
    89
	      #level: 1
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
    90
	      #majorKey: #'NamespaceList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
    91
	      #subAspectHolders: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
    92
	     #(#Array
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    93
                
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
    94
	       #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
    95
		  #subAspect: #doubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
    96
		  #aspect: #nameSpaceFilterDoubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
    97
		) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
    98
	       #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
    99
		  #subAspect: #forceGeneratorTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   100
		  #aspect: #forceNamespaceGeneratorTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   101
		)
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   102
                
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   103
	       #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   104
		  #subAspect: #hideUnloadedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   105
		  #aspect: #hideUnloadedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   106
		) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   107
	       #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   108
		  #subAspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   109
		  #aspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   110
		)
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   111
                
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   112
	       #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   113
		  #subAspect: #menuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   114
		  #aspect: #nameSpaceListMenuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   115
		) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   116
	       #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   117
		  #subAspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   118
		  #aspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   119
		)
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   120
                
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   121
	       #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   122
		  #subAspect: #outGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   123
		  #aspect: #classGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   124
		) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   125
	       #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   126
		  #subAspect: #selectedNamespaces
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   127
		  #aspect: #nameSpaceFilterSelection
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   128
		)
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
                
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   130
	       #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   131
		  #subAspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   132
		  #aspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   133
		) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   134
	       #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   135
		  #subAspect: #slaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   136
		  #aspect: #popUpNameSpaceListSlaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   137
		)
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   138
                
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   139
	       #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   140
		  #subAspect: #updateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   141
		  #aspect: #nameSpaceListUpdateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   142
		)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   143
	      )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   144
	      #createNewApplication: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   145
	      #createNewBuilder: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   146
	      #postBuildCallback: #nameSpaceListWidgetWasBuilt:
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   147
	    )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   148
	   )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   149
         
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   150
	)
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   151
      )
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   152
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   153
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   154
windowSpec
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   155
    ^ self windowSpecNonHierarchical
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   156
    "/ ^ self windowSpecHierarchical
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   157
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   158
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   159
windowSpecHierarchical
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   160
    "This resource specification was automatically generated
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   161
     by the UIPainter of ST/X."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   162
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   163
    "Do not manually edit this!! If it is corrupted,
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   164
     the UIPainter may not be able to read the specification."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   165
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   166
    "
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   167
     UIPainter new openOnClass:OrganizerCanvas andSelector:#windowSpec
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   168
     OrganizerCanvas new openInterface:#windowSpec
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   169
     OrganizerCanvas open
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   170
    "
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   171
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   172
    <resource: #canvas>
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   173
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   174
    ^ 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   175
     #(#FullSpec
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   176
	#name: #windowSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   177
	#window: 
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   178
       #(#WindowSpec
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   179
	  #label: 'Organizer'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   180
	  #name: 'Organizer'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   181
	  #min: #(#Point 0 0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   182
	  #max: #(#Point 1024 721)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   183
	  #bounds: #(#Rectangle 16 46 316 346)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   184
	)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   185
	#component: 
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   186
       #(#SpecCollection
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   187
	  #collection: #(
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   188
	   #(#VariableHorizontalPanelSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   189
	      #name: 'CategoryNameSpaceAndProjectPanel'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   190
	      #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   191
	      #visibilityChannel: #classHierarchyOrInheritanceNotShown
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   192
	      #barWidth: 2
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   193
	      #showHandle: false
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   194
	      #component: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   195
	     #(#SpecCollection
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   196
		#collection: #(
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   197
		 #(#ViewSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   198
		    #name: 'LeftBox'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   199
		    #component: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   200
		   #(#SpecCollection
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   201
		      #collection: #(
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   202
		       #(#ViewSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   203
			  #name: 'ClassCategoryAndNamespaceFilterBox'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   204
			  #layout: #(#LayoutFrame 0 0 0 0 0 1 0 1)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   205
			  #visibilityChannel: #categoryListShown
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   206
			  #component: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   207
			 #(#SpecCollection
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   208
			    #collection: #(
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   209
			     #(#SubCanvasSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   210
				#name: 'ClassCategoryList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   211
				#layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 -25 1.0)
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   212
"/                                #majorKey: #'ClassCategoryList'
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   213
				#majorKey: #'HierarchicalClassCategoryList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   214
				#subAspectHolders: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   215
			       #(#Array
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   216
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   217
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   218
				    #subAspect: #doubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   219
				    #aspect: #classCategoryDoubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   220
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   221
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   222
				    #subAspect: #forceGeneratorTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   223
				    #aspect: #forceClassCategoryGeneratorTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   224
				  )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   225
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   226
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   227
				    #subAspect: #hideUnloadedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   228
				    #aspect: #hideUnloadedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   229
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   230
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   231
				    #subAspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   232
				    #aspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   233
				  )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   234
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   235
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   236
				    #subAspect: #menuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   237
				    #aspect: #classCategoryListMenuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   238
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   239
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   240
				    #subAspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   241
				    #aspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   242
				  )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   243
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   244
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   245
				    #subAspect: #outGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   246
				    #aspect: #classGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   247
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   248
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   249
				    #subAspect: #selectedCategories
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   250
				    #aspect: #selectedCategories
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   251
				  )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   252
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   253
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   254
				    #subAspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   255
				    #aspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   256
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   257
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   258
				    #subAspect: #slaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   259
				    #aspect: #categoryListSlaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   260
				  )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   261
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   262
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   263
				    #subAspect: #updateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   264
				    #aspect: #classCategoryListUpdateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   265
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   266
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   267
				    #subAspect: #nameSpaceFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   268
				    #aspect: #nameSpaceFilterSelection
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   269
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   270
				)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   271
				#createNewApplication: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   272
				#createNewBuilder: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   273
			      )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   274
			     #(#ExtendedComboBoxSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   275
				#name: 'NameSpaceFilterComboBox'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   276
				#layout: #(#LayoutFrame 0 0 -25 1 0 1 0 1)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   277
				#tabable: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   278
				#model: #nameSpaceFilterSelectedNameSpace
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   279
				#menuWidgetHolder: #nameSpaceListWidgetHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   280
				#miniScrollerHorizontal: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   281
				#menuSelector: #nameSpaceFilterPopUpMenu
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   282
			      )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   283
			     )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   284
                           
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   285
			  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   286
			)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   287
		       #(#SubCanvasSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   288
			  #name: 'NamespaceList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   289
			  #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   290
			  #initiallyInvisible: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   291
			  #visibilityChannel: #nameSpaceListShown
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   292
			  #majorKey: #'NamespaceList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   293
			  #subAspectHolders: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   294
			 #(#Array
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   295
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   296
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   297
			      #subAspect: #doubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   298
			      #aspect: #nameSpaceDoubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   299
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   300
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   301
			      #subAspect: #forceGeneratorTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   302
			      #aspect: #forceNamespaceGeneratorTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   303
			    )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   304
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   305
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   306
			      #subAspect: #hideUnloadedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   307
			      #aspect: #hideUnloadedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   308
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   309
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   310
			      #subAspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   311
			      #aspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   312
			    )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   313
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   314
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   315
			      #subAspect: #menuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   316
			      #aspect: #nameSpaceListMenuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   317
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   318
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   319
			      #subAspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   320
			      #aspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   321
			    )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   322
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   323
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   324
			      #subAspect: #outGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   325
			      #aspect: #classGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   326
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   327
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   328
			      #subAspect: #selectedNamespaces
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   329
			      #aspect: #selectedNamespaces
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   330
			    )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   331
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   332
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   333
			      #subAspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   334
			      #aspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   335
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   336
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   337
			      #subAspect: #slaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   338
			      #aspect: #nameSpaceListSlaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   339
			    )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   340
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   341
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   342
			      #subAspect: #updateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   343
			      #aspect: #nameSpaceListUpdateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   344
			    )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   345
			  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   346
			  #createNewApplication: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   347
			  #createNewBuilder: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   348
			)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   349
		       #(#SubCanvasSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   350
			  #name: 'ProjectList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   351
			  #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   352
			  #initiallyInvisible: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   353
			  #visibilityChannel: #projectListShown
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   354
			  #majorKey: #'HierarchicalProjectList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   355
			  #subAspectHolders: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   356
			 #(#Array
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   357
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   358
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   359
			      #subAspect: #doubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   360
			      #aspect: #projectDoubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   361
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   362
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   363
			      #subAspect: #forceGeneratorTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   364
			      #aspect: #forceProjectGeneratorTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   365
			    )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   366
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   367
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   368
			      #subAspect: #hideUnloadedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   369
			      #aspect: #hideUnloadedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   370
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   371
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   372
			      #subAspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   373
			      #aspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   374
			    )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   375
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   376
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   377
			      #subAspect: #menuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   378
			      #aspect: #projectListMenuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   379
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   380
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   381
			      #subAspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   382
			      #aspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   383
			    )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   384
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   385
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   386
			      #subAspect: #outGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   387
			      #aspect: #classGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   388
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   389
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   390
			      #subAspect: #selectedProjects
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   391
			      #aspect: #selectedProjects
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   392
			    )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   393
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   394
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   395
			      #subAspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   396
			      #aspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   397
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   398
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   399
			      #subAspect: #slaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   400
			      #aspect: #projectListSlaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   401
			    )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   402
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   403
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   404
			      #subAspect: #updateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   405
			      #aspect: #projectListUpdateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   406
			    )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   407
			  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   408
			  #createNewApplication: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   409
			  #createNewBuilder: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   410
			)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   411
		       )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   412
                     
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   413
		    )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   414
		  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   415
		 #(#ViewSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   416
		    #name: 'RightBox'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   417
		    #component: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   418
		   #(#SpecCollection
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   419
		      #collection: #(
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   420
		       #(#VariableVerticalPanelSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   421
			  #name: 'ClassAndVariablesPanel'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   422
			  #layout: #(#LayoutFrame 0 0 0 0 0 1 -25 1)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   423
			  #showHandle: false
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   424
			  #snapMode: #both
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   425
			  #handlePosition: #left
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   426
			  #component: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   427
			 #(#SpecCollection
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   428
			    #collection: #(
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   429
			     #(#SubCanvasSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   430
				#name: 'ClassList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   431
				#majorKey: #'ClassList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   432
				#minorKey: #windowSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   433
				#subAspectHolders: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   434
			       #(#Array
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   435
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   436
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   437
				    #subAspect: #doubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   438
				    #aspect: #classDoubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   439
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   440
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   441
				    #subAspect: #markApplicationsHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   442
				    #aspect: #markApplicationsHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   443
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   444
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   445
				    #subAspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   446
				    #aspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   447
				  )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   448
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   449
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   450
				    #subAspect: #showClassPackages
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   451
				    #aspect: #showClassPackages
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   452
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   453
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   454
				    #subAspect: #inGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   455
				    #aspect: #classGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   456
				  )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   457
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   458
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   459
				    #subAspect: #menuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   460
				    #aspect: #classListMenuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   461
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   462
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   463
				    #subAspect: #meta
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   464
				    #aspect: #meta
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   465
				  )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   466
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   467
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   468
				    #subAspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   469
				    #aspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   470
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   471
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   472
				    #subAspect: #outGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   473
				    #aspect: #outGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   474
				  )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   475
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   476
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   477
				    #subAspect: #packageFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   478
				    #aspect: #packageFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   479
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   480
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   481
				    #subAspect: #nameSpaceFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   482
				    #aspect: #nameSpaceFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   483
				  )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   484
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   485
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   486
				    #subAspect: #selectedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   487
				    #aspect: #selectedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   488
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   489
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   490
				    #subAspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   491
				    #aspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   492
				  )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   493
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   494
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   495
				    #subAspect: #slaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   496
				    #aspect: #classListSlaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   497
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   498
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   499
				    #subAspect: #updateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   500
				    #aspect: #classListUpdateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   501
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   502
				)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   503
				#createNewApplication: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   504
				#createNewBuilder: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   505
			      )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   506
			     #(#SubCanvasSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   507
				#name: 'VariableList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   508
				#majorKey: #'VariableList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   509
				#subAspectHolders: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   510
			       #(#Array
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   511
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   512
				    #subAspect: #doubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   513
				    #aspect: #variableDoubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   514
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   515
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   516
				    #subAspect: #classHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   517
				    #aspect: #selectedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   518
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   519
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   520
				    #subAspect: #menuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   521
				    #aspect: #variablesMenuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   522
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   523
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   524
				    #subAspect: #selectedVariables
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   525
				    #aspect: #variableFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   526
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   527
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   528
				    #subAspect: #showClassVarsInVariableList
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   529
				    #aspect: #filterClassVars
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   530
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   531
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   532
				    #subAspect: #sortVariablesByName
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   533
				    #aspect: #variableListSortByName
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   534
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   535
				)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   536
				#createNewApplication: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   537
				#createNewBuilder: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   538
			      )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   539
			     )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   540
                           
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   541
			  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   542
			  #handles: #(#Any 0.5 1.0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   543
			)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   544
		       #(#UISubSpecification
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   545
			  #name: 'MetaToggleSpec2'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   546
			  #layout: #(#LayoutFrame 0 0 -25 1 0 1 0 1)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   547
			  #minorKey: #metaSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   548
			)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   549
		       )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   550
                     
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   551
		    )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   552
		  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   553
		 )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   554
               
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   555
	      )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   556
	      #handles: #(#Any 0.5 1.0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   557
	    )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   558
	   #(#ViewSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   559
	      #name: 'ClassHierarchyOrInheritanceBox'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   560
	      #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   561
	      #initiallyInvisible: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   562
	      #visibilityChannel: #classHierarchyOrInheritanceShown
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   563
	      #component: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   564
	     #(#SpecCollection
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   565
		#collection: #(
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   566
		 #(#VariableVerticalPanelSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   567
		    #name: 'VariableVerticalPanel2'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   568
		    #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 -25 1.0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   569
		    #showHandle: false
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   570
		    #snapMode: #both
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   571
		    #handlePosition: #left
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   572
		    #component: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   573
		   #(#SpecCollection
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   574
		      #collection: #(
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   575
		       #(#ViewSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   576
			  #name: 'HierarchyOrInheritanceBox'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   577
			  #component: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   578
			 #(#SpecCollection
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   579
			    #collection: #(
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   580
			     #(#SubCanvasSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   581
				#name: 'ClassHierarchyList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   582
				#layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   583
				#visibilityChannel: #classHierarchyShown
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   584
				#majorKey: #'HierarchicalClassList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   585
				#subAspectHolders: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   586
			       #(#Array
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   587
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   588
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   589
				    #subAspect: #doubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   590
				    #aspect: #classDoubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   591
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   592
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   593
				    #subAspect: #forceGeneratorTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   594
				    #aspect: #forceClassInheritanceGeneratorTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   595
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   596
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   597
				    #subAspect: #hideUnloadedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   598
				    #aspect: #hideUnloadedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   599
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   600
	       #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   601
		  #subAspect: #markApplicationsHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   602
		  #aspect: #markApplicationsHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   603
		) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   604
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   605
				    #subAspect: #showClassPackages
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   606
				    #aspect: #showClassPackages
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   607
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   608
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   609
				    #subAspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   610
				    #aspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   611
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   612
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   613
				    #subAspect: #menuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   614
				    #aspect: #classInheritanceListMenuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   615
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   616
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   617
				    #subAspect: #meta
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   618
				    #aspect: #meta
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   619
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   620
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   621
				    #subAspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   622
				    #aspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   623
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   624
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   625
				    #subAspect: #outGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   626
				    #aspect: #outGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   627
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   628
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   629
				    #subAspect: #packageFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   630
				    #aspect: #packageFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   631
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   632
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   633
				    #subAspect: #nameSpaceFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   634
				    #aspect: #nameSpaceFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   635
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   636
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   637
				    #subAspect: #selectedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   638
				    #aspect: #selectedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   639
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   640
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   641
				    #subAspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   642
				    #aspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   643
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   644
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   645
				    #subAspect: #slaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   646
				    #aspect: #classHierarchyListSlaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   647
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   648
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   649
				    #subAspect: #topClassHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   650
				    #aspect: #classHierarchyTopClass
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   651
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   652
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   653
				    #subAspect: #updateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   654
				    #aspect: #classHierarchyUpdateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   655
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   656
				)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   657
				#createNewApplication: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   658
				#createNewBuilder: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   659
			      )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   660
			     #(#SubCanvasSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   661
				#name: 'ClassInheritanceList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   662
				#layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   663
				#visibilityChannel: #classInheritanceShown
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   664
				#majorKey: #'InheritanceClassList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   665
				#subAspectHolders: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   666
			       #(#Array
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   667
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   668
				    #subAspect: #doubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   669
				    #aspect: #classDoubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   670
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   671
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   672
				    #subAspect: #forceGeneratorTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   673
				    #aspect: #forceClassInheritanceGeneratorTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   674
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   675
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   676
				    #subAspect: #hideUnloadedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   677
				    #aspect: #hideUnloadedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   678
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   679
	       #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   680
		  #subAspect: #markApplicationsHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   681
		  #aspect: #markApplicationsHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   682
		) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   683
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   684
				    #subAspect: #showClassPackages
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   685
				    #aspect: #showClassPackages
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   686
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   687
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   688
				    #subAspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   689
				    #aspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   690
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   691
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   692
				    #subAspect: #menuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   693
				    #aspect: #classInheritanceListMenuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   694
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   695
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   696
				    #subAspect: #meta
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   697
				    #aspect: #meta
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   698
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   699
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   700
				    #subAspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   701
				    #aspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   702
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   703
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   704
				    #subAspect: #outGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   705
				    #aspect: #outGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   706
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   707
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   708
				    #subAspect: #packageFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   709
				    #aspect: #packageFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   710
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   711
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   712
				    #subAspect: #nameSpaceFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   713
				    #aspect: #nameSpaceFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   714
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   715
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   716
				    #subAspect: #selectedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   717
				    #aspect: #selectedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   718
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   719
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   720
				    #subAspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   721
				    #aspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   722
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   723
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   724
				    #subAspect: #slaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   725
				    #aspect: #classInheritanceListSlaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   726
				  )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   727
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   728
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   729
				    #subAspect: #topClassHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   730
				    #aspect: #classHierarchyTopClass
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   731
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   732
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   733
				    #subAspect: #updateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   734
				    #aspect: #classHierarchyUpdateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   735
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   736
				)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   737
				#createNewApplication: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   738
				#createNewBuilder: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   739
			      )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   740
			     )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   741
                           
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   742
			  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   743
			)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   744
		       #(#SubCanvasSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   745
			  #name: 'VariableList2'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   746
			  #majorKey: #'VariableList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   747
			  #subAspectHolders: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   748
			 #(#Array
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   749
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   750
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   751
			      #subAspect: #doubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   752
			      #aspect: #variableDoubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   753
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   754
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   755
			      #subAspect: #classHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   756
			      #aspect: #selectedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   757
			    )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   758
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   759
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   760
			      #subAspect: #menuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   761
			      #aspect: #variablesMenuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   762
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   763
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   764
			      #subAspect: #slaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   765
			      #aspect: #classHierarchyListSlaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   766
			    )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   767
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   768
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   769
			      #subAspect: #selectedVariables
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   770
			      #aspect: #variableFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   771
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   772
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   773
			      #subAspect: #showClassVarsInVariableList
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   774
			      #aspect: #filterClassVars
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   775
			    )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   776
			  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   777
			  #createNewApplication: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   778
			  #createNewBuilder: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   779
			)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   780
		       )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   781
                     
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   782
		    )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   783
		    #handles: #(#Any 0.5 1.0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   784
		  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   785
		 #(#SubCanvasSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   786
		    #name: 'MetaToggles1'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   787
		    #layout: #(#LayoutFrame 0 0.0 -25 1 0 1.0 0 1)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   788
		    #hasHorizontalScrollBar: false
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   789
		    #hasVerticalScrollBar: false
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   790
		    #minorKey: #metaSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   791
		  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   792
		 )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   793
               
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   794
	      )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   795
	    )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   796
	   )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   797
         
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   798
	)
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   799
      )
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   800
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   801
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   802
windowSpecNonHierarchical
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   803
    "This resource specification was automatically generated
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   804
     by the UIPainter of ST/X."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   805
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   806
    "Do not manually edit this!! If it is corrupted,
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   807
     the UIPainter may not be able to read the specification."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   808
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   809
    "
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   810
     UIPainter new openOnClass:OrganizerCanvas andSelector:#windowSpec
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   811
     OrganizerCanvas new openInterface:#windowSpec
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   812
     OrganizerCanvas open
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   813
    "
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   814
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   815
    <resource: #canvas>
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   816
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   817
    ^ 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   818
     #(#FullSpec
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   819
	#name: #windowSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   820
	#window: 
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   821
       #(#WindowSpec
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   822
	  #label: 'Organizer'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   823
	  #name: 'Organizer'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   824
	  #min: #(#Point 0 0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   825
	  #max: #(#Point 1024 721)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   826
	  #bounds: #(#Rectangle 16 46 316 346)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   827
	)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   828
	#component: 
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   829
       #(#SpecCollection
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   830
	  #collection: #(
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   831
	   #(#VariableHorizontalPanelSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   832
	      #name: 'CategoryNameSpaceAndProjectPanel'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   833
	      #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   834
	      #visibilityChannel: #classHierarchyOrInheritanceNotShown
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   835
	      #barWidth: 2
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   836
	      #showHandle: false
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   837
	      #component: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   838
	     #(#SpecCollection
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   839
		#collection: #(
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   840
		 #(#ViewSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   841
		    #name: 'LeftBox'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   842
		    #component: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   843
		   #(#SpecCollection
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   844
		      #collection: #(
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   845
		       #(#ViewSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   846
			  #name: 'ClassCategoryAndNamespaceFilterBox'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   847
			  #layout: #(#LayoutFrame 0 0 0 0 0 1 0 1)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   848
			  #visibilityChannel: #categoryListShown
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   849
			  #component: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   850
			 #(#SpecCollection
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   851
			    #collection: #(
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   852
			     #(#SubCanvasSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   853
				#name: 'ClassCategoryList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   854
				#layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 -25 1.0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   855
				#majorKey: #'ClassCategoryList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   856
				#subAspectHolders: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   857
			       #(#Array
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   858
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   859
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   860
				    #subAspect: #doubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   861
				    #aspect: #classCategoryDoubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   862
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   863
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   864
				    #subAspect: #forceGeneratorTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   865
				    #aspect: #forceClassCategoryGeneratorTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   866
				  )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   867
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   868
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   869
				    #subAspect: #hideUnloadedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   870
				    #aspect: #hideUnloadedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   871
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   872
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   873
				    #subAspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   874
				    #aspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   875
				  )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   876
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   877
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   878
				    #subAspect: #menuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   879
				    #aspect: #classCategoryListMenuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   880
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   881
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   882
				    #subAspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   883
				    #aspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   884
				  )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   885
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   886
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   887
				    #subAspect: #outGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   888
				    #aspect: #classGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   889
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   890
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   891
				    #subAspect: #selectedCategories
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   892
				    #aspect: #selectedCategories
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   893
				  )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   894
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   895
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   896
				    #subAspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   897
				    #aspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   898
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   899
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   900
				    #subAspect: #slaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   901
				    #aspect: #categoryListSlaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   902
				  )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   903
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   904
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   905
				    #subAspect: #updateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   906
				    #aspect: #classCategoryListUpdateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   907
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   908
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   909
				    #subAspect: #nameSpaceFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   910
				    #aspect: #nameSpaceFilterSelection
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   911
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   912
				)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   913
				#createNewApplication: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   914
				#createNewBuilder: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   915
			      )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   916
			     #(#ExtendedComboBoxSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   917
				#name: 'NameSpaceFilterComboBox'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   918
				#layout: #(#LayoutFrame 0 0 -25 1 0 1 0 1)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   919
				#tabable: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   920
				#model: #nameSpaceFilterSelectedNameSpace
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   921
				#menuWidgetHolder: #nameSpaceListWidgetHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   922
				#miniScrollerHorizontal: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   923
				#menuSelector: #nameSpaceFilterPopUpMenu
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   924
			      )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   925
			     )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   926
                           
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   927
			  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   928
			)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   929
		       #(#SubCanvasSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   930
			  #name: 'NamespaceList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   931
			  #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   932
			  #initiallyInvisible: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   933
			  #visibilityChannel: #nameSpaceListShown
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   934
			  #majorKey: #'NamespaceList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   935
			  #subAspectHolders: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   936
			 #(#Array
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   937
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   938
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   939
			      #subAspect: #doubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   940
			      #aspect: #nameSpaceDoubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   941
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   942
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   943
			      #subAspect: #forceGeneratorTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   944
			      #aspect: #forceNamespaceGeneratorTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   945
			    )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   946
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   947
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   948
			      #subAspect: #hideUnloadedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   949
			      #aspect: #hideUnloadedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   950
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   951
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   952
			      #subAspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   953
			      #aspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   954
			    )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   955
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   956
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   957
			      #subAspect: #menuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   958
			      #aspect: #nameSpaceListMenuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   959
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   960
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   961
			      #subAspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   962
			      #aspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   963
			    )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   964
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   965
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   966
			      #subAspect: #outGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   967
			      #aspect: #classGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   968
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   969
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   970
			      #subAspect: #selectedNamespaces
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   971
			      #aspect: #selectedNamespaces
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   972
			    )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   973
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   974
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   975
			      #subAspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   976
			      #aspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   977
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   978
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   979
			      #subAspect: #slaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   980
			      #aspect: #nameSpaceListSlaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   981
			    )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   982
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   983
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   984
			      #subAspect: #updateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   985
			      #aspect: #nameSpaceListUpdateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   986
			    )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   987
			  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   988
			  #createNewApplication: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   989
			  #createNewBuilder: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   990
			)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   991
		       #(#SubCanvasSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   992
			  #name: 'ProjectList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   993
			  #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   994
			  #initiallyInvisible: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   995
			  #visibilityChannel: #projectListShown
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   996
			  #majorKey: #'HierarchicalProjectList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   997
			  #subAspectHolders: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
   998
			 #(#Array
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   999
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1000
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1001
			      #subAspect: #doubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1002
			      #aspect: #projectDoubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1003
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1004
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1005
			      #subAspect: #forceGeneratorTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1006
			      #aspect: #forceProjectGeneratorTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1007
			    )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1008
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1009
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1010
			      #subAspect: #hideUnloadedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1011
			      #aspect: #hideUnloadedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1012
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1013
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1014
			      #subAspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1015
			      #aspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1016
			    )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1017
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1018
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1019
			      #subAspect: #menuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1020
			      #aspect: #projectListMenuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1021
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1022
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1023
			      #subAspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1024
			      #aspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1025
			    )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1026
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1027
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1028
			      #subAspect: #outGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1029
			      #aspect: #classGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1030
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1031
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1032
			      #subAspect: #selectedProjects
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1033
			      #aspect: #selectedProjects
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1034
			    )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1035
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1036
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1037
			      #subAspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1038
			      #aspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1039
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1040
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1041
			      #subAspect: #slaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1042
			      #aspect: #projectListSlaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1043
			    )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1044
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1045
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1046
			      #subAspect: #updateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1047
			      #aspect: #projectListUpdateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1048
			    )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1049
			  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1050
			  #createNewApplication: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1051
			  #createNewBuilder: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1052
			)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1053
		       )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1054
                     
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1055
		    )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1056
		  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1057
		 #(#ViewSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1058
		    #name: 'RightBox'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1059
		    #component: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1060
		   #(#SpecCollection
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1061
		      #collection: #(
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1062
		       #(#VariableVerticalPanelSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1063
			  #name: 'ClassAndVariablesPanel'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1064
			  #layout: #(#LayoutFrame 0 0 0 0 0 1 -25 1)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1065
			  #showHandle: false
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1066
			  #snapMode: #both
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1067
			  #handlePosition: #left
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1068
			  #component: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1069
			 #(#SpecCollection
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1070
			    #collection: #(
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1071
			     #(#SubCanvasSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1072
				#name: 'ClassList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1073
				#majorKey: #'ClassList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1074
				#minorKey: #windowSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1075
				#subAspectHolders: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1076
			       #(#Array
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1077
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1078
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1079
				    #subAspect: #doubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1080
				    #aspect: #classDoubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1081
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1082
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1083
				    #subAspect: #markApplicationsHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1084
				    #aspect: #markApplicationsHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1085
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1086
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1087
				    #subAspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1088
				    #aspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1089
				  )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1090
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1091
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1092
				    #subAspect: #showClassPackages
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1093
				    #aspect: #showClassPackages
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1094
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1095
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1096
				    #subAspect: #inGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1097
				    #aspect: #classGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1098
				  )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1099
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1100
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1101
				    #subAspect: #menuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1102
				    #aspect: #classListMenuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1103
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1104
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1105
				    #subAspect: #meta
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1106
				    #aspect: #meta
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1107
				  )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1108
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1109
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1110
				    #subAspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1111
				    #aspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1112
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1113
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1114
				    #subAspect: #outGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1115
				    #aspect: #outGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1116
				  )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1117
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1118
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1119
				    #subAspect: #packageFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1120
				    #aspect: #packageFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1121
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1122
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1123
				    #subAspect: #nameSpaceFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1124
				    #aspect: #nameSpaceFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1125
				  )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1126
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1127
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1128
				    #subAspect: #selectedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1129
				    #aspect: #selectedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1130
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1131
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1132
				    #subAspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1133
				    #aspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1134
				  )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1135
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1136
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1137
				    #subAspect: #slaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1138
				    #aspect: #classListSlaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1139
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1140
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1141
				    #subAspect: #updateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1142
				    #aspect: #classListUpdateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1143
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1144
				)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1145
				#createNewApplication: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1146
				#createNewBuilder: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1147
			      )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1148
			     #(#SubCanvasSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1149
				#name: 'VariableList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1150
				#majorKey: #'VariableList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1151
				#subAspectHolders: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1152
			       #(#Array
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1153
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1154
				    #subAspect: #doubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1155
				    #aspect: #variableDoubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1156
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1157
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1158
				    #subAspect: #classHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1159
				    #aspect: #selectedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1160
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1161
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1162
				    #subAspect: #menuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1163
				    #aspect: #variablesMenuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1164
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1165
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1166
				    #subAspect: #selectedVariables
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1167
				    #aspect: #variableFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1168
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1169
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1170
				    #subAspect: #showClassVarsInVariableList
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1171
				    #aspect: #filterClassVars
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1172
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1173
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1174
				    #subAspect: #sortVariablesByName
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1175
				    #aspect: #variableListSortByName
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1176
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1177
				)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1178
				#createNewApplication: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1179
				#createNewBuilder: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1180
			      )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1181
			     )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1182
                           
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1183
			  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1184
			  #handles: #(#Any 0.5 1.0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1185
			)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1186
		       #(#UISubSpecification
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1187
			  #name: 'MetaToggleSpec2'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1188
			  #layout: #(#LayoutFrame 0 0 -25 1 0 1 0 1)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1189
			  #minorKey: #metaSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1190
			)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1191
		       )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1192
                     
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1193
		    )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1194
		  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1195
		 )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1196
               
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1197
	      )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1198
	      #handles: #(#Any 0.5 1.0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1199
	    )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1200
	   #(#ViewSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1201
	      #name: 'ClassHierarchyOrInheritanceBox'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1202
	      #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1203
	      #initiallyInvisible: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1204
	      #visibilityChannel: #classHierarchyOrInheritanceShown
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1205
	      #component: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1206
	     #(#SpecCollection
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1207
		#collection: #(
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1208
		 #(#VariableVerticalPanelSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1209
		    #name: 'VariableVerticalPanel2'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1210
		    #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 -25 1.0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1211
		    #showHandle: false
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1212
		    #snapMode: #both
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1213
		    #handlePosition: #left
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1214
		    #component: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1215
		   #(#SpecCollection
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1216
		      #collection: #(
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1217
		       #(#ViewSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1218
			  #name: 'HierarchyOrInheritanceBox'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1219
			  #component: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1220
			 #(#SpecCollection
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1221
			    #collection: #(
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1222
			     #(#SubCanvasSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1223
				#name: 'ClassHierarchyList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1224
				#layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1225
				#visibilityChannel: #classHierarchyShown
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1226
				#majorKey: #'HierarchicalClassList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1227
				#subAspectHolders: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1228
			       #(#Array
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1229
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1230
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1231
				    #subAspect: #doubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1232
				    #aspect: #classDoubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1233
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1234
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1235
				    #subAspect: #forceGeneratorTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1236
				    #aspect: #forceClassInheritanceGeneratorTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1237
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1238
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1239
				    #subAspect: #hideUnloadedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1240
				    #aspect: #hideUnloadedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1241
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1242
	       #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1243
		  #subAspect: #markApplicationsHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1244
		  #aspect: #markApplicationsHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1245
		) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1246
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1247
				    #subAspect: #showClassPackages
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1248
				    #aspect: #showClassPackages
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1249
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1250
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1251
				    #subAspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1252
				    #aspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1253
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1254
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1255
				    #subAspect: #menuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1256
				    #aspect: #classInheritanceListMenuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1257
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1258
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1259
				    #subAspect: #meta
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1260
				    #aspect: #meta
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1261
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1262
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1263
				    #subAspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1264
				    #aspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1265
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1266
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1267
				    #subAspect: #outGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1268
				    #aspect: #outGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1269
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1270
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1271
				    #subAspect: #packageFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1272
				    #aspect: #packageFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1273
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1274
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1275
				    #subAspect: #nameSpaceFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1276
				    #aspect: #nameSpaceFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1277
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1278
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1279
				    #subAspect: #selectedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1280
				    #aspect: #selectedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1281
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1282
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1283
				    #subAspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1284
				    #aspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1285
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1286
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1287
				    #subAspect: #slaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1288
				    #aspect: #classHierarchyListSlaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1289
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1290
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1291
				    #subAspect: #topClassHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1292
				    #aspect: #classHierarchyTopClass
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1293
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1294
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1295
				    #subAspect: #updateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1296
				    #aspect: #classHierarchyUpdateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1297
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1298
				)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1299
				#createNewApplication: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1300
				#createNewBuilder: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1301
			      )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1302
			     #(#SubCanvasSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1303
				#name: 'ClassInheritanceList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1304
				#layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1305
				#visibilityChannel: #classInheritanceShown
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1306
				#majorKey: #'InheritanceClassList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1307
				#subAspectHolders: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1308
			       #(#Array
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1309
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1310
				    #subAspect: #doubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1311
				    #aspect: #classDoubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1312
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1313
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1314
				    #subAspect: #forceGeneratorTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1315
				    #aspect: #forceClassInheritanceGeneratorTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1316
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1317
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1318
				    #subAspect: #hideUnloadedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1319
				    #aspect: #hideUnloadedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1320
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1321
	       #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1322
		  #subAspect: #markApplicationsHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1323
		  #aspect: #markApplicationsHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1324
		) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1325
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1326
				    #subAspect: #showClassPackages
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1327
				    #aspect: #showClassPackages
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1328
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1329
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1330
				    #subAspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1331
				    #aspect: #immediateUpdate
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1332
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1333
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1334
				    #subAspect: #menuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1335
				    #aspect: #classInheritanceListMenuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1336
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1337
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1338
				    #subAspect: #meta
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1339
				    #aspect: #meta
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1340
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1341
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1342
				    #subAspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1343
				    #aspect: #organizerMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1344
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1345
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1346
				    #subAspect: #outGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1347
				    #aspect: #outGeneratorHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1348
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1349
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1350
				    #subAspect: #packageFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1351
				    #aspect: #packageFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1352
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1353
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1354
				    #subAspect: #nameSpaceFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1355
				    #aspect: #nameSpaceFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1356
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1357
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1358
				    #subAspect: #selectedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1359
				    #aspect: #selectedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1360
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1361
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1362
				    #subAspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1363
				    #aspect: #selectionChangeCondition
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1364
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1365
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1366
				    #subAspect: #slaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1367
				    #aspect: #classInheritanceListSlaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1368
				  )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1369
                                  
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1370
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1371
				    #subAspect: #topClassHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1372
				    #aspect: #classHierarchyTopClass
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1373
				  ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1374
				 #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1375
				    #subAspect: #updateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1376
				    #aspect: #classHierarchyUpdateTrigger
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1377
				  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1378
				)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1379
				#createNewApplication: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1380
				#createNewBuilder: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1381
			      )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1382
			     )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1383
                           
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1384
			  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1385
			)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1386
		       #(#SubCanvasSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1387
			  #name: 'VariableList2'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1388
			  #majorKey: #'VariableList'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1389
			  #subAspectHolders: 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1390
			 #(#Array
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1391
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1392
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1393
			      #subAspect: #doubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1394
			      #aspect: #variableDoubleClickChannel
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1395
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1396
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1397
			      #subAspect: #classHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1398
			      #aspect: #selectedClasses
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1399
			    )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1400
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1401
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1402
			      #subAspect: #menuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1403
			      #aspect: #variablesMenuHolder
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1404
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1405
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1406
			      #subAspect: #slaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1407
			      #aspect: #classHierarchyListSlaveMode
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1408
			    )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1409
                            
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1410
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1411
			      #subAspect: #selectedVariables
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1412
			      #aspect: #variableFilter
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1413
			    ) 
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1414
			   #(#SubChannelInfoSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1415
			      #subAspect: #showClassVarsInVariableList
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1416
			      #aspect: #filterClassVars
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1417
			    )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1418
			  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1419
			  #createNewApplication: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1420
			  #createNewBuilder: true
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1421
			)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1422
		       )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1423
                     
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1424
		    )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1425
		    #handles: #(#Any 0.5 1.0)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1426
		  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1427
		 #(#SubCanvasSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1428
		    #name: 'MetaToggles1'
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1429
		    #layout: #(#LayoutFrame 0 0.0 -25 1 0 1.0 0 1)
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1430
		    #hasHorizontalScrollBar: false
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1431
		    #hasVerticalScrollBar: false
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1432
		    #minorKey: #metaSpec
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1433
		  )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1434
		 )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1435
               
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1436
	      )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1437
	    )
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1438
	   )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1439
         
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
  1440
	)
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1441
      )
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1442
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1443
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1444
windowSpecWithoutMetaToggles
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1445
    "This resource specification was automatically generated
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1446
     by the UIPainter of ST/X."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1447
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1448
    "Do not manually edit this!! If it is corrupted,
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1449
     the UIPainter may not be able to read the specification."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1450
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1451
    "
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1452
     UIPainter new openOnClass:OrganizerCanvas andSelector:#windowSpecWithoutMetaToggles
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1453
     OrganizerCanvas new openInterface:#windowSpecWithoutMetaToggles
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1454
    "
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1455
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1456
    <resource: #canvas>
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1457
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1458
    ^ 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1459
     #(#FullSpec
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1460
        #name: #windowSpecWithoutMetaToggles
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1461
        #window: 
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1462
       #(#WindowSpec
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1463
          #label: 'Organizer'
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1464
          #name: 'Organizer'
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1465
          #min: #(#Point 0 0)
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1466
          #max: #(#Point 1024 721)
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1467
          #bounds: #(#Rectangle 13 23 313 323)
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1468
        )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1469
        #component: 
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1470
       #(#SpecCollection
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1471
          #collection: #(
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1472
           #(#SubCanvasSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1473
              #name: 'ClassHierarchyList'
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1474
              #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1475
              #visibilityChannel: #classHierarchyShown
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1476
              #majorKey: #'HierarchicalClassList'
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1477
              #minorKey: #windowSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1478
              #subAspectHolders: 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1479
             #(#Array
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1480
                
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1481
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1482
                  #subAspect: #doubleClickChannel
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1483
                  #aspect: #classDoubleClickChannel
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1484
                ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1485
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1486
                  #subAspect: #forceGeneratorTrigger
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1487
                  #aspect: #forceClassInheritanceGeneratorTrigger
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1488
                )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1489
                
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1490
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1491
                  #subAspect: #hideUnloadedClasses
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1492
                  #aspect: #hideUnloadedClasses
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1493
                ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1494
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1495
                  #subAspect: #markApplicationsHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1496
                  #aspect: #markApplicationsHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1497
                ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1498
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1499
                  #subAspect: #showClassPackages
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1500
                  #aspect: #showClassPackages
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1501
                ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1502
                     #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1503
                        #subAspect: #showMethodInheritance
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1504
                        #aspect: #showMethodInheritance
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1505
                      )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1506
                     #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1507
                        #subAspect: #showMethodComplexity
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1508
                        #aspect: #showMethodComplexity
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1509
                      )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1510
                     #(#SubChannelInfoSpec
6269
c9bfca4d93dc metrics display
Claus Gittinger <cg@exept.de>
parents: 6259
diff changeset
  1511
                        #subAspect: #showMethodTypeIcon
c9bfca4d93dc metrics display
Claus Gittinger <cg@exept.de>
parents: 6259
diff changeset
  1512
                        #aspect: #showMethodTypeIcon
c9bfca4d93dc metrics display
Claus Gittinger <cg@exept.de>
parents: 6259
diff changeset
  1513
                      )
c9bfca4d93dc metrics display
Claus Gittinger <cg@exept.de>
parents: 6259
diff changeset
  1514
                     #(#SubChannelInfoSpec
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1515
                        #subAspect: #methodVisibilityHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1516
                        #aspect: #methodVisibilityHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1517
                      )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1518
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1519
                  #subAspect: #immediateUpdate
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1520
                  #aspect: #immediateUpdate
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1521
                )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1522
                
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1523
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1524
                  #subAspect: #menuHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1525
                  #aspect: #classInheritanceListMenuHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1526
                ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1527
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1528
                  #subAspect: #meta
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1529
                  #aspect: #meta
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1530
                )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1531
                
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1532
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1533
                  #subAspect: #organizerMode
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1534
                  #aspect: #organizerMode
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1535
                ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1536
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1537
                  #subAspect: #outGeneratorHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1538
                  #aspect: #outGeneratorHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1539
                )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1540
                
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1541
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1542
                  #subAspect: #packageFilter
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1543
                  #aspect: #packageFilter
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1544
                ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1545
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1546
                  #subAspect: #nameSpaceFilter
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1547
                  #aspect: #nameSpaceFilter
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1548
                ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1549
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1550
                  #subAspect: #selectedClasses
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1551
                  #aspect: #selectedClasses
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1552
                )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1553
                
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1554
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1555
                  #subAspect: #selectionChangeCondition
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1556
                  #aspect: #selectionChangeCondition
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1557
                ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1558
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1559
                  #subAspect: #slaveMode
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1560
                  #aspect: #classInheritanceListSlaveMode
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1561
                )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1562
                
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1563
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1564
                  #subAspect: #topClassHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1565
                  #aspect: #classHierarchyTopClass
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1566
                ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1567
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1568
                  #subAspect: #updateTrigger
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1569
                  #aspect: #classHierarchyUpdateTrigger
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1570
                )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1571
              )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1572
              #createNewApplication: true
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1573
              #createNewBuilder: true
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1574
            )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1575
           #(#SubCanvasSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1576
              #name: 'ClassInheritanceList'
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1577
              #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1578
              #visibilityChannel: #classInheritanceShown
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1579
              #majorKey: #'InheritanceClassList'
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1580
              #minorKey: #windowSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1581
              #subAspectHolders: 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1582
             #(#Array
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1583
                
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1584
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1585
                  #subAspect: #doubleClickChannel
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1586
                  #aspect: #classDoubleClickChannel
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1587
                ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1588
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1589
                  #subAspect: #forceGeneratorTrigger
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1590
                  #aspect: #forceClassInheritanceGeneratorTrigger
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1591
                )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1592
                
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1593
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1594
                  #subAspect: #hideUnloadedClasses
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1595
                  #aspect: #hideUnloadedClasses
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1596
                ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1597
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1598
                  #subAspect: #markApplicationsHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1599
                  #aspect: #markApplicationsHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1600
                ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1601
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1602
                  #subAspect: #immediateUpdate
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1603
                  #aspect: #immediateUpdate
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1604
                )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1605
                
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1606
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1607
                  #subAspect: #menuHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1608
                  #aspect: #classInheritanceListMenuHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1609
                ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1610
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1611
                  #subAspect: #meta
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1612
                  #aspect: #meta
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1613
                )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1614
                
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1615
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1616
                  #subAspect: #organizerMode
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1617
                  #aspect: #organizerMode
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1618
                ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1619
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1620
                  #subAspect: #outGeneratorHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1621
                  #aspect: #outGeneratorHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1622
                )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1623
                
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1624
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1625
                  #subAspect: #packageFilter
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1626
                  #aspect: #packageFilter
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1627
                ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1628
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1629
                  #subAspect: #nameSpaceFilter
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1630
                  #aspect: #nameSpaceFilter
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1631
                ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1632
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1633
                  #subAspect: #selectedClasses
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1634
                  #aspect: #selectedClasses
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1635
                )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1636
                
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1637
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1638
                  #subAspect: #selectionChangeCondition
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1639
                  #aspect: #selectionChangeCondition
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1640
                ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1641
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1642
                  #subAspect: #slaveMode
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1643
                  #aspect: #classInheritanceListSlaveMode
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1644
                )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1645
                
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1646
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1647
                  #subAspect: #topClassHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1648
                  #aspect: #classHierarchyTopClass
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1649
                ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1650
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1651
                  #subAspect: #updateTrigger
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1652
                  #aspect: #classHierarchyUpdateTrigger
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1653
                )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1654
              )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1655
              #createNewApplication: true
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1656
              #createNewBuilder: true
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1657
            )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1658
           #(#VariableHorizontalPanelSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1659
              #name: 'VariableHorizontalPanel1'
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1660
              #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1661
              #visibilityChannel: #classHierarchyNotShown
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1662
              #barWidth: 2
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1663
              #showHandle: false
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1664
              #component: 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1665
             #(#SpecCollection
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1666
                #collection: #(
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1667
                 #(#ViewSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1668
                    #name: 'Box1'
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1669
                    #component: 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1670
                   #(#SpecCollection
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1671
                      #collection: #(
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1672
                       #(#SubCanvasSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1673
                          #name: 'ClassCategoryList'
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1674
                          #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1675
                          #visibilityChannel: #categoryListShown
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1676
                          #majorKey: #'ClassCategoryList'
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1677
                          #subAspectHolders: 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1678
                         #(#Array
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1679
                            
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1680
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1681
                              #subAspect: #doubleClickChannel
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1682
                              #aspect: #classCategoryDoubleClickChannel
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1683
                            ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1684
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1685
                              #subAspect: #forceGeneratorTrigger
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1686
                              #aspect: #forceClassCategoryGeneratorTrigger
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1687
                            )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1688
                            
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1689
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1690
                              #subAspect: #hideUnloadedClasses
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1691
                              #aspect: #hideUnloadedClasses
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1692
                            ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1693
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1694
                              #subAspect: #immediateUpdate
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1695
                              #aspect: #immediateUpdate
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1696
                            )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1697
                            
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1698
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1699
                              #subAspect: #menuHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1700
                              #aspect: #classCategoryListMenuHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1701
                            ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1702
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1703
                              #subAspect: #organizerMode
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1704
                              #aspect: #organizerMode
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1705
                            )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1706
                            
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1707
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1708
                              #subAspect: #outGeneratorHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1709
                              #aspect: #classGeneratorHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1710
                            ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1711
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1712
                              #subAspect: #selectedCategories
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1713
                              #aspect: #selectedCategories
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1714
                            )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1715
                            
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1716
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1717
                              #subAspect: #selectionChangeCondition
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1718
                              #aspect: #selectionChangeCondition
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1719
                            ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1720
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1721
                              #subAspect: #updateTrigger
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1722
                              #aspect: #classCategoryListUpdateTrigger
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1723
                            )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1724
                          )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1725
                          #createNewApplication: true
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1726
                          #createNewBuilder: true
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1727
                        )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1728
                       #(#SubCanvasSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1729
                          #name: 'NamespaceList'
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1730
                          #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1731
                          #visibilityChannel: #nameSpaceListShown
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1732
                          #majorKey: #'NamespaceList'
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1733
                          #subAspectHolders: 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1734
                         #(#Array
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1735
                            
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1736
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1737
                              #subAspect: #doubleClickChannel
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1738
                              #aspect: #nameSpaceDoubleClickChannel
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1739
                            ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1740
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1741
                              #subAspect: #forceGeneratorTrigger
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1742
                              #aspect: #forceNamespaceGeneratorTrigger
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1743
                            )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1744
                            
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1745
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1746
                              #subAspect: #hideUnloadedClasses
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1747
                              #aspect: #hideUnloadedClasses
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1748
                            ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1749
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1750
                              #subAspect: #immediateUpdate
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1751
                              #aspect: #immediateUpdate
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1752
                            )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1753
                            
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1754
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1755
                              #subAspect: #menuHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1756
                              #aspect: #nameSpaceListMenuHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1757
                            ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1758
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1759
                              #subAspect: #organizerMode
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1760
                              #aspect: #organizerMode
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1761
                            )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1762
                            
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1763
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1764
                              #subAspect: #outGeneratorHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1765
                              #aspect: #classGeneratorHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1766
                            ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1767
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1768
                              #subAspect: #selectedNamespaces
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1769
                              #aspect: #selectedNamespaces
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1770
                            )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1771
                            
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1772
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1773
                              #subAspect: #selectionChangeCondition
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1774
                              #aspect: #selectionChangeCondition
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1775
                            ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1776
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1777
                              #subAspect: #updateTrigger
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1778
                              #aspect: #nameSpaceListUpdateTrigger
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1779
                            )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1780
                          )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1781
                          #createNewApplication: true
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1782
                          #createNewBuilder: true
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1783
                        )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1784
                       #(#SubCanvasSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1785
                          #name: 'ProjectList'
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1786
                          #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1787
                          #visibilityChannel: #projectListShown
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1788
                          #majorKey: #'ProjectList'
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1789
                          #subAspectHolders: 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1790
                         #(#Array
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1791
                            
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1792
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1793
                              #subAspect: #doubleClickChannel
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1794
                              #aspect: #projectDoubleClickChannel
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1795
                            ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1796
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1797
                              #subAspect: #forceGeneratorTrigger
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1798
                              #aspect: #forceProjectGeneratorTrigger
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1799
                            )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1800
                            
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1801
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1802
                              #subAspect: #hideUnloadedClasses
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1803
                              #aspect: #hideUnloadedClasses
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1804
                            ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1805
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1806
                              #subAspect: #immediateUpdate
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1807
                              #aspect: #immediateUpdate
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1808
                            )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1809
                            
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1810
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1811
                              #subAspect: #menuHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1812
                              #aspect: #projectListMenuHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1813
                            ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1814
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1815
                              #subAspect: #organizerMode
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1816
                              #aspect: #organizerMode
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1817
                            )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1818
                            
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1819
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1820
                              #subAspect: #outGeneratorHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1821
                              #aspect: #classGeneratorHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1822
                            ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1823
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1824
                              #subAspect: #selectedProjects
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1825
                              #aspect: #selectedProjects
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1826
                            )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1827
                            
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1828
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1829
                              #subAspect: #selectionChangeCondition
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1830
                              #aspect: #selectionChangeCondition
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1831
                            ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1832
                           #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1833
                              #subAspect: #updateTrigger
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1834
                              #aspect: #projectListUpdateTrigger
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1835
                            )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1836
                          )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1837
                          #createNewApplication: true
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1838
                          #createNewBuilder: true
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1839
                        )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1840
                       )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1841
                     
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1842
                    )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1843
                  )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1844
                 #(#SubCanvasSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1845
                    #name: 'ClassList'
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1846
                    #majorKey: #'ClassList'
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1847
                    #minorKey: #windowSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1848
                    #subAspectHolders: 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1849
                   #(#Array
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1850
                      
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1851
                     #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1852
                        #subAspect: #doubleClickChannel
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1853
                        #aspect: #classDoubleClickChannel
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1854
                      ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1855
                     #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1856
                        #subAspect: #hidePrivateClasses
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1857
                        #aspect: #hidePrivateClasses
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1858
                      )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1859
                     #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1860
                        #subAspect: #hideUnloadedClasses
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1861
                        #aspect: #hideUnloadedClasses
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1862
                      ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1863
               #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1864
                  #subAspect: #markApplicationsHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1865
                  #aspect: #markApplicationsHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1866
                ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1867
                     #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1868
                        #subAspect: #immediateUpdate
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1869
                        #aspect: #immediateUpdate
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1870
                      )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1871
                      
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1872
                     #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1873
                        #subAspect: #inGeneratorHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1874
                        #aspect: #classGeneratorHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1875
                      ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1876
                     #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1877
                        #subAspect: #menuHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1878
                        #aspect: #classListMenuHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1879
                      )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1880
                      
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1881
                     #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1882
                        #subAspect: #meta
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1883
                        #aspect: #meta
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1884
                      ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1885
                     #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1886
                        #subAspect: #organizerMode
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1887
                        #aspect: #organizerMode
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1888
                      )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1889
                      
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1890
                     #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1891
                        #subAspect: #outGeneratorHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1892
                        #aspect: #outGeneratorHolder
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1893
                      ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1894
                     #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1895
                        #subAspect: #selectedClasses
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1896
                        #aspect: #selectedClasses
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1897
                      )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1898
                      
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1899
                     #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1900
                        #subAspect: #selectionChangeCondition
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1901
                        #aspect: #selectionChangeCondition
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1902
                      ) 
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1903
                     #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1904
                        #subAspect: #slaveMode
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1905
                        #aspect: #classListSlaveMode
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1906
                      )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1907
                      
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1908
                     #(#SubChannelInfoSpec
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1909
                        #subAspect: #updateTrigger
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1910
                        #aspect: #classListUpdateTrigger
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1911
                      )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1912
                    )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1913
                    #createNewApplication: true
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1914
                    #createNewBuilder: true
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1915
                  )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1916
                 )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1917
               
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1918
              )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1919
              #handles: #(#Any 0.5 1.0)
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1920
            )
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1921
           )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1922
         
6259
e440c14b02aa experimental display of method complexity
Claus Gittinger <cg@exept.de>
parents: 5909
diff changeset
  1923
        )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1924
      )
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1925
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1926
    "Modified: / 25.2.2000 / 22:39:54 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1927
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1928
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1929
!OrganizerCanvas class methodsFor:'plugIn spec'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1930
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1931
aspectSelectors
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1932
    "This resource specification was automatically generated
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1933
     by the UIPainter of ST/X."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1934
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1935
    "Do not manually edit this. If it is corrupted,
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1936
     the UIPainter may not be able to read the specification."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1937
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1938
    "Return a description of exported aspects;
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1939
     these can be connected to aspects of an embedding application
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1940
     (if this app is embedded in a subCanvas)."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1941
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1942
    ^ #(
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1943
	#(#classCategoryDoubleClickChannel #action )
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1944
	#classCategoryListMenuHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1945
	#(#classDoubleClickChannel #action )
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1946
	#classHierarchyListMenuHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1947
	#classHierarchyTopClass
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1948
	#classListMenuHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1949
	#filterClassVars
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1950
	#hidePrivateClasses
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1951
	#hideUnloadedClasses
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1952
	#immediateUpdate
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1953
	#meta
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1954
	#metaToggleLabelHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1955
	#(#nameSpaceDoubleClickChannel #action )
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1956
	#nameSpaceFilter
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1957
	#nameSpaceListMenuHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1958
	#organizerMode
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1959
	#outGeneratorHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1960
	#packageFilter
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1961
	#(#projectDoubleClickChannel #action )
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1962
	#projectListMenuHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1963
	#selectedCategories
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1964
	#selectedClasses
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1965
	#selectedNamespaces
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1966
	#selectedProjects
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1967
	#selectedProtocols
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1968
	#selectionChangeCondition
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1969
	#showClassPackages
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1970
	#(#variableDoubleClickChannel #action )
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1971
	#variableFilter
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1972
	#variablesMenuHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1973
	#markApplicationsHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1974
      ).
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1975
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1976
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1977
!OrganizerCanvas methodsFor:'aspects'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1978
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1979
classCategoryDoubleClickChannel
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1980
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1981
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1982
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1983
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1984
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1985
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1986
    classCategoryDoubleClickChannel isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1987
	classCategoryDoubleClickChannel := TriggerValue new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1988
"/        classCategoryDoubleClickChannel addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1989
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1990
    ^ classCategoryDoubleClickChannel.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1991
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1992
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1993
classCategoryListMenuHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1994
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1995
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1996
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1997
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1998
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1999
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2000
    classCategoryListMenuHolder isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2001
	classCategoryListMenuHolder := ValueHolder new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2002
"/        classCategoryListMenuHolder addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2003
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2004
    ^ classCategoryListMenuHolder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2005
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2006
    "Created: / 18.2.2000 / 11:52:55 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2007
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2008
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2009
classDoubleClickChannel
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2010
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2011
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2012
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2013
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2014
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2015
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2016
    classDoubleClickChannel isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2017
	classDoubleClickChannel := TriggerValue new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2018
"/        classDoubleClickChannel addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2019
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2020
    ^ classDoubleClickChannel.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2021
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2022
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2023
classGeneratorHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2024
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2025
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2026
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2027
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2028
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2029
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2030
    classGeneratorHolder isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2031
	classGeneratorHolder := ValueHolder new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2032
"/        classGeneratorHolder addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2033
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2034
    ^ classGeneratorHolder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2035
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2036
    "Created: / 18.2.2000 / 00:56:50 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2037
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2038
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2039
classGeneratorHolderFromClassCategory
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2040
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2041
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2042
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2043
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2044
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2045
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2046
    classGeneratorHolderFromClassCategory isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2047
	classGeneratorHolderFromClassCategory := ValueHolder new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2048
"/        classGeneratorHolderFromClassCategory addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2049
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2050
    ^ classGeneratorHolderFromClassCategory.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2051
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2052
    "Created: / 18.2.2000 / 02:21:55 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2053
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2054
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2055
classGeneratorHolderFromClassHierarchy
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2056
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2057
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2058
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2059
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2060
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2061
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2062
    classGeneratorHolderFromClassHierarchy isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2063
	classGeneratorHolderFromClassHierarchy := ValueHolder new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2064
"/        classGeneratorHolderFromClassHierarchy addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2065
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2066
    ^ classGeneratorHolderFromClassHierarchy.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2067
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2068
    "Created: / 18.2.2000 / 02:21:55 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2069
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2070
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2071
classGeneratorHolderFromNamespace
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2072
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2073
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2074
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2075
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2076
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2077
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2078
    classGeneratorHolderFromNamespace isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2079
	classGeneratorHolderFromNamespace := ValueHolder new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2080
"/        classGeneratorHolderFromNamespace addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2081
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2082
    ^ classGeneratorHolderFromNamespace.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2083
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2084
    "Created: / 18.2.2000 / 02:21:55 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2085
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2086
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2087
classGeneratorHolderFromProject
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2088
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2089
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2090
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2091
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2092
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2093
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2094
    classGeneratorHolderFromProject isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2095
	classGeneratorHolderFromProject := ValueHolder new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2096
"/        classGeneratorHolderFromProject addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2097
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2098
    ^ classGeneratorHolderFromProject.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2099
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2100
    "Created: / 18.2.2000 / 02:21:55 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2101
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2102
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2103
classHierarchyListMenuHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2104
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2105
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2106
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2107
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2108
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2109
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2110
    classHierarchyListMenuHolder isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2111
	classHierarchyListMenuHolder := ValueHolder new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2112
"/        classHierarchyListMenuHolder addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2113
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2114
    ^ classHierarchyListMenuHolder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2115
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2116
    "Created: / 18.2.2000 / 11:52:55 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2117
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2118
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2119
classHierarchyTopClass
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2120
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2121
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2122
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2123
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2124
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2125
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2126
    |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2127
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2128
    (holder := builder bindingAt:#classHierarchyTopClass) isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2129
	holder := ValueHolder new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2130
	builder aspectAt:#classHierarchyTopClass put:holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2131
"/        holder addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2132
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2133
    ^ holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2134
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2135
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2136
classInheritanceListMenuHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2137
    ^ self classHierarchyListMenuHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2138
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2139
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2140
classList
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2141
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2142
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2143
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2144
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2145
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2146
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2147
    classList isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2148
	classList := ValueHolder new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2149
"/        classList addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2150
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2151
    ^ classList.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2152
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2153
    "Created: / 18.2.2000 / 00:23:43 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2154
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2155
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2156
classListMenuHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2157
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2158
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2159
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2160
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2161
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2162
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2163
    classListMenuHolder isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2164
	classListMenuHolder := ValueHolder new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2165
"/        classListMenuHolder addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2166
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2167
    ^ classListMenuHolder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2168
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2169
    "Created: / 18.2.2000 / 11:57:22 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2170
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2171
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2172
filterClassVars
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2173
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2174
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2175
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2176
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2177
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2178
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2179
    filterClassVars isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2180
	filterClassVars := ValueHolder new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2181
"/        filterClassVars addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2182
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2183
    ^ filterClassVars.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2184
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2185
    "Created: / 24.2.2000 / 23:29:52 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2186
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2187
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2188
hidePrivateClasses
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2189
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2190
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2191
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2192
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2193
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2194
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2195
    hidePrivateClasses isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2196
	hidePrivateClasses := false asValue.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2197
"/        hidePrivateClasses addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2198
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2199
    ^ hidePrivateClasses.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2200
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2201
    "Created: / 24.2.2000 / 16:18:45 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2202
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2203
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2204
hideUnloadedClasses
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2205
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2206
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2207
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2208
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2209
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2210
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2211
    hideUnloadedClasses isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2212
	hideUnloadedClasses := false asValue.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2213
"/        hideUnloadedClasses addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2214
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2215
    ^ hideUnloadedClasses.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2216
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2217
    "Created: / 18.2.2000 / 17:54:57 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2218
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2219
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2220
immediateUpdate
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2221
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2222
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2223
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2224
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2225
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2226
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2227
    immediateUpdate isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2228
	immediateUpdate := false asValue.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2229
"/        immediateUpdate addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2230
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2231
    ^ immediateUpdate.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2232
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2233
    "Created: / 18.2.2000 / 00:23:43 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2234
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2235
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2236
markApplicationsHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2237
    markApplicationsHolder isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2238
	markApplicationsHolder := false asValue.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2239
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2240
    ^ markApplicationsHolder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2241
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2242
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2243
meta
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2244
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2245
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2246
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2247
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2248
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2249
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2250
    meta isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2251
	meta := false asValue.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2252
"/        meta addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2253
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2254
    ^ meta.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2255
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2256
    "Created: / 18.2.2000 / 00:23:43 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2257
    "Modified: / 18.2.2000 / 00:42:23 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2258
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2259
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2260
metaToggle
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2261
    metaToggle isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2262
	metaToggle := PluggableAdaptor on:(self meta).
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2263
	metaToggle
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2264
	    getBlock:[:m | m value == true]
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2265
	    putBlock:[:m :newValue | m value:(newValue ? false)]
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2266
	    updateBlock:[:m :aspect :param | true].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2267
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2268
    ^ metaToggle
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2269
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2270
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2271
metaToggleLabelHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2272
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2273
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2274
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2275
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2276
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2277
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2278
    metaToggleLabelHolder isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2279
	metaToggleLabelHolder := (resources string:'Class') asValue.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2280
"/        metaToggleLabelHolder addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2281
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2282
    ^ metaToggleLabelHolder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2283
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2284
    "Created: / 18.2.2000 / 11:52:55 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2285
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2286
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2287
nameSpaceDoubleClickChannel
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2288
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2289
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2290
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2291
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2292
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2293
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2294
    |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2295
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2296
    (holder := builder bindingAt:#nameSpaceDoubleClickChannel) isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2297
	holder := TriggerValue new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2298
	builder aspectAt:#nameSpaceDoubleClickChannel put:holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2299
"/        holder addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2300
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2301
    ^ holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2302
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2303
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2304
nameSpaceFilter
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2305
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2306
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2307
    nameSpaceFilter isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2308
	nameSpaceFilter := ValueHolder new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2309
self halt.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2310
	nameSpaceFilter onChangeEvaluate:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2311
self halt.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2312
	    nameSpaceFilter value ~= nameSpaceFilterSelection value ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2313
		self halt
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2314
	    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2315
"/            self nameSpaceFilter value: nameSpaceFilterSelection value.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2316
	]
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2317
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2318
    ^ nameSpaceFilter.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2319
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2320
    "Created: / 24.2.2000 / 23:29:52 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2321
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2322
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2323
nameSpaceFilterDoubleClickChannel
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2324
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2325
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2326
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2327
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2328
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2329
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2330
    |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2331
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2332
    (holder := builder bindingAt:#nameSpaceFilterDoubleClickChannel) isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2333
	holder := TriggerValue new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2334
	builder aspectAt:#nameSpaceFilterDoubleClickChannel put:holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2335
	holder onChangeEvaluate:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2336
		    (builder componentAt:#NameSpaceFilterComboBox) closeMenu.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2337
"/                    self nameSpaceDoubleClickChannel value:true.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2338
	       ]
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2339
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2340
    ^ holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2341
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2342
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2343
nameSpaceFilterPopUpMenu
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2344
    ^ self nameSpaceListMenuHolder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2345
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2346
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2347
nameSpaceFilterSelectedNameSpace
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2348
    |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2349
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2350
    (holder := builder bindingAt:#nameSpaceFilterSelectedNameSpace) isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2351
	holder := self class nameListEntryForALL "'* all *'" asValue.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2352
	builder aspectAt:#nameSpaceFilterSelectedNameSpace put:holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2353
	holder onChangeEvaluate:[ self updateNameSpaceLabel. ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2354
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2355
    ^ holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2356
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2357
    "Created: / 18.2.2000 / 11:52:55 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2358
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2359
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2360
nameSpaceFilterSelection
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2361
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2362
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2363
    nameSpaceFilterSelection isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2364
	nameSpaceFilterSelection := (OrderedCollection with:self class nameListEntryForALL) asValue.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2365
	nameSpaceFilterSelection addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2366
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2367
    ^ nameSpaceFilterSelection.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2368
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2369
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2370
nameSpaceListMenuHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2371
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2372
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2373
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2374
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2375
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2376
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2377
    |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2378
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2379
    (holder := builder bindingAt:#nameSpaceListMenuHolder) isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2380
	holder := ValueHolder new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2381
	builder aspectAt:#nameSpaceListMenuHolder put:holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2382
"/        holder addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2383
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2384
    ^ holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2385
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2386
    "Created: / 18.2.2000 / 11:52:55 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2387
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2388
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2389
nameSpaceListWidget
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2390
    |view|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2391
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2392
    view := SubCanvas new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2393
    view client:self spec:#embeddedNameSpaceListSpec builder:nil. "/ (self builder).
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2394
    (view builder findComponentAt:#List) autoHideHorizontalScrollBar:true.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2395
    ^ view.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2396
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2397
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2398
nameSpaceListWidgetHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2399
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2400
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2401
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2402
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2403
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2404
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2405
    |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2406
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2407
    (holder := builder bindingAt:#nameSpaceListWidgetHolder) isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2408
	holder := ValueHolder new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2409
	builder aspectAt:#nameSpaceListWidgetHolder put:holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2410
	holder value:(self nameSpaceListWidget).
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2411
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2412
    ^ holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2413
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2414
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2415
notMetaToggle
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2416
    notMetaToggle isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2417
	notMetaToggle := PluggableAdaptor on:(self meta).
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2418
	notMetaToggle
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2419
	    getBlock:[:m | m value == false]
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2420
	    putBlock:[:m :newValue | m value:(newValue ? false) not]
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2421
	    updateBlock:[:m :aspect :param | true].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2422
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2423
    ^ notMetaToggle
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2424
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2425
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2426
organizerMode
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2427
    organizerMode isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2428
	organizerMode := #category asValue.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2429
	organizerMode addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2430
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2431
    ^ organizerMode
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2432
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2433
    "Created: / 18.2.2000 / 00:30:44 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2434
    "Modified: / 18.2.2000 / 02:56:21 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2435
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2436
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2437
outGeneratorHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2438
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2439
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2440
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2441
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2442
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2443
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2444
    |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2445
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2446
    (holder := builder bindingAt:#outGeneratorHolder) isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2447
	holder := ValueHolder new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2448
	builder aspectAt:#outGeneratorHolder put:holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2449
"/        holder addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2450
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2451
    ^ holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2452
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2453
    "Created: / 18.2.2000 / 00:23:43 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2454
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2455
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2456
packageFilter
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2457
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2458
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2459
    packageFilter isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2460
	packageFilter := ValueHolder new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2461
"/        packageFilter addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2462
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2463
    ^ packageFilter.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2464
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2465
    "Created: / 24.2.2000 / 23:29:52 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2466
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2467
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2468
popUpNameSpaceListSlaveMode
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2469
    ^ false
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2470
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2471
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2472
projectDoubleClickChannel
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2473
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2474
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2475
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2476
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2477
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2478
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2479
    |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2480
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2481
    (holder := builder bindingAt:#projectDoubleClickChannel) isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2482
	holder := TriggerValue new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2483
	builder aspectAt:#projectDoubleClickChannel put:holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2484
"/        holder addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2485
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2486
    ^ holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2487
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2488
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2489
projectListMenuHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2490
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2491
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2492
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2493
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2494
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2495
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2496
    projectListMenuHolder isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2497
	projectListMenuHolder := ValueHolder new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2498
"/        projectListMenuHolder addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2499
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2500
    ^ projectListMenuHolder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2501
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2502
    "Created: / 18.2.2000 / 11:52:55 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2503
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2504
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2505
selectedCategories
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2506
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2507
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2508
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2509
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2510
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2511
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2512
    selectedCategories isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2513
	selectedCategories := ValueHolder new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2514
"/        selectedCategories addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2515
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2516
    ^ selectedCategories.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2517
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2518
    "Created: / 18.2.2000 / 12:27:58 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2519
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2520
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2521
selectedClasses
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2522
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2523
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2524
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2525
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2526
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2527
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2528
    selectedClasses isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2529
	selectedClasses := ValueHolder new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2530
	selectedClasses addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2531
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2532
    ^ selectedClasses.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2533
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2534
    "Created: / 18.2.2000 / 00:23:43 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2535
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2536
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2537
selectedNamespaces
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2538
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2539
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2540
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2541
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2542
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2543
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2544
    selectedNamespaces isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2545
	selectedNamespaces := (OrderedCollection with:self class nameListEntryForALL) asValue.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2546
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2547
    ^ selectedNamespaces.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2548
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2549
    "Created: / 18.2.2000 / 12:27:58 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2550
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2551
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2552
selectedProjects
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2553
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2554
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2555
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2556
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2557
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2558
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2559
    selectedProjects isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2560
	selectedProjects := ValueHolder new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2561
"/        selectedProjects addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2562
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2563
    ^ selectedProjects.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2564
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2565
    "Created: / 18.2.2000 / 12:16:01 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2566
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2567
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2568
selectionChangeCondition
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2569
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2570
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2571
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2572
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2573
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2574
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2575
    selectionChangeCondition isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2576
	selectionChangeCondition := ValueHolder new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2577
"/        selectionChangeCondition addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2578
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2579
    ^ selectionChangeCondition.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2580
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2581
    "Created: / 18.2.2000 / 00:23:43 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2582
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2583
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2584
showClassPackages
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2585
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2586
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2587
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2588
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2589
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2590
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2591
    showClassPackages isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2592
	showClassPackages := false asValue.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2593
"/        showClassPackages addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2594
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2595
    ^ showClassPackages.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2596
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2597
    "Created: / 18.2.2000 / 17:54:57 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2598
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2599
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2600
updateNameSpaceLabel
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2601
    |box|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2602
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2603
    box := self builder componentAt:#NameSpaceFilterComboBox.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2604
    box notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2605
	"/ new code: ExtComboBox uses always an EditField
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2606
	box editor contents:nameSpaceFilterSelection value first.        
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2607
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2608
	"/ old code: readOnly ExtComboBox used a Label
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2609
	"/ box menuField label:nameSpaceFilterSelection value first
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2610
    ]
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2611
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2612
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2613
variableDoubleClickChannel
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2614
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2615
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2616
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2617
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2618
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2619
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2620
    |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2621
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2622
    (holder := builder bindingAt:#variableDoubleClickChannel) isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2623
	holder := TriggerValue new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2624
	builder aspectAt:#variableDoubleClickChannel put:holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2625
"/        holder addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2626
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2627
    ^ holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2628
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2629
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2630
variableFilter
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2631
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2632
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2633
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2634
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2635
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2636
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2637
    variableFilter isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2638
	variableFilter := ValueHolder new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2639
"/        variableFilter addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2640
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2641
    ^ variableFilter.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2642
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2643
    "Created: / 24.2.2000 / 23:29:52 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2644
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2645
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2646
variablesMenuHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2647
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2648
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2649
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2650
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2651
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2652
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2653
    variablesMenuHolder isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2654
	variablesMenuHolder := ValueHolder new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2655
"/        variablesMenuHolder addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2656
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2657
    ^ variablesMenuHolder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2658
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2659
    "Created: / 24.2.2000 / 23:29:52 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2660
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2661
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2662
!OrganizerCanvas methodsFor:'aspects-exported'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2663
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2664
classCategoryDoubleClickChannel:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2665
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2666
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2667
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2668
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2669
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2670
    "/ classCategoryDoubleClickChannel removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2671
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2672
    classCategoryDoubleClickChannel := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2673
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2674
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2675
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2676
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2677
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2678
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2679
    "Created: / 18.8.2000 / 20:04:48 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2680
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2681
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2682
classCategoryListMenuHolder:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2683
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2684
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2685
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2686
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2687
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2688
    "/ classCategoryListMenuHolder removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2689
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2690
    classCategoryListMenuHolder := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2691
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2692
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2693
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2694
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2695
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2696
    "Created: / 18.2.2000 / 11:53:31 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2697
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2698
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2699
classCategoryListUpdateTrigger:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2700
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2701
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2702
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2703
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2704
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2705
    "/ classCategoryListUpdateTrigger removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2706
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2707
    classCategoryListUpdateTrigger := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2708
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2709
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2710
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2711
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2712
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2713
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2714
    "Created: / 18.2.2000 / 02:08:01 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2715
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2716
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2717
classDoubleClickChannel:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2718
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2719
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2720
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2721
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2722
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2723
    "/ classDoubleClickChannel removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2724
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2725
    classDoubleClickChannel := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2726
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2727
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2728
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2729
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2730
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2731
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2732
classHierarchyListMenuHolder:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2733
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2734
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2735
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2736
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2737
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2738
    "/ classHierarchyListMenuHolder removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2739
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2740
    classHierarchyListMenuHolder := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2741
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2742
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2743
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2744
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2745
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2746
    "Created: / 18.2.2000 / 11:53:31 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2747
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2748
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2749
classHierarchyShown:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2750
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2751
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2752
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2753
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2754
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2755
    "/ |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2756
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2757
    "/ (holder := builder bindingAt:#classHierarchyShown) notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2758
    "/     holder removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2759
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2760
    builder aspectAt:#classHierarchyShown put:something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2761
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2762
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2763
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2764
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2765
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2766
    "Created: / 18.2.2000 / 00:24:28 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2767
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2768
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2769
classHierarchyTopClass:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2770
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2771
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2772
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2773
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2774
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2775
    "/ |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2776
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2777
    "/ (holder := builder bindingAt:#classHierarchyTopClass) notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2778
    "/     holder removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2779
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2780
    builder aspectAt:#classHierarchyTopClass put:something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2781
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2782
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2783
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2784
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2785
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2786
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2787
classHierarchyUpdateTrigger:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2788
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2789
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2790
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2791
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2792
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2793
    "/ |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2794
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2795
    "/ (holder := builder bindingAt:#classHierarchyUpdateTrigger) notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2796
    "/     holder removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2797
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2798
    builder aspectAt:#classHierarchyUpdateTrigger put:something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2799
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2800
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2801
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2802
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2803
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2804
    "Created: / 18.2.2000 / 02:08:01 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2805
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2806
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2807
classList:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2808
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2809
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2810
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2811
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2812
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2813
    "/ classList notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2814
    "/     classList removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2815
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2816
    classList := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2817
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2818
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2819
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2820
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2821
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2822
    "Created: / 18.2.2000 / 00:24:28 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2823
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2824
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2825
classListMenuHolder:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2826
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2827
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2828
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2829
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2830
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2831
    "/ classListMenuHolder removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2832
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2833
    classListMenuHolder := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2834
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2835
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2836
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2837
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2838
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2839
    "Created: / 18.2.2000 / 11:57:22 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2840
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2841
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2842
classListUpdateTrigger:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2843
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2844
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2845
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2846
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2847
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2848
    "/ classListUpdateTrigger removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2849
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2850
    classListUpdateTrigger := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2851
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2852
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2853
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2854
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2855
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2856
    "Created: / 18.2.2000 / 02:08:01 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2857
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2858
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2859
filterClassVars:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2860
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2861
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2862
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2863
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2864
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2865
    "/ filterClassVars removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2866
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2867
    filterClassVars := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2868
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2869
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2870
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2871
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2872
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2873
    "Created: / 24.2.2000 / 23:46:16 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2874
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2875
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2876
hidePrivateClasses:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2877
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2878
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2879
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2880
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2881
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2882
    "/ hidePrivateClasses removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2883
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2884
    hidePrivateClasses := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2885
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2886
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2887
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2888
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2889
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2890
    "Created: / 24.2.2000 / 16:18:32 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2891
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2892
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2893
hideUnloadedClasses:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2894
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2895
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2896
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2897
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2898
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2899
    "/ hideUnloadedClasses removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2900
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2901
    hideUnloadedClasses := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2902
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2903
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2904
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2905
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2906
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2907
    "Created: / 18.2.2000 / 17:54:57 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2908
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2909
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2910
immediateUpdate:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2911
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2912
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2913
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2914
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2915
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2916
    "/ immediateUpdate removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2917
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2918
    immediateUpdate := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2919
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2920
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2921
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2922
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2923
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2924
    "Created: / 18.2.2000 / 00:24:29 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2925
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2926
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2927
markApplicationsHolder:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2928
    markApplicationsHolder := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2929
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2930
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2931
meta:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2932
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2933
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2934
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2935
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2936
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2937
    "/ meta notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2938
    "/     meta removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2939
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2940
"/ (something == true or:[something == false]) ifTrue:[self halt].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2941
    meta := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2942
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2943
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2944
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2945
    metaToggle notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2946
	metaToggle model:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2947
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2948
    notMetaToggle notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2949
	notMetaToggle model:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2950
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2951
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2952
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2953
    "Created: / 18.2.2000 / 00:24:29 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2954
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2955
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2956
metaToggleLabelHolder:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2957
    |v|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2958
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2959
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2960
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2961
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2962
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2963
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2964
    "/ metaToggleLabelHolder removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2965
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2966
    metaToggleLabelHolder := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2967
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2968
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2969
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2970
    (v := builder componentAt:#ClassToggle) notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2971
	v labelChannel:metaToggleLabelHolder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2972
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2973
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2974
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2975
    "Created: / 18.2.2000 / 11:53:31 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2976
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2977
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2978
nameSpaceFilter:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2979
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2980
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2981
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2982
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2983
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2984
    "/ packageFilter notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2985
    "/     packageFilter removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2986
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2987
    nameSpaceFilter := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2988
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2989
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2990
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2991
    self nameSpaceFilterSelection value:something value.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2992
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2993
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2994
    "Created: / 24.2.2000 / 23:46:16 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2995
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2996
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2997
nameSpaceListMenuHolder:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2998
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2999
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3000
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3001
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3002
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3003
    "/ |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3004
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3005
    "/ (holder := builder bindingAt:#namespaceListMenuHolder) notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3006
    "/     holder removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3007
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3008
    builder aspectAt:#nameSpaceListMenuHolder put:something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3009
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3010
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3011
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3012
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3013
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3014
    "Created: / 18.2.2000 / 11:53:31 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3015
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3016
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3017
nameSpaceListUpdateTrigger:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3018
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3019
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3020
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3021
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3022
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3023
    "/ |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3024
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3025
    "/ (holder := builder bindingAt:#namespaceListUpdateTrigger) notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3026
    "/     holder removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3027
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3028
    builder aspectAt:#nameSpaceListUpdateTrigger put:something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3029
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3030
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3031
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3032
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3033
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3034
    "Created: / 18.2.2000 / 02:08:01 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3035
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3036
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3037
organizerMode:aValueHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3038
    organizerMode notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3039
	organizerMode removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3040
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3041
    organizerMode := aValueHolder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3042
    organizerMode notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3043
	organizerMode addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3044
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3045
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3046
    "Created: / 18.2.2000 / 10:21:41 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3047
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3048
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3049
outGeneratorHolder:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3050
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3051
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3052
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3053
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3054
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3055
    "/ |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3056
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3057
    "/ (holder := builder bindingAt:#outGeneratorHolder) notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3058
    "/     holder removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3059
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3060
    builder aspectAt:#outGeneratorHolder put:something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3061
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3062
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3063
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3064
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3065
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3066
    "Created: / 18.2.2000 / 00:24:29 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3067
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3068
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3069
packageFilter:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3070
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3071
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3072
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3073
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3074
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3075
    "/ packageFilter notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3076
    "/     packageFilter removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3077
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3078
    packageFilter := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3079
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3080
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3081
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3082
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3083
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3084
    "Created: / 24.2.2000 / 23:46:16 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3085
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3086
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3087
projectDoubleClickChannel:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3088
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3089
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3090
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3091
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3092
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3093
    "/ |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3094
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3095
    "/ (holder := builder bindingAt:#projectDoubleClickChannel) notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3096
    "/     holder removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3097
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3098
    builder aspectAt:#projectDoubleClickChannel put:something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3099
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3100
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3101
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3102
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3103
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3104
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3105
projectListMenuHolder:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3106
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3107
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3108
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3109
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3110
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3111
    projectListMenuHolder := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3112
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3113
    "Created: / 18.2.2000 / 11:53:31 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3114
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3115
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3116
projectListUpdateTrigger:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3117
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3118
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3119
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3120
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3121
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3122
    "/ |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3123
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3124
    "/ (holder := builder bindingAt:#projectListUpdateTrigger) notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3125
    "/     holder removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3126
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3127
    builder aspectAt:#projectListUpdateTrigger put:something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3128
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3129
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3130
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3131
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3132
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3133
    "Created: / 18.2.2000 / 02:08:01 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3134
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3135
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3136
selectedCategories:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3137
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3138
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3139
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3140
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3141
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3142
    selectedCategories := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3143
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3144
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3145
    "Created: / 18.2.2000 / 14:04:36 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3146
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3147
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3148
selectedClasses:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3149
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3150
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3151
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3152
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3153
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3154
    selectedClasses removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3155
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3156
    selectedClasses := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3157
    something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3158
	something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3159
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3160
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3161
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3162
    "Created: / 18.2.2000 / 00:24:29 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3163
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3164
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3165
selectedNamespaces:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3166
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3167
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3168
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3169
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3170
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3171
    selectedNamespaces := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3172
    selectedNamespaces onChangeEvaluate:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3173
	nameSpaceFilterSelection value:selectedNamespaces value.     
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3174
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3175
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3176
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3177
selectedProjects:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3178
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3179
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3180
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3181
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3182
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3183
    selectedProjects := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3184
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3185
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3186
selectionChangeCondition:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3187
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3188
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3189
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3190
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3191
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3192
    selectionChangeCondition := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3193
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3194
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3195
showClassPackages:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3196
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3197
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3198
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3199
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3200
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3201
    showClassPackages := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3202
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3203
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3204
variableDoubleClickChannel:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3205
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3206
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3207
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3208
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3209
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3210
    "/ |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3211
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3212
    "/ (holder := builder bindingAt:#variableDoubleClickChannel) notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3213
    "/     holder removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3214
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3215
    builder aspectAt:#variableDoubleClickChannel put:something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3216
    "/ something notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3217
    "/     something addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3218
    "/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3219
    ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3220
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3221
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3222
variableFilter:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3223
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3224
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3225
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3226
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3227
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3228
    variableFilter := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3229
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3230
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3231
variablesMenuHolder:something
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3232
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3233
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3234
    "This method is used when I am embedded as subApplication,"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3235
    "and the mainApp wants to connect its aspects to mine."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3236
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3237
    variablesMenuHolder := something.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3238
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3239
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3240
!OrganizerCanvas methodsFor:'aspects-private'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3241
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3242
categoryListSlaveMode
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3243
    categoryListSlaveMode isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3244
	categoryListSlaveMode := false asValue.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3245
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3246
    ^ categoryListSlaveMode
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3247
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3248
    "Created: / 18.2.2000 / 00:30:44 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3249
    "Modified: / 18.2.2000 / 02:56:21 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3250
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3251
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3252
classHierarchyListSlaveMode
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3253
    classHierarchyListSlaveMode isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3254
	classHierarchyListSlaveMode := true asValue.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3255
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3256
    ^ classHierarchyListSlaveMode
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3257
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3258
    "Created: / 18.2.2000 / 00:30:44 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3259
    "Modified: / 18.2.2000 / 02:56:21 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3260
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3261
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3262
classInheritanceListSlaveMode
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3263
    classInheritanceListSlaveMode isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3264
	classInheritanceListSlaveMode := true asValue.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3265
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3266
    ^ classInheritanceListSlaveMode
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3267
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3268
    "Modified: / 18.2.2000 / 02:56:21 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3269
    "Created: / 26.2.2000 / 00:09:18 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3270
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3271
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3272
classListSlaveMode
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3273
    classListSlaveMode isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3274
	classListSlaveMode := false asValue.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3275
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3276
    ^ classListSlaveMode
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3277
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3278
    "Created: / 18.2.2000 / 00:30:44 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3279
    "Modified: / 18.2.2000 / 02:56:21 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3280
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3281
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3282
nameSpaceListSlaveMode
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3283
    namespaceListSlaveMode isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3284
	namespaceListSlaveMode := true asValue.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3285
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3286
    ^ namespaceListSlaveMode
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3287
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3288
    "Created: / 18.2.2000 / 00:30:44 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3289
    "Modified: / 18.2.2000 / 02:56:21 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3290
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3291
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3292
projectListSlaveMode
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3293
    projectListSlaveMode isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3294
	projectListSlaveMode := true asValue.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3295
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3296
    ^ projectListSlaveMode
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3297
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3298
    "Created: / 18.2.2000 / 00:30:44 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3299
    "Modified: / 18.2.2000 / 02:56:21 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3300
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3301
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3302
!OrganizerCanvas methodsFor:'aspects-trigger'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3303
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3304
classCategoryListUpdateTrigger
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3305
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3306
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3307
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3308
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3309
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3310
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3311
    classCategoryListUpdateTrigger isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3312
	classCategoryListUpdateTrigger := TriggerValue new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3313
"/        classCategoryListUpdateTrigger addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3314
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3315
    ^ classCategoryListUpdateTrigger.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3316
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3317
    "Created: / 18.2.2000 / 02:05:14 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3318
    "Modified: / 18.2.2000 / 02:14:04 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3319
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3320
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3321
classHierarchyUpdateTrigger
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3322
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3323
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3324
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3325
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3326
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3327
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3328
    |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3329
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3330
    (holder := builder bindingAt:#classHierarchyUpdateTrigger) isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3331
	holder := TriggerValue new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3332
	builder aspectAt:#classHierarchyUpdateTrigger put:holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3333
"/        holder addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3334
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3335
    ^ holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3336
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3337
    "Created: / 18.2.2000 / 02:05:14 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3338
    "Modified: / 18.2.2000 / 02:13:57 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3339
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3340
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3341
classListUpdateTrigger
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3342
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3343
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3344
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3345
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3346
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3347
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3348
    classListUpdateTrigger isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3349
	classListUpdateTrigger := TriggerValue new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3350
"/        classListUpdateTrigger addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3351
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3352
    ^ classListUpdateTrigger.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3353
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3354
    "Created: / 18.2.2000 / 02:05:14 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3355
    "Modified: / 18.2.2000 / 02:14:08 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3356
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3357
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3358
forceClassCategoryGeneratorTrigger
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3359
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3360
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3361
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3362
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3363
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3364
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3365
    |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3366
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3367
    (holder := builder bindingAt:#forceClassCategoryGeneratorTrigger) isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3368
	holder := TriggerValue new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3369
	builder aspectAt:#forceClassCategoryGeneratorTrigger put:holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3370
"/        holder addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3371
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3372
    ^ holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3373
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3374
    "Created: / 18.2.2000 / 02:49:43 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3375
    "Modified: / 18.2.2000 / 02:52:30 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3376
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3377
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3378
forceClassHierarchyGeneratorTrigger
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3379
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3380
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3381
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3382
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3383
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3384
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3385
    |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3386
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3387
    (holder := builder bindingAt:#forceClassHierarchyGeneratorTrigger) isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3388
	holder := TriggerValue new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3389
	builder aspectAt:#forceClassHierarchyGeneratorTrigger put:holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3390
"/        holder addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3391
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3392
    ^ holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3393
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3394
    "Created: / 18.2.2000 / 02:49:43 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3395
    "Modified: / 18.2.2000 / 02:52:32 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3396
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3397
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3398
forceNamespaceGeneratorTrigger
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3399
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3400
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3401
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3402
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3403
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3404
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3405
    |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3406
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3407
    (holder := builder bindingAt:#forceNamespaceGeneratorTrigger) isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3408
	holder := TriggerValue new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3409
	builder aspectAt:#forceNamespaceGeneratorTrigger put:holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3410
"/        holder addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3411
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3412
    ^ holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3413
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3414
    "Created: / 18.2.2000 / 02:49:43 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3415
    "Modified: / 18.2.2000 / 02:52:35 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3416
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3417
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3418
forceProjectGeneratorTrigger
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3419
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3420
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3421
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3422
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3423
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3424
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3425
    |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3426
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3427
    (holder := builder bindingAt:#forceProjectGeneratorTrigger) isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3428
	holder := TriggerValue new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3429
	builder aspectAt:#forceProjectGeneratorTrigger put:holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3430
"/        holder addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3431
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3432
    ^ holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3433
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3434
    "Created: / 18.2.2000 / 02:49:43 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3435
    "Modified: / 18.2.2000 / 02:52:38 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3436
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3437
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3438
nameSpaceListUpdateTrigger
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3439
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3440
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3441
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3442
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3443
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3444
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3445
    |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3446
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3447
    (holder := builder bindingAt:#nameSpaceListUpdateTrigger) isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3448
	holder := TriggerValue new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3449
	builder aspectAt:#nameSpaceListUpdateTrigger put:holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3450
"/        holder addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3451
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3452
    ^ holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3453
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3454
    "Created: / 18.2.2000 / 02:05:14 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3455
    "Modified: / 18.2.2000 / 02:14:12 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3456
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3457
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3458
projectListUpdateTrigger
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3459
    "automatically generated by UIPainter ..."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3460
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3461
    "*** the code below creates a default model when invoked."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3462
    "*** (which may not be the one you wanted)"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3463
    "*** Please change as required and accept it in the browser."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3464
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3465
    |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3466
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3467
    (holder := builder bindingAt:#projectListUpdateTrigger) isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3468
	holder := TriggerValue new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3469
	builder aspectAt:#projectListUpdateTrigger put:holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3470
"/        holder addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3471
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3472
    ^ holder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3473
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3474
    "Created: / 18.2.2000 / 02:05:14 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3475
    "Modified: / 18.2.2000 / 02:14:15 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3476
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3477
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3478
!OrganizerCanvas methodsFor:'aspects-visibility'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3479
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3480
categoryListShown
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3481
    categoryListShown isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3482
	categoryListShown := BlockValue 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3483
			with:[:v | v value == #category]
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3484
			argument:(self organizerMode).
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3485
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3486
    ^ categoryListShown
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3487
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3488
    "Modified: / 18.2.2000 / 02:11:00 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3489
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3490
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3491
classHierarchyNotShown
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3492
    |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3493
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3494
    (holder := builder bindingAt:#classHierarchyNotShown) isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3495
	holder := BlockValue 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3496
			with:[:v | |org|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3497
				   org := v value.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3498
				   org ~~ #hierarchy
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3499
				   and:[org ~~ #classHierarchy
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3500
				   and:[org ~~ #classInheritance]]]
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3501
			argument:(self organizerMode).
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3502
	builder aspectAt:#classHierarchyNotShown put: holder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3503
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3504
    ^ holder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3505
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3506
    "Created: / 18.2.2000 / 00:36:38 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3507
    "Modified: / 24.2.2000 / 13:22:43 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3508
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3509
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3510
classHierarchyOrInheritanceNotShown
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3511
    |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3512
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3513
    (holder := builder bindingAt:#classHierarchyOrInheritanceNotShown) isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3514
	holder := BlockValue 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3515
			with:[:v1 :v2 | (v1 value or:[v2 value]) not]
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3516
			argument:(self classHierarchyShown)
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3517
			argument:(self classInheritanceShown).
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3518
	builder aspectAt:#classHierarchyOrInheritanceNotShown put: holder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3519
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3520
    ^ holder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3521
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3522
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3523
classHierarchyOrInheritanceShown
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3524
    |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3525
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3526
    (holder := builder bindingAt:#classHierarchyOrInheritanceShown) isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3527
	holder := BlockValue 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3528
			with:[:v1 :v2 | v1 value or:[v2 value] ]
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3529
			argument:(self classHierarchyShown)
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3530
			argument:(self classInheritanceShown).
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3531
	builder aspectAt:#classHierarchyOrInheritanceShown put: holder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3532
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3533
    ^ holder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3534
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3535
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3536
classHierarchyShown
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3537
    |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3538
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3539
    (holder := builder bindingAt:#classHierarchyShown) isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3540
	holder := BlockValue 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3541
			with:[:v | |org|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3542
				   org := v value.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3543
				   org == #hierarchy
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3544
				   or:[org == #classHierarchy]]
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3545
			argument:(self organizerMode).
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3546
	builder aspectAt:#classHierarchyShown put: holder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3547
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3548
    ^ holder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3549
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3550
    "Modified: / 24.2.2000 / 13:23:33 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3551
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3552
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3553
classInheritanceShown
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3554
    |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3555
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3556
    (holder := builder bindingAt:#classInheritanceShown) isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3557
	holder := BlockValue 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3558
			with:[:v | v value == #classInheritance]
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3559
			argument:(self organizerMode).
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3560
	builder aspectAt:#classInheritanceShown put: holder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3561
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3562
    ^ holder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3563
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3564
    "Created: / 24.2.2000 / 13:23:01 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3565
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3566
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3567
classListShown
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3568
    |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3569
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3570
    (holder := builder bindingAt:#classListShown) isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3571
	holder := BlockValue 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3572
			with:[:v | v value ~~ #hierarchy]
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3573
			argument:(self organizerMode).
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3574
	builder aspectAt:#classListShown put: holder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3575
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3576
    ^ holder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3577
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3578
    "Modified: / 18.2.2000 / 00:32:48 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3579
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3580
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3581
nameSpaceListShown
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3582
    |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3583
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3584
    (holder := builder bindingAt:#nameSpaceListShown) isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3585
	holder := BlockValue 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3586
			with:[:v | v value == #namespace]
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3587
			argument:(self organizerMode).
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3588
	builder aspectAt:#nameSpaceListShown put: holder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3589
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3590
    ^ holder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3592
    "Created: / 18.2.2000 / 00:32:09 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3593
    "Modified: / 18.2.2000 / 01:48:35 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3594
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3595
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3596
projectListShown
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3597
    |holder|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3598
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3599
    (holder := builder bindingAt:#projectListShown) isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3600
	holder := BlockValue 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3601
			with:[:v | v value == #project]
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3602
			argument:(self organizerMode).
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3603
	builder aspectAt:#projectListShown put: holder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3604
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3605
    ^ holder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3606
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3607
    "Modified: / 18.2.2000 / 00:31:19 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3608
    "Created: / 18.2.2000 / 00:32:09 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3609
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3610
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3611
!OrganizerCanvas methodsFor:'change & update'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3612
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3613
update:something with:aParameter from:changedObject
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3614
    |orgMode trigger classes selectedClassesHolder selectionValue|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3615
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3616
    orgMode := organizerMode value.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3617
    selectedClassesHolder := self selectedClasses.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3618
    classes := selectedClassesHolder value copy.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3619
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3620
    changedObject == organizerMode ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3621
	self classHierarchyListSlaveMode value:true.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3622
	self classInheritanceListSlaveMode value:true.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3623
	self classListSlaveMode value:true.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3624
	self categoryListSlaveMode value:true.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3625
	self nameSpaceListSlaveMode value:true.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3626
	self projectListSlaveMode value:true.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3627
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3628
	self updateOrganizationFromChangedClass.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3629
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3630
	orgMode == #category ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3631
"/            trigger := self forceClassCategoryGeneratorTrigger.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3632
	] ifFalse:[ orgMode == #hierarchy ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3633
"/            trigger := self forceClassHierarchyGeneratorTrigger.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3634
	] ifFalse:[ orgMode == #namespace ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3635
"/            trigger := self forceNamespaceGeneratorTrigger
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3636
	] ifFalse:[ orgMode == #project ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3637
	    trigger := self forceProjectGeneratorTrigger.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3638
	] ifFalse:[ ((orgMode == #classHierarchy) or:[orgMode == #classInheritance]) ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3639
"/            trigger := self forceClassHierarchyGeneratorTrigger.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3640
	]]]]].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3641
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3642
	"/ must update the packageFilter
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3643
	orgMode == #project ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3644
	    packageFilter setValue:(self selectedProjects value)
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3645
	] ifFalse:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3646
	    packageFilter value:nil
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3647
	].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3648
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3649
	trigger notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3650
	    trigger value:true
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3651
	].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3652
	"/ selectedClassesHolder value:classes.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3653
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3654
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3655
	(orgMode == #classHierarchy or:[orgMode == #hierarchy]) ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3656
	    classHierarchyListSlaveMode value:false.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3657
	].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3658
	(orgMode == #classInheritance) ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3659
	    classInheritanceListSlaveMode value:false.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3660
	].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3661
	(orgMode == #classInheritance 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3662
	or:[orgMode == #classHierarchy 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3663
	or:[orgMode == #hierarchy]])
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3664
	ifFalse:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3665
	    classListSlaveMode value:false.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3666
	].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3667
	(orgMode == #category) ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3668
	    categoryListSlaveMode value:false.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3669
	].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3670
	(orgMode == #namespace) ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3671
	    namespaceListSlaveMode value:false.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3672
	].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3673
	(orgMode == #project) ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3674
	    projectListSlaveMode value:false.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3675
	].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3676
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3677
	^ self
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3678
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3679
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3680
    changedObject == selectedClasses ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3681
	selectedClasses value size ~~ 0 ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3682
	    (orgMode ~~ #classHierarchy) ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3683
		self updateOrganizationFromChangedClass.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3684
	    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3685
	]
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3686
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3687
"/    changedObject == selectedNamespaces ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3688
"/ self halt.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3689
"/    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3690
    changedObject == nameSpaceFilterSelection ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3691
	selectionValue := nameSpaceFilterSelection value.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3692
	selectionValue size > 1 ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3693
	    nameSpaceFilterSelection value:(OrderedCollection with:selectionValue first).
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3694
	    selectionValue := nameSpaceFilterSelection value.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3695
	].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3696
	self selectedNamespaces value:selectionValue.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3697
	selectionValue size > 0 ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3698
	    self nameSpaceFilterSelectedNameSpace setValue:selectionValue first.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3699
	    self updateNameSpaceLabel.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3700
	].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3701
	self nameSpaceFilter value: selectionValue.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3702
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3703
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3704
    super update:something with:aParameter from:changedObject
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3705
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3706
    "Modified: / 26.2.2000 / 18:02:02 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3707
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3708
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3709
updateCategorySelectionFromClasses
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3710
    |allEntry oldSelectedCategories categories|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3711
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3712
    allEntry := self class nameListEntryForALL.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3713
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3714
    categories := Set new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3715
    oldSelectedCategories := self selectedCategories value.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3716
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3717
    "/ category-selection feedBack;
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3718
    "/ if '* all *' was in its selection, keep it (to avoid updating the classList)
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3719
    (oldSelectedCategories size > 0 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3720
    and:[oldSelectedCategories includes:allEntry]) ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3721
	categories add:allEntry
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3722
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3723
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3724
    (self selectedClasses value ? #()) do:[:eachSelectedClass |
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3725
	|cat cls|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3726
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3727
	cls := eachSelectedClass theNonMetaclass.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3728
	cls isPrivate ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3729
	    cls := cls topOwningClass.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3730
	].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3731
	cat := cls category.   
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3732
	categories add:cat.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3733
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3734
    (categories conform:[:each | (self selectedCategories value ? #()) includes:each]) ifFalse:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3735
	self selectedCategories value:categories.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3736
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3737
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3738
    "Modified: / 18.2.2000 / 13:17:36 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3739
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3740
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3741
updateNamespaceSelectionFromClasses
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3742
    "invoked when switching to the namespace-organization;
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3743
     update selected namespaces from the set of selected classes"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3744
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3745
    |allEntry classes selectedNamespaces oldSelectedNamespaces|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3746
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3747
    allEntry := self class nameListEntryForALL.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3748
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3749
    classes := self selectedClasses value.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3750
    classes size > 0 ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3751
	selectedNamespaces := self selectedNamespaces value.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3752
	oldSelectedNamespaces := (selectedNamespaces ? #()) asSet.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3753
	selectedNamespaces := Set new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3754
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3755
	"/ namespace-selection feedBack;
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3756
	"/ if '* all *' was in its selection, keep it (to avoid updating the classList)
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3757
	(oldSelectedNamespaces size > 0 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3758
	and:[oldSelectedNamespaces includes:allEntry]) 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3759
	ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3760
	    selectedNamespaces add:allEntry.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3761
	].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3762
	selectedNamespaces 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3763
	    addAll:(classes 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3764
			collect:[:eachClass | eachClass theNonMetaclass topNameSpace name.]).
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3765
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3766
	classes := classes copy.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3767
	"/ selectedNamespaces ~= oldSelectedNamespaces ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3768
	    self selectedNamespaces value:selectedNamespaces.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3769
	"/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3770
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3771
	classes ~= self selectedClasses value ifTrue:[self halt:'oops'].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3772
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3773
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3774
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3775
updateOrganizationFromChangedClass
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3776
    |orgMode selectedClassesHolder selectedClasses classHierarchyTopClassHolder commonSuperClass|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3777
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3778
    orgMode := organizerMode value.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3779
    selectedClassesHolder := self selectedClasses.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3780
    selectedClasses := selectedClassesHolder value.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3781
    classHierarchyTopClassHolder := self classHierarchyTopClass.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3782
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3783
    orgMode == #category ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3784
	self updateCategorySelectionFromClasses.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3785
	^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3786
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3787
    orgMode == #namespace ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3788
	self updateNamespaceSelectionFromClasses.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3789
	^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3790
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3791
    orgMode == #project ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3792
	self updateProjectSelectionFromClasses.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3793
	^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3794
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3795
    orgMode == #hierarchy ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3796
	classHierarchyTopClassHolder value:nil.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3797
	^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3798
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3799
    (orgMode == #classHierarchy) ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3800
"/        (selectedClasses size == 1) ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3801
"/            self classHierarchyTopClass value:selectedClasses first
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3802
"/        ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3803
	"/ classHierarchyTopClassHolder value isNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3804
	selectedClasses size > 0 ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3805
	    commonSuperClass := selectedClasses 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3806
				    inject:selectedClasses first 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3807
				    into:[:commonSuperClass :thisClass | commonSuperClass commonSuperclass:thisClass ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3808
	    classHierarchyTopClassHolder value:commonSuperClass "selectedClasses first".
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3809
	].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3810
	"/ ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3811
	^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3812
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3813
    (orgMode == #classInheritance) ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3814
	classHierarchyTopClassHolder value:
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3815
	    ((selectedClasses size == 1) ifTrue:[selectedClasses first] ifFalse:nil).
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3816
	^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3817
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3818
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3819
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3820
updateProjectSelectionFromClasses
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3821
    "invoked when switching to the projects-organization;
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3822
     update selected projects from the set of selected classes"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3823
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3824
    |allEntry classes selectedProjects oldSelectedProjects|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3825
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3826
^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3827
    allEntry := self class nameListEntryForALL.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3828
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3829
    classes := self selectedClasses value.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3830
    classes size > 0 ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3831
	selectedProjects := self selectedProjects value.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3832
	oldSelectedProjects := (selectedProjects ? #()) asSet.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3833
	selectedProjects := Set new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3834
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3835
	"/ project-selection feedBack;
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3836
	"/ if '* all *' was in its selection, keep it (to avoid updating the classList)
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3837
	(oldSelectedProjects size > 0 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3838
	and:[oldSelectedProjects includes:allEntry]) 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3839
	ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3840
	    selectedProjects add:allEntry.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3841
	].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3842
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3843
	classes do:[:eachClass |
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3844
	    selectedProjects add:(eachClass theNonMetaclass package).
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3845
	    eachClass allSelectorsAndMethodsDo:[:sel :mthd |
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3846
		selectedProjects add:(mthd package).
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3847
	    ]
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3848
	].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3849
	selectedProjects ~= oldSelectedProjects ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3850
	    self selectedProjects value:selectedProjects.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3851
	].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3852
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3853
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3854
    "Created: / 26.2.2000 / 01:09:13 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3855
    "Modified: / 26.2.2000 / 01:20:59 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3856
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3857
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3858
!OrganizerCanvas methodsFor:'forwarder operations'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3859
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3860
moveClasses:classes toCategory:cat
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3861
    self masterApplication moveClasses:classes toCategory:cat
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3862
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3863
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3864
moveClasses:classes toProject:cat
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3865
    self masterApplication moveClasses:classes toProject:cat
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3866
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3867
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3868
moveMethods:methods toClass:cls
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3869
    self masterApplication moveMethods:methods toClass:cls.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3870
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3871
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3872
moveMethods:methods toProject:package
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3873
    self masterApplication moveMethods:methods toProject:package.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3874
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3875
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3876
!OrganizerCanvas methodsFor:'private'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3877
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3878
nameSpaceListWidgetWasBuilt:widget
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3879
    |list|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3880
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3881
    "/ sigh - cannot do this in the nameSpaceListWidget method,
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3882
    "/ because the GUI is build late (when the menu is popped up the first time)
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3883
    widget application immediateUpdate:true.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3884
    list := widget builder componentAt:#List.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3885
    list autoHideHorizontalScrollBar:true.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3886
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3887
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3888
release
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3889
    super release.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3890
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3891
    nameSpaceFilterSelection removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3892
    organizerMode removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3893
    selectedClasses removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3894
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3895
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3896
!OrganizerCanvas class methodsFor:'documentation'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3897
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3898
version
6269
c9bfca4d93dc metrics display
Claus Gittinger <cg@exept.de>
parents: 6259
diff changeset
  3899
    ^ '$Header: /cvs/stx/stx/libtool/Tools_OrganizerCanvas.st,v 1.5 2005-04-20 16:27:44 cg Exp $'
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3900
! !