diff --git a/src/Pyramid-Bloc/PyramidTreePlugin.class.st b/src/Pyramid-Bloc/PyramidTreePlugin.class.st index 80f530b8..7fd6ed24 100644 --- a/src/Pyramid-Bloc/PyramidTreePlugin.class.st +++ b/src/Pyramid-Bloc/PyramidTreePlugin.class.st @@ -45,36 +45,46 @@ PyramidTreePlugin class >> addDefaultOnLibrary: library [ PyramidTreePlugin class >> addOnLibrary: aLibrary [ self addDefaultOnLibrary: aLibrary. - self addPystonOnLibrary: aLibrary + self addPystonOnLibrary: aLibrary. + self addPystashOnLibrary: aLibrary ] { #category : #'as yet unclassified' } -PyramidTreePlugin class >> addPystonOnLibrary: library [ +PyramidTreePlugin class >> addPragma: aSymbol onLibrary: aLibrary withIcon: anIcon [ | pragmas methods packages | - pragmas := Pragma allNamed: #pySTON. + pragmas := Pragma allNamed: aSymbol. methods := (pragmas collect: #method) asSet. packages := (methods collect: #package) asSet. packages do: [ :package | | factories | - factories := methods - select: [ :method | method package = package ] - thenCollect: [ :method | - PyramidElementToAddFactory new - elementIcon: (Smalltalk ui icons iconNamed: - method methodClass soleInstance systemIconName); - elementName: method selector; - elementBlock: [ - (method methodClass soleInstance perform: - method selector) materializeAsBlElement ]; - yourself ]. - library + factories := self factoriesFromMethods: methods inPackage: package. + factories ifNotEmpty: [ aLibrary addCategoryWithName: package name - withIcon: (Smalltalk ui icons iconNamed: #smallInfo) - withAllFactories: factories asArray sorted ]. + withIcon: anIcon + withAllFactories: factories asArray sorted ] + ]. - ^ library + ^ aLibrary +] + +{ #category : #'as yet unclassified' } +PyramidTreePlugin class >> addPystashOnLibrary: library [ + + ^ self + addPragma: #pyStash + onLibrary: library + withIcon: (Smalltalk ui icons iconNamed: #smallSave). +] + +{ #category : #'as yet unclassified' } +PyramidTreePlugin class >> addPystonOnLibrary: library [ + + ^ self + addPragma: #pySTON + onLibrary: library + withIcon: (Smalltalk ui icons iconNamed: #smallSave) ] { #category : #accessing } @@ -85,6 +95,26 @@ PyramidTreePlugin class >> columnsBuildersClasses [ ^ ColumnsBuildersClasses ] +{ #category : #'as yet unclassified' } +PyramidTreePlugin class >> factoriesFromMethods: methods inPackage: package [ + + package ifNil: [ ^ { } ]. + + ^ methods + select: [ :method | + method package = package and: [ + method methodClass isObsolete not ] ] + thenCollect: [ :method | + PyramidElementToAddFactory new + elementIcon: (Smalltalk ui icons iconNamed: + method methodClass soleInstance systemIconName); + elementName: method selector; + elementBlock: [ + (method methodClass soleInstance perform: method selector) + materializeAsBlElement ]; + yourself ] +] + { #category : #initialization } PyramidTreePlugin class >> install [ "Do some stuff here when the plugin used class oriented behavior" diff --git a/src/Pyramid-Examples/PyramidSimpleExamples.class.st b/src/Pyramid-Examples/PyramidSimpleExamples.class.st index 9a8447e9..cacc39c1 100644 --- a/src/Pyramid-Examples/PyramidSimpleExamples.class.st +++ b/src/Pyramid-Examples/PyramidSimpleExamples.class.st @@ -1,179 +1,166 @@ Class { - #name : 'PyramidSimpleExamples', - #superclass : 'Object', - #category : 'Pyramid-Examples', - #package : 'Pyramid-Examples' + #name : #PyramidSimpleExamples, + #superclass : #Object, + #category : #'Pyramid-Examples' } -{ #category : 'pyramid-serialized-bloc' } +{ #category : #'pyramid-serialized-bloc' } PyramidSimpleExamples class >> imageProxy [ - - ^ [ "BlStashSerializer" -{(BlElement new + "This class has been generated using Pyramid. + + By: YannLEGOFF + 2024-07-23 09:32:34" + + + ^ [ {(BlElement new id: #A; background: (BlImageBackground new + image: (PyramidExternalRessourceProxy new + pyramidExternalRessourceSource: (PyramidExternalRessourceSource new + target: Object; + selector: #iconNamed:; + arguments: {#pharoBig}; + yourself); + yourself); opacity: 1.0; - image: PyramidExternalRessourceProxy new; yourself); - layout: BlBasicLayout uniqueInstance; - constraintsDo: [:constraints | constraints horizontal exact: 200.0. - constraints vertical exact: 200.0 ]; - yourself)} - ] value + constraintsDo: [:constraints | constraints horizontal exact: 256.0. + constraints vertical exact: 256.0 ]; + yourself)} ] value ] -{ #category : 'pyramid-serialized-bloc' } +{ #category : #'pyramid-serialized-bloc' } PyramidSimpleExamples class >> little_cat_in_black [ - - ^ [ "BlStashSerializer" -| blellipsegeometry1 blpaintbackground2 bltransparentbackground3 point4 point5 blpaintbackground6 blroundedrectanglegeometry7 | -blellipsegeometry1 := BlEllipseGeometry new. + "This class has been generated using Pyramid. + + By: YannLEGOFF + 2024-07-29 11:47:06" + + + ^ [ | blpaintbackground1 blpaintbackground2 | +blpaintbackground1 := BlPaintBackground new. blpaintbackground2 := BlPaintBackground new. -bltransparentbackground3 := BlTransparentBackground new. -point4 := Point new. -point5 := Point new. -blpaintbackground6 := BlPaintBackground new. -blroundedrectanglegeometry7 := BlRoundedRectangleGeometry cornerRadius: 12. {(BlElement new + background: (blpaintbackground2 + paint: (BlColorPaint new + color: (Color r: 0.0 g: 0.0 b: 0.0 alpha: 1.0); + yourself); + opacity: 1.0; + yourself); + constraintsDo: [:constraints | constraints horizontal matchParent. + constraints vertical matchParent ]; + layout: BlFrameLayout new; addChildren: {(BlElement new + clipChildren: false; + constraintsDo: [:constraints | constraints frame horizontal alignCenter. + constraints frame vertical alignTopAt: 0.3. + constraints position: 373.0 @ 166.0 ]; addChildren: {(BlElement new - addChildren: {(BlElement new - id: #E; - background: (blpaintbackground2 - opacity: 1.0; - paint: (BlColorPaint new - color: (Color r: 0.0 g: 0.0 b: 0.0 alpha: 1.0); - yourself); - yourself); - geometry: blellipsegeometry1; - layout: BlBasicLayout uniqueInstance; - constraintsDo: [:constraints | constraints horizontal exact: 10.0. - constraints vertical exact: 100.0. - constraints position: 43.0 @ 46.0 ]; - yourself)}; - id: #C; - background: (blpaintbackground6 - opacity: 1.0; + background: (blpaintbackground1 paint: (BlColorPaint new color: (Color r: 1.0 g: 1.0 b: 1.0 alpha: 1.0); yourself); + opacity: 1.0; yourself); - geometry: blroundedrectanglegeometry7; - layout: BlBasicLayout uniqueInstance; + geometry: (BlRoundedRectangleGeometry cornerRadius: 12); constraintsDo: [:constraints | constraints horizontal exact: 100.0. constraints vertical exact: 100.0. constraints position: -200 @ 0 ]; - yourself) . - (BlElement new addChildren: {(BlElement new - id: #E; background: blpaintbackground2; - geometry: blellipsegeometry1; - layout: BlBasicLayout uniqueInstance; + geometry: BlEllipseGeometry new; constraintsDo: [:constraints | constraints horizontal exact: 10.0. constraints vertical exact: 100.0. constraints position: 43.0 @ 46.0 ]; + id: #E; yourself)}; - id: #D; - background: blpaintbackground6; - geometry: blroundedrectanglegeometry7; - layout: BlBasicLayout uniqueInstance; + id: #C; + yourself) . + (BlElement new + background: blpaintbackground1; + geometry: (BlRoundedRectangleGeometry cornerRadius: 12); constraintsDo: [:constraints | constraints horizontal exact: 100.0. constraints vertical exact: 100.0. constraints position: 150 @ 0 ]; + addChildren: {(BlElement new + background: blpaintbackground2; + geometry: BlEllipseGeometry new; + constraintsDo: [:constraints | constraints horizontal exact: 10.0. + constraints vertical exact: 100.0. + constraints position: 43.0 @ 46.0 ]; + id: #E; + yourself)}; + id: #D; yourself)}; id: #eyes; - background: (bltransparentbackground3 - opacity: 1.0; - yourself); - clipChildren: false; - layout: BlBasicLayout uniqueInstance; - constraintsDo: [:constraints | constraints frame horizontal alignCenter. - constraints frame vertical alignTopAt: 0.3. - constraints position: 373.0 @ 166.0 ]; yourself) . (BlElement new + geometry: BlRectangleGeometry new; + constraintsDo: [:constraints | constraints frame horizontal alignCenter. + constraints frame vertical alignCenter. + constraints position: 373.0 @ 263.0 ]; addChildren: {(BlElement new + background: blpaintbackground1; + geometry: BlEllipseGeometry new; id: #G; - background: blpaintbackground6; - geometry: blellipsegeometry1; - layout: BlBasicLayout uniqueInstance; yourself) . (BlElement new - id: #H; - background: blpaintbackground6; + background: blpaintbackground1; geometry: (BlRoundedRectangleGeometry cornerRadii: (BlCornerRadii new topLeft: 12; topRight: 12; bottomLeft: 0; bottomRight: 0; yourself)); - layout: BlBasicLayout uniqueInstance; constraintsDo: [:constraints | constraints vertical exact: 25.0 ]; + id: #H; yourself)}; id: #nose; - background: bltransparentbackground3; - geometry: BlRectangleGeometry new; - layout: BlBasicLayout uniqueInstance; - constraintsDo: [:constraints | constraints frame horizontal alignCenter. - constraints frame vertical alignCenter. - constraints position: 373.0 @ 263.0 ]; yourself) . (BlElement new + clipChildren: false; + constraintsDo: [:constraints | constraints frame horizontal alignCenter. + constraints frame vertical alignTopAt: 0.6. + constraints position: 373.0 @ 364.0 ]; addChildren: {(BlElement new - id: #J; - background: blpaintbackground6; - geometry: blellipsegeometry1; - layout: BlBasicLayout uniqueInstance; - constraintsDo: [:constraints | constraints horizontal exact: 150. + background: blpaintbackground1; + geometry: BlEllipseGeometry new; + constraintsDo: [:constraints | constraints horizontal exact: 150.0. constraints vertical exact: 10.0. constraints position: 100.0 @ 0 ]; + id: #J; yourself) . (BlElement new - id: #K; - background: blpaintbackground6; - geometry: blellipsegeometry1; - layout: BlBasicLayout uniqueInstance; - constraintsDo: [:constraints | constraints horizontal exact: 150. + background: blpaintbackground1; + geometry: BlEllipseGeometry new; + constraintsDo: [:constraints | constraints horizontal exact: 150.0. constraints vertical exact: 10.0. constraints position: 80 @ 30 ]; + id: #K; yourself) . (BlElement new - id: #L; - background: blpaintbackground6; - geometry: blellipsegeometry1; - layout: BlBasicLayout uniqueInstance; - constraintsDo: [:constraints | constraints horizontal exact: 150. + background: blpaintbackground1; + geometry: BlEllipseGeometry new; + constraintsDo: [:constraints | constraints horizontal exact: 150.0. constraints vertical exact: 10.0. constraints position: -200 @ 0 ]; + id: #L; yourself) . (BlElement new - id: #M; - background: blpaintbackground6; - geometry: blellipsegeometry1; - layout: BlBasicLayout uniqueInstance; - constraintsDo: [:constraints | constraints horizontal exact: 150. + background: blpaintbackground1; + geometry: BlEllipseGeometry new; + constraintsDo: [:constraints | constraints horizontal exact: 150.0. constraints vertical exact: 10.0. constraints position: -180 @ 30 ]; + id: #M; yourself)}; id: #mustach; - background: bltransparentbackground3; - clipChildren: false; - layout: BlBasicLayout uniqueInstance; - constraintsDo: [:constraints | constraints frame horizontal alignCenter. - constraints frame vertical alignTopAt: 0.6. - constraints position: 373.0 @ 364.0 ]; yourself)}; id: #background; - background: blpaintbackground2; - layout: BlFrameLayout new; - constraintsDo: [:constraints | constraints horizontal matchParent. - constraints vertical matchParent ]; - yourself)} - ] value + yourself)} ] value ] -{ #category : 'pyramid-serialized-bloc' } +{ #category : #'pyramid-serialized-bloc' } PyramidSimpleExamples class >> marble [ @@ -310,7 +297,7 @@ PyramidSimpleExamples class >> marble [ yourself) } ] value ] -{ #category : 'pyramid-serialized-bloc' } +{ #category : #'pyramid-serialized-bloc' } PyramidSimpleExamples class >> marble2 [ @@ -466,7 +453,7 @@ PyramidSimpleExamples class >> marble2 [ yourself) } ] value ] -{ #category : 'pyramid-serialized-bloc' } +{ #category : #'pyramid-serialized-bloc' } PyramidSimpleExamples class >> marble3 [ @@ -763,7 +750,7 @@ PyramidSimpleExamples class >> marble3 [ yourself) } ] value ] -{ #category : 'pyramid-serialized-bloc' } +{ #category : #'pyramid-serialized-bloc' } PyramidSimpleExamples class >> signal [ ^ [ "BlStashSerializer" @@ -826,7 +813,7 @@ blellipsegeometry2 := BlEllipseGeometry new. ] value ] -{ #category : 'pyramid-serialized-bloc' } +{ #category : #'pyramid-serialized-bloc' } PyramidSimpleExamples class >> signal_green [ ^ [ "BlStashSerializer" @@ -889,7 +876,7 @@ blellipsegeometry2 := BlEllipseGeometry new. ] value ] -{ #category : 'pyramid-serialized-bloc' } +{ #category : #'pyramid-serialized-bloc' } PyramidSimpleExamples class >> simpleFlowLayout [ ^ [ "BlStashSerializer" @@ -988,6 +975,6 @@ blinsets1 := BlInsets all: 5.0. ] value ] -{ #category : 'see class side' } +{ #category : #'see class side' } PyramidSimpleExamples >> seeClassSide [ ] diff --git a/src/Pyramid-Examples/package.st b/src/Pyramid-Examples/package.st index 35ceaa72..0b6144d4 100644 --- a/src/Pyramid-Examples/package.st +++ b/src/Pyramid-Examples/package.st @@ -1 +1 @@ -Package { #name : 'Pyramid-Examples' } +Package { #name : #'Pyramid-Examples' } diff --git a/src/Pyramid-Tests/PyramidAddChildCommandTest.class.st b/src/Pyramid-Tests/PyramidAddChildCommandTest.class.st index ad54c577..e67efd17 100644 --- a/src/Pyramid-Tests/PyramidAddChildCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidAddChildCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc' + #category : 'Pyramid-Tests-cases-plugin-bloc' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidAddMockCommandTest.class.st b/src/Pyramid-Tests/PyramidAddMockCommandTest.class.st index f1e52d3b..eff607cf 100644 --- a/src/Pyramid-Tests/PyramidAddMockCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidAddMockCommandTest.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidAddMockCommandTest, #superclass : #TestCase, - #category : #'Pyramid-Tests-cases-command' + #category : 'Pyramid-Tests-cases-command' } { #category : #tests } diff --git a/src/Pyramid-Tests/PyramidBackgroundImageCommandTest.class.st b/src/Pyramid-Tests/PyramidBackgroundImageCommandTest.class.st index f5308c6b..cdde4fdc 100644 --- a/src/Pyramid-Tests/PyramidBackgroundImageCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidBackgroundImageCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-visuals' + #category : 'Pyramid-Tests-cases-plugin-bloc-visuals' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidBackgroundOpacityCommandTest.class.st b/src/Pyramid-Tests/PyramidBackgroundOpacityCommandTest.class.st index 6f01df3d..3dff80ca 100644 --- a/src/Pyramid-Tests/PyramidBackgroundOpacityCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidBackgroundOpacityCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-visuals' + #category : 'Pyramid-Tests-cases-plugin-bloc-visuals' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidBackgroundPaintColorCommandTest.class.st b/src/Pyramid-Tests/PyramidBackgroundPaintColorCommandTest.class.st index ea72a86d..f18471ff 100644 --- a/src/Pyramid-Tests/PyramidBackgroundPaintColorCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidBackgroundPaintColorCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-visuals' + #category : 'Pyramid-Tests-cases-plugin-bloc-visuals' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidBackgroundPaintCommandTest.class.st b/src/Pyramid-Tests/PyramidBackgroundPaintCommandTest.class.st index 949a9ab7..ff09432c 100644 --- a/src/Pyramid-Tests/PyramidBackgroundPaintCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidBackgroundPaintCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-visuals' + #category : 'Pyramid-Tests-cases-plugin-bloc-visuals' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidBackgroundPaintLinearEndCommandTest.class.st b/src/Pyramid-Tests/PyramidBackgroundPaintLinearEndCommandTest.class.st index 116912ab..54e3f26a 100644 --- a/src/Pyramid-Tests/PyramidBackgroundPaintLinearEndCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidBackgroundPaintLinearEndCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-visuals' + #category : 'Pyramid-Tests-cases-plugin-bloc-visuals' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidBackgroundPaintLinearStartCommandTest.class.st b/src/Pyramid-Tests/PyramidBackgroundPaintLinearStartCommandTest.class.st index 31caf284..2eb0cc4d 100644 --- a/src/Pyramid-Tests/PyramidBackgroundPaintLinearStartCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidBackgroundPaintLinearStartCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-visuals' + #category : 'Pyramid-Tests-cases-plugin-bloc-visuals' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidBackgroundPaintRadialInnerCenterCommandTest.class.st b/src/Pyramid-Tests/PyramidBackgroundPaintRadialInnerCenterCommandTest.class.st index aac47749..ba48dc8c 100644 --- a/src/Pyramid-Tests/PyramidBackgroundPaintRadialInnerCenterCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidBackgroundPaintRadialInnerCenterCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-visuals' + #category : 'Pyramid-Tests-cases-plugin-bloc-visuals' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidBackgroundPaintRadialInnerRadiusCommandTest.class.st b/src/Pyramid-Tests/PyramidBackgroundPaintRadialInnerRadiusCommandTest.class.st index b9bfbd44..80a94e73 100644 --- a/src/Pyramid-Tests/PyramidBackgroundPaintRadialInnerRadiusCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidBackgroundPaintRadialInnerRadiusCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-visuals' + #category : 'Pyramid-Tests-cases-plugin-bloc-visuals' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidBackgroundPaintRadialOuterCenterCommandTest.class.st b/src/Pyramid-Tests/PyramidBackgroundPaintRadialOuterCenterCommandTest.class.st index ba329f0d..12bd8c40 100644 --- a/src/Pyramid-Tests/PyramidBackgroundPaintRadialOuterCenterCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidBackgroundPaintRadialOuterCenterCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-visuals' + #category : 'Pyramid-Tests-cases-plugin-bloc-visuals' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidBackgroundPaintRadialOuterRadiusCommandTest.class.st b/src/Pyramid-Tests/PyramidBackgroundPaintRadialOuterRadiusCommandTest.class.st index 742ef40e..4cdaddda 100644 --- a/src/Pyramid-Tests/PyramidBackgroundPaintRadialOuterRadiusCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidBackgroundPaintRadialOuterRadiusCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-visuals' + #category : 'Pyramid-Tests-cases-plugin-bloc-visuals' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidBackgroundPaintStopsCommandTest.class.st b/src/Pyramid-Tests/PyramidBackgroundPaintStopsCommandTest.class.st index 284afe89..6e52bb48 100644 --- a/src/Pyramid-Tests/PyramidBackgroundPaintStopsCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidBackgroundPaintStopsCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-visuals' + #category : 'Pyramid-Tests-cases-plugin-bloc-visuals' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidBackgroundStopsInputPresenterTest.class.st b/src/Pyramid-Tests/PyramidBackgroundStopsInputPresenterTest.class.st index 576642a9..efe9c90b 100644 --- a/src/Pyramid-Tests/PyramidBackgroundStopsInputPresenterTest.class.st +++ b/src/Pyramid-Tests/PyramidBackgroundStopsInputPresenterTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidInputPresenterTest', #classTraits : 'TPyramidInputPresenterTest classTrait', - #category : #'Pyramid-Tests-cases-specs-custom' + #category : 'Pyramid-Tests-cases-specs-custom' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidBackgroundTypeCommandTest.class.st b/src/Pyramid-Tests/PyramidBackgroundTypeCommandTest.class.st index b3c75e7b..b63ada96 100644 --- a/src/Pyramid-Tests/PyramidBackgroundTypeCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidBackgroundTypeCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-visuals' + #category : 'Pyramid-Tests-cases-plugin-bloc-visuals' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidBasicConstraintsInputPresenterTest.class.st b/src/Pyramid-Tests/PyramidBasicConstraintsInputPresenterTest.class.st index 2b2e2fed..e8705ae3 100644 --- a/src/Pyramid-Tests/PyramidBasicConstraintsInputPresenterTest.class.st +++ b/src/Pyramid-Tests/PyramidBasicConstraintsInputPresenterTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidInputPresenterTest', #classTraits : 'TPyramidInputPresenterTest classTrait', - #category : #'Pyramid-Tests-cases-specs-custom' + #category : 'Pyramid-Tests-cases-specs-custom' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidBasicExactHorizontalConstraintsBlocCommandTest.class.st b/src/Pyramid-Tests/PyramidBasicExactHorizontalConstraintsBlocCommandTest.class.st index ddb32c3c..b439ee0d 100644 --- a/src/Pyramid-Tests/PyramidBasicExactHorizontalConstraintsBlocCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidBasicExactHorizontalConstraintsBlocCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-layout' + #category : 'Pyramid-Tests-cases-plugin-bloc-layout' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidBasicExactVerticalConstraintsBlocCommandTest.class.st b/src/Pyramid-Tests/PyramidBasicExactVerticalConstraintsBlocCommandTest.class.st index a1165f8e..948798f2 100644 --- a/src/Pyramid-Tests/PyramidBasicExactVerticalConstraintsBlocCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidBasicExactVerticalConstraintsBlocCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-layout' + #category : 'Pyramid-Tests-cases-plugin-bloc-layout' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidBasicHorizontalConstraintsBlocCommandTest.class.st b/src/Pyramid-Tests/PyramidBasicHorizontalConstraintsBlocCommandTest.class.st index 0c34c59c..2cb93cfb 100644 --- a/src/Pyramid-Tests/PyramidBasicHorizontalConstraintsBlocCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidBasicHorizontalConstraintsBlocCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-layout' + #category : 'Pyramid-Tests-cases-plugin-bloc-layout' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidBasicVerticalConstraintsBlocCommandTest.class.st b/src/Pyramid-Tests/PyramidBasicVerticalConstraintsBlocCommandTest.class.st index 6bd1493e..039f399c 100644 --- a/src/Pyramid-Tests/PyramidBasicVerticalConstraintsBlocCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidBasicVerticalConstraintsBlocCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-layout' + #category : 'Pyramid-Tests-cases-plugin-bloc-layout' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidBorderDashArrayCommandTest.class.st b/src/Pyramid-Tests/PyramidBorderDashArrayCommandTest.class.st index 618ef42f..f55b988d 100644 --- a/src/Pyramid-Tests/PyramidBorderDashArrayCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidBorderDashArrayCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-visuals' + #category : 'Pyramid-Tests-cases-plugin-bloc-visuals' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidBorderDashOffsetCommandTest.class.st b/src/Pyramid-Tests/PyramidBorderDashOffsetCommandTest.class.st index a7d65f33..17480fae 100644 --- a/src/Pyramid-Tests/PyramidBorderDashOffsetCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidBorderDashOffsetCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-visuals' + #category : 'Pyramid-Tests-cases-plugin-bloc-visuals' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidBorderLineCapCommandTest.class.st b/src/Pyramid-Tests/PyramidBorderLineCapCommandTest.class.st index dce90ad7..8e5f3bee 100644 --- a/src/Pyramid-Tests/PyramidBorderLineCapCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidBorderLineCapCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-visuals' + #category : 'Pyramid-Tests-cases-plugin-bloc-visuals' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidBorderLineJoinCommandTest.class.st b/src/Pyramid-Tests/PyramidBorderLineJoinCommandTest.class.st index fef84f1f..4e5db5ec 100644 --- a/src/Pyramid-Tests/PyramidBorderLineJoinCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidBorderLineJoinCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-visuals' + #category : 'Pyramid-Tests-cases-plugin-bloc-visuals' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidBorderMiterLimitCommandTest.class.st b/src/Pyramid-Tests/PyramidBorderMiterLimitCommandTest.class.st index f4ddb511..0697b6c0 100644 --- a/src/Pyramid-Tests/PyramidBorderMiterLimitCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidBorderMiterLimitCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-visuals' + #category : 'Pyramid-Tests-cases-plugin-bloc-visuals' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidBorderOpacityCommandTest.class.st b/src/Pyramid-Tests/PyramidBorderOpacityCommandTest.class.st index 77ba3328..e31aa4b0 100644 --- a/src/Pyramid-Tests/PyramidBorderOpacityCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidBorderOpacityCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-visuals' + #category : 'Pyramid-Tests-cases-plugin-bloc-visuals' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidBorderTypeCommandTest.class.st b/src/Pyramid-Tests/PyramidBorderTypeCommandTest.class.st index cc091120..9d79abf9 100644 --- a/src/Pyramid-Tests/PyramidBorderTypeCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidBorderTypeCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-visuals' + #category : 'Pyramid-Tests-cases-plugin-bloc-visuals' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidChangeOrderWithIndexCommandTest.class.st b/src/Pyramid-Tests/PyramidChangeOrderWithIndexCommandTest.class.st index 3f304800..7703a770 100644 --- a/src/Pyramid-Tests/PyramidChangeOrderWithIndexCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidChangeOrderWithIndexCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-order' + #category : 'Pyramid-Tests-cases-plugin-bloc-order' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidChangeTextCommandTest.class.st b/src/Pyramid-Tests/PyramidChangeTextCommandTest.class.st index 18dd1eb5..bc1edb85 100644 --- a/src/Pyramid-Tests/PyramidChangeTextCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidChangeTextCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-text' + #category : 'Pyramid-Tests-cases-plugin-bloc-text' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidClipChildrenCommandTest.class.st b/src/Pyramid-Tests/PyramidClipChildrenCommandTest.class.st index 07f02a09..b40c9836 100644 --- a/src/Pyramid-Tests/PyramidClipChildrenCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidClipChildrenCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc' + #category : 'Pyramid-Tests-cases-plugin-bloc' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidCollectionWithCallbacksTest.class.st b/src/Pyramid-Tests/PyramidCollectionWithCallbacksTest.class.st index 207bcdd4..adcd50c9 100644 --- a/src/Pyramid-Tests/PyramidCollectionWithCallbacksTest.class.st +++ b/src/Pyramid-Tests/PyramidCollectionWithCallbacksTest.class.st @@ -5,7 +5,7 @@ Class { 'valueToCheck', 'collection' ], - #category : #'Pyramid-Tests-cases-models' + #category : 'Pyramid-Tests-cases-models' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidColorInputMultiLinesPresenterTest.class.st b/src/Pyramid-Tests/PyramidColorInputMultiLinesPresenterTest.class.st index 2f26fe58..adf3bae6 100644 --- a/src/Pyramid-Tests/PyramidColorInputMultiLinesPresenterTest.class.st +++ b/src/Pyramid-Tests/PyramidColorInputMultiLinesPresenterTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidInputPresenterTest', #classTraits : 'TPyramidInputPresenterTest classTrait', - #category : #'Pyramid-Tests-cases-specs-custom' + #category : 'Pyramid-Tests-cases-specs-custom' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidColorInputPresenterTest.class.st b/src/Pyramid-Tests/PyramidColorInputPresenterTest.class.st index 6f5c1cfc..1c58b8cc 100644 --- a/src/Pyramid-Tests/PyramidColorInputPresenterTest.class.st +++ b/src/Pyramid-Tests/PyramidColorInputPresenterTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidInputPresenterTest', #classTraits : 'TPyramidInputPresenterTest classTrait', - #category : #'Pyramid-Tests-cases-specs-custom' + #category : 'Pyramid-Tests-cases-specs-custom' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidColorInputSingleLinePresenterTest.class.st b/src/Pyramid-Tests/PyramidColorInputSingleLinePresenterTest.class.st index 6c1bd946..284dd6c6 100644 --- a/src/Pyramid-Tests/PyramidColorInputSingleLinePresenterTest.class.st +++ b/src/Pyramid-Tests/PyramidColorInputSingleLinePresenterTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidInputPresenterTest', #classTraits : 'TPyramidInputPresenterTest classTrait', - #category : #'Pyramid-Tests-cases-specs-custom' + #category : 'Pyramid-Tests-cases-specs-custom' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidColorInputSingleLineWithPickupButtonPresenterTest.class.st b/src/Pyramid-Tests/PyramidColorInputSingleLineWithPickupButtonPresenterTest.class.st index c8cfa5c3..b6ba2ca0 100644 --- a/src/Pyramid-Tests/PyramidColorInputSingleLineWithPickupButtonPresenterTest.class.st +++ b/src/Pyramid-Tests/PyramidColorInputSingleLineWithPickupButtonPresenterTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidInputPresenterTest', #classTraits : 'TPyramidInputPresenterTest classTrait', - #category : #'Pyramid-Tests-cases-specs-custom' + #category : 'Pyramid-Tests-cases-specs-custom' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidCommandTest.class.st b/src/Pyramid-Tests/PyramidCommandTest.class.st index 8403402a..47d2cc06 100644 --- a/src/Pyramid-Tests/PyramidCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidCommandTest.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidCommandTest, #superclass : #TestCase, - #category : #'Pyramid-Tests-cases-command' + #category : 'Pyramid-Tests-cases-command' } { #category : #tests } diff --git a/src/Pyramid-Tests/PyramidCommandTestContainer.class.st b/src/Pyramid-Tests/PyramidCommandTestContainer.class.st index a9f8912a..17bc1f0f 100644 --- a/src/Pyramid-Tests/PyramidCommandTestContainer.class.st +++ b/src/Pyramid-Tests/PyramidCommandTestContainer.class.st @@ -6,7 +6,7 @@ Class { 'targetWithProp', 'prop' ], - #category : #'Pyramid-Tests-cases-command' + #category : 'Pyramid-Tests-cases-command' } { #category : #'as yet unclassified' } diff --git a/src/Pyramid-Tests/PyramidContextMenuPluginTest.class.st b/src/Pyramid-Tests/PyramidContextMenuPluginTest.class.st index f099b03f..262fddcf 100644 --- a/src/Pyramid-Tests/PyramidContextMenuPluginTest.class.st +++ b/src/Pyramid-Tests/PyramidContextMenuPluginTest.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidContextMenuPluginTest, #superclass : #TestCase, - #category : #'Pyramid-Tests-cases-plugin-context-menu' + #category : 'Pyramid-Tests-cases-plugin-context-menu' } { #category : #tests } diff --git a/src/Pyramid-Tests/PyramidCopyPastePluginTest.class.st b/src/Pyramid-Tests/PyramidCopyPastePluginTest.class.st index f4f63696..d00a9d3e 100644 --- a/src/Pyramid-Tests/PyramidCopyPastePluginTest.class.st +++ b/src/Pyramid-Tests/PyramidCopyPastePluginTest.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidCopyPastePluginTest, #superclass : #TestCase, - #category : #'Pyramid-Tests-cases-plugin-copy' + #category : 'Pyramid-Tests-cases-plugin-copy' } { #category : #tests } diff --git a/src/Pyramid-Tests/PyramidCornerRadiiInputPresenterTest.class.st b/src/Pyramid-Tests/PyramidCornerRadiiInputPresenterTest.class.st index cf93277f..8338fb3e 100644 --- a/src/Pyramid-Tests/PyramidCornerRadiiInputPresenterTest.class.st +++ b/src/Pyramid-Tests/PyramidCornerRadiiInputPresenterTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidInputPresenterTest', #classTraits : 'TPyramidInputPresenterTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-geometry' + #category : 'Pyramid-Tests-cases-plugin-bloc-geometry' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidDecreaseMockCommand.class.st b/src/Pyramid-Tests/PyramidDecreaseMockCommand.class.st index 6e1c22c6..07a22d3e 100644 --- a/src/Pyramid-Tests/PyramidDecreaseMockCommand.class.st +++ b/src/Pyramid-Tests/PyramidDecreaseMockCommand.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidDecreaseMockCommand, #superclass : #PyramidMockCommand, - #category : #'Pyramid-Tests-cases-command' + #category : 'Pyramid-Tests-cases-command' } { #category : #'as yet unclassified' } diff --git a/src/Pyramid-Tests/PyramidDynamicLayoutStrategyTest.class.st b/src/Pyramid-Tests/PyramidDynamicLayoutStrategyTest.class.st index 11469e58..5d9588bc 100644 --- a/src/Pyramid-Tests/PyramidDynamicLayoutStrategyTest.class.st +++ b/src/Pyramid-Tests/PyramidDynamicLayoutStrategyTest.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidDynamicLayoutStrategyTest, #superclass : #TestCase, - #category : #'Pyramid-Tests-cases-plugin-dynamic-layout' + #category : 'Pyramid-Tests-cases-plugin-dynamic-layout' } { #category : #tests } diff --git a/src/Pyramid-Tests/PyramidEditorBuilderTest.class.st b/src/Pyramid-Tests/PyramidEditorBuilderTest.class.st index 76a3d469..9fef616f 100644 --- a/src/Pyramid-Tests/PyramidEditorBuilderTest.class.st +++ b/src/Pyramid-Tests/PyramidEditorBuilderTest.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidEditorBuilderTest, #superclass : #TestCase, - #category : #'Pyramid-Tests-cases-core' + #category : 'Pyramid-Tests-cases-core' } { #category : #tests } diff --git a/src/Pyramid-Tests/PyramidEditorTest.class.st b/src/Pyramid-Tests/PyramidEditorTest.class.st index baab7d2e..bdee6a3c 100644 --- a/src/Pyramid-Tests/PyramidEditorTest.class.st +++ b/src/Pyramid-Tests/PyramidEditorTest.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidEditorTest, #superclass : #TestCase, - #category : #'Pyramid-Tests-cases-core' + #category : 'Pyramid-Tests-cases-core' } { #category : #tests } diff --git a/src/Pyramid-Tests/PyramidElementIdCommandTest.class.st b/src/Pyramid-Tests/PyramidElementIdCommandTest.class.st index b235dc3b..77217d3e 100644 --- a/src/Pyramid-Tests/PyramidElementIdCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidElementIdCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc' + #category : 'Pyramid-Tests-cases-plugin-bloc' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidElementIdSortFunctionTest.class.st b/src/Pyramid-Tests/PyramidElementIdSortFunctionTest.class.st index 46f21802..21a5bb51 100644 --- a/src/Pyramid-Tests/PyramidElementIdSortFunctionTest.class.st +++ b/src/Pyramid-Tests/PyramidElementIdSortFunctionTest.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidElementIdSortFunctionTest, #superclass : #TestCase, - #category : #'Pyramid-Tests-cases-bloc-utils' + #category : 'Pyramid-Tests-cases-bloc-utils' } { #category : #tests } diff --git a/src/Pyramid-Tests/PyramidElementsManipulationHelperTest.class.st b/src/Pyramid-Tests/PyramidElementsManipulationHelperTest.class.st index 691ca691..3a6ea220 100644 --- a/src/Pyramid-Tests/PyramidElementsManipulationHelperTest.class.st +++ b/src/Pyramid-Tests/PyramidElementsManipulationHelperTest.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidElementsManipulationHelperTest, #superclass : #TestCase, - #category : #'Pyramid-Tests-cases-bloc-utils' + #category : 'Pyramid-Tests-cases-bloc-utils' } { #category : #'as yet unclassified' } diff --git a/src/Pyramid-Tests/PyramidElevationSortFunctionTest.class.st b/src/Pyramid-Tests/PyramidElevationSortFunctionTest.class.st index 9ad0b773..4609c119 100644 --- a/src/Pyramid-Tests/PyramidElevationSortFunctionTest.class.st +++ b/src/Pyramid-Tests/PyramidElevationSortFunctionTest.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidElevationSortFunctionTest, #superclass : #TestCase, - #category : #'Pyramid-Tests-cases-bloc-utils' + #category : 'Pyramid-Tests-cases-bloc-utils' } { #category : #tests } diff --git a/src/Pyramid-Tests/PyramidExternalRessourceDummyForTest.class.st b/src/Pyramid-Tests/PyramidExternalRessourceDummyForTest.class.st index c23baa5c..66fc643e 100644 --- a/src/Pyramid-Tests/PyramidExternalRessourceDummyForTest.class.st +++ b/src/Pyramid-Tests/PyramidExternalRessourceDummyForTest.class.st @@ -4,7 +4,7 @@ Class { #instVars : [ 'dummyValue' ], - #category : #'Pyramid-Tests-cases-external-ressources' + #category : 'Pyramid-Tests-cases-external-ressources' } { #category : #'tests - other' } diff --git a/src/Pyramid-Tests/PyramidExternalRessourceProxyTest.class.st b/src/Pyramid-Tests/PyramidExternalRessourceProxyTest.class.st index 53319120..40d6c889 100644 --- a/src/Pyramid-Tests/PyramidExternalRessourceProxyTest.class.st +++ b/src/Pyramid-Tests/PyramidExternalRessourceProxyTest.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidExternalRessourceProxyTest, #superclass : #TestCase, - #category : #'Pyramid-Tests-cases-external-ressources' + #category : 'Pyramid-Tests-cases-external-ressources' } { #category : #'tests - other' } diff --git a/src/Pyramid-Tests/PyramidExternalRessourceSourceTest.class.st b/src/Pyramid-Tests/PyramidExternalRessourceSourceTest.class.st index 5007962a..41367f7c 100644 --- a/src/Pyramid-Tests/PyramidExternalRessourceSourceTest.class.st +++ b/src/Pyramid-Tests/PyramidExternalRessourceSourceTest.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidExternalRessourceSourceTest, #superclass : #TestCase, - #category : #'Pyramid-Tests-cases-external-ressources' + #category : 'Pyramid-Tests-cases-external-ressources' } { #category : #tests } diff --git a/src/Pyramid-Tests/PyramidFakeExtension.class.st b/src/Pyramid-Tests/PyramidFakeExtension.class.st index 72a83283..55d5a239 100644 --- a/src/Pyramid-Tests/PyramidFakeExtension.class.st +++ b/src/Pyramid-Tests/PyramidFakeExtension.class.st @@ -6,7 +6,7 @@ Class { 'editor', 'projectModel' ], - #category : #'Pyramid-Tests-cases-plugin-space' + #category : 'Pyramid-Tests-cases-plugin-space' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidFakePlugin.class.st b/src/Pyramid-Tests/PyramidFakePlugin.class.st index 34d9e9fe..8197d415 100644 --- a/src/Pyramid-Tests/PyramidFakePlugin.class.st +++ b/src/Pyramid-Tests/PyramidFakePlugin.class.st @@ -6,7 +6,7 @@ Class { 'configureBuilder', 'connectOn' ], - #category : #'Pyramid-Tests-cases-core' + #category : 'Pyramid-Tests-cases-core' } { #category : #asserting } diff --git a/src/Pyramid-Tests/PyramidFakePluginThatShouldNotBeInstalled.class.st b/src/Pyramid-Tests/PyramidFakePluginThatShouldNotBeInstalled.class.st index 7f726cff..3a2a9971 100644 --- a/src/Pyramid-Tests/PyramidFakePluginThatShouldNotBeInstalled.class.st +++ b/src/Pyramid-Tests/PyramidFakePluginThatShouldNotBeInstalled.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidFakePluginThatShouldNotBeInstalled, #superclass : #PyramidFakePlugin, - #category : #'Pyramid-Tests-cases-core' + #category : 'Pyramid-Tests-cases-core' } { #category : #asserting } diff --git a/src/Pyramid-Tests/PyramidFakePropertyForTestStrategy.class.st b/src/Pyramid-Tests/PyramidFakePropertyForTestStrategy.class.st index 13d1a2f2..22be45a7 100644 --- a/src/Pyramid-Tests/PyramidFakePropertyForTestStrategy.class.st +++ b/src/Pyramid-Tests/PyramidFakePropertyForTestStrategy.class.st @@ -4,7 +4,7 @@ Class { #instVars : [ 'properties' ], - #category : #'Pyramid-Tests-cases-property' + #category : 'Pyramid-Tests-cases-property' } { #category : #'as yet unclassified' } diff --git a/src/Pyramid-Tests/PyramidFlowLayoutOrientationPresenterTest.class.st b/src/Pyramid-Tests/PyramidFlowLayoutOrientationPresenterTest.class.st index a112b867..ddc86103 100644 --- a/src/Pyramid-Tests/PyramidFlowLayoutOrientationPresenterTest.class.st +++ b/src/Pyramid-Tests/PyramidFlowLayoutOrientationPresenterTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidInputPresenterTest', #classTraits : 'TPyramidInputPresenterTest classTrait', - #category : #'Pyramid-Tests-cases-specs-custom' + #category : 'Pyramid-Tests-cases-specs-custom' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidFontSizeCommandTest.class.st b/src/Pyramid-Tests/PyramidFontSizeCommandTest.class.st index effab2f4..b49ff25f 100644 --- a/src/Pyramid-Tests/PyramidFontSizeCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidFontSizeCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidFontAttributeCommandTest', #classTraits : 'TPyramidFontAttributeCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-text' + #category : 'Pyramid-Tests-cases-plugin-bloc-text' } { #category : #'as yet unclassified' } diff --git a/src/Pyramid-Tests/PyramidFontWeightCommandTest.class.st b/src/Pyramid-Tests/PyramidFontWeightCommandTest.class.st index ca2f6b2e..68850859 100644 --- a/src/Pyramid-Tests/PyramidFontWeightCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidFontWeightCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidFontAttributeCommandTest', #classTraits : 'TPyramidFontAttributeCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-text' + #category : 'Pyramid-Tests-cases-plugin-bloc-text' } { #category : #'as yet unclassified' } diff --git a/src/Pyramid-Tests/PyramidGeometryCommandTest.class.st b/src/Pyramid-Tests/PyramidGeometryCommandTest.class.st index 070c4ad8..f695265b 100644 --- a/src/Pyramid-Tests/PyramidGeometryCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidGeometryCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-geometry' + #category : 'Pyramid-Tests-cases-plugin-bloc-geometry' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidGeometryInputPresenterTest.class.st b/src/Pyramid-Tests/PyramidGeometryInputPresenterTest.class.st index c2052534..857adf03 100644 --- a/src/Pyramid-Tests/PyramidGeometryInputPresenterTest.class.st +++ b/src/Pyramid-Tests/PyramidGeometryInputPresenterTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidInputPresenterTest', #classTraits : 'TPyramidInputPresenterTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-geometry' + #category : 'Pyramid-Tests-cases-plugin-bloc-geometry' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidGroupCommandTest.class.st b/src/Pyramid-Tests/PyramidGroupCommandTest.class.st index 8ba4c0db..60691f0a 100644 --- a/src/Pyramid-Tests/PyramidGroupCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidGroupCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-group' + #category : 'Pyramid-Tests-cases-plugin-bloc-group' } { #category : #tests } diff --git a/src/Pyramid-Tests/PyramidHistoryTest.class.st b/src/Pyramid-Tests/PyramidHistoryTest.class.st index 9018bea2..62920c46 100644 --- a/src/Pyramid-Tests/PyramidHistoryTest.class.st +++ b/src/Pyramid-Tests/PyramidHistoryTest.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidHistoryTest, #superclass : #TestCase, - #category : #'Pyramid-Tests-cases-history' + #category : 'Pyramid-Tests-cases-history' } { #category : #tests } diff --git a/src/Pyramid-Tests/PyramidHorizontalFrameConstraintsInputPresenterTest.class.st b/src/Pyramid-Tests/PyramidHorizontalFrameConstraintsInputPresenterTest.class.st index e50b71f6..15f7f340 100644 --- a/src/Pyramid-Tests/PyramidHorizontalFrameConstraintsInputPresenterTest.class.st +++ b/src/Pyramid-Tests/PyramidHorizontalFrameConstraintsInputPresenterTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidInputPresenterTest', #classTraits : 'TPyramidInputPresenterTest classTrait', - #category : #'Pyramid-Tests-cases-specs-custom' + #category : 'Pyramid-Tests-cases-specs-custom' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidIncreaseMockCommand.class.st b/src/Pyramid-Tests/PyramidIncreaseMockCommand.class.st index cd869468..b54ed72f 100644 --- a/src/Pyramid-Tests/PyramidIncreaseMockCommand.class.st +++ b/src/Pyramid-Tests/PyramidIncreaseMockCommand.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidIncreaseMockCommand, #superclass : #PyramidMockCommand, - #category : #'Pyramid-Tests-cases-command' + #category : 'Pyramid-Tests-cases-command' } { #category : #'as yet unclassified' } diff --git a/src/Pyramid-Tests/PyramidInsetsInputPresenterTest.class.st b/src/Pyramid-Tests/PyramidInsetsInputPresenterTest.class.st index 54a093d6..6b2af84d 100644 --- a/src/Pyramid-Tests/PyramidInsetsInputPresenterTest.class.st +++ b/src/Pyramid-Tests/PyramidInsetsInputPresenterTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidInputPresenterTest', #classTraits : 'TPyramidInputPresenterTest classTrait', - #category : #'Pyramid-Tests-cases-specs-custom' + #category : 'Pyramid-Tests-cases-specs-custom' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidLayoutBlocCommandTest.class.st b/src/Pyramid-Tests/PyramidLayoutBlocCommandTest.class.st index 9482a8d8..79249f60 100644 --- a/src/Pyramid-Tests/PyramidLayoutBlocCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidLayoutBlocCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-layout' + #category : 'Pyramid-Tests-cases-plugin-bloc-layout' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidLayoutChangeOrientationCommandTest.class.st b/src/Pyramid-Tests/PyramidLayoutChangeOrientationCommandTest.class.st index b0e2e9e5..d33a5f94 100644 --- a/src/Pyramid-Tests/PyramidLayoutChangeOrientationCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidLayoutChangeOrientationCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-layout' + #category : 'Pyramid-Tests-cases-plugin-bloc-layout' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidLibraryPresenterTest.class.st b/src/Pyramid-Tests/PyramidLibraryPresenterTest.class.st index 217e2196..24909076 100644 --- a/src/Pyramid-Tests/PyramidLibraryPresenterTest.class.st +++ b/src/Pyramid-Tests/PyramidLibraryPresenterTest.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidLibraryPresenterTest, #superclass : #TestCase, - #category : #'Pyramid-Tests-cases-plugin-tree-library' + #category : 'Pyramid-Tests-cases-plugin-tree-library' } { #category : #tests } diff --git a/src/Pyramid-Tests/PyramidLinearLayoutOrientationPresenterTest.class.st b/src/Pyramid-Tests/PyramidLinearLayoutOrientationPresenterTest.class.st index 65542524..e0e1a2d8 100644 --- a/src/Pyramid-Tests/PyramidLinearLayoutOrientationPresenterTest.class.st +++ b/src/Pyramid-Tests/PyramidLinearLayoutOrientationPresenterTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidInputPresenterTest', #classTraits : 'TPyramidInputPresenterTest classTrait', - #category : #'Pyramid-Tests-cases-specs-custom' + #category : 'Pyramid-Tests-cases-specs-custom' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidMagicButtonsInputPresenterTest.class.st b/src/Pyramid-Tests/PyramidMagicButtonsInputPresenterTest.class.st index 65ddba88..500e5a9e 100644 --- a/src/Pyramid-Tests/PyramidMagicButtonsInputPresenterTest.class.st +++ b/src/Pyramid-Tests/PyramidMagicButtonsInputPresenterTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidInputPresenterTest', #classTraits : 'TPyramidInputPresenterTest classTrait', - #category : #'Pyramid-Tests-cases-specs-custom' + #category : 'Pyramid-Tests-cases-specs-custom' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidMarginCommandTest.class.st b/src/Pyramid-Tests/PyramidMarginCommandTest.class.st index 1ff7ea4b..a3e61636 100644 --- a/src/Pyramid-Tests/PyramidMarginCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidMarginCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc' + #category : 'Pyramid-Tests-cases-plugin-bloc' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidMockCommand.class.st b/src/Pyramid-Tests/PyramidMockCommand.class.st index 752d6f2b..12609a9b 100644 --- a/src/Pyramid-Tests/PyramidMockCommand.class.st +++ b/src/Pyramid-Tests/PyramidMockCommand.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidMockCommand, #superclass : #PyramidCommand, - #category : #'Pyramid-Tests-cases-command' + #category : 'Pyramid-Tests-cases-command' } { #category : #testing } diff --git a/src/Pyramid-Tests/PyramidMockObjectForTest.class.st b/src/Pyramid-Tests/PyramidMockObjectForTest.class.st index a9bceb18..8022b1aa 100644 --- a/src/Pyramid-Tests/PyramidMockObjectForTest.class.st +++ b/src/Pyramid-Tests/PyramidMockObjectForTest.class.st @@ -4,7 +4,7 @@ Class { #instVars : [ 'count' ], - #category : #'Pyramid-Tests-cases-command' + #category : 'Pyramid-Tests-cases-command' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidMoveBackwardOrderCommandTest.class.st b/src/Pyramid-Tests/PyramidMoveBackwardOrderCommandTest.class.st index beae1f5e..f114ad5f 100644 --- a/src/Pyramid-Tests/PyramidMoveBackwardOrderCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidMoveBackwardOrderCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-order' + #category : 'Pyramid-Tests-cases-plugin-bloc-order' } { #category : #'as yet unclassified' } diff --git a/src/Pyramid-Tests/PyramidMoveForwardOrderCommandTest.class.st b/src/Pyramid-Tests/PyramidMoveForwardOrderCommandTest.class.st index 876ebefa..2c869ad5 100644 --- a/src/Pyramid-Tests/PyramidMoveForwardOrderCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidMoveForwardOrderCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-order' + #category : 'Pyramid-Tests-cases-plugin-bloc-order' } { #category : #'as yet unclassified' } diff --git a/src/Pyramid-Tests/PyramidNumberArrayInputPresenterTest.class.st b/src/Pyramid-Tests/PyramidNumberArrayInputPresenterTest.class.st index cb1df03e..6b6e3058 100644 --- a/src/Pyramid-Tests/PyramidNumberArrayInputPresenterTest.class.st +++ b/src/Pyramid-Tests/PyramidNumberArrayInputPresenterTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidInputPresenterTest', #classTraits : 'TPyramidInputPresenterTest classTrait', - #category : #'Pyramid-Tests-cases-specs-custom' + #category : 'Pyramid-Tests-cases-specs-custom' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidNumberInputPresenterTest.class.st b/src/Pyramid-Tests/PyramidNumberInputPresenterTest.class.st index 85744a89..28a63f86 100644 --- a/src/Pyramid-Tests/PyramidNumberInputPresenterTest.class.st +++ b/src/Pyramid-Tests/PyramidNumberInputPresenterTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidInputPresenterTest', #classTraits : 'TPyramidInputPresenterTest classTrait', - #category : #'Pyramid-Tests-cases-specs-custom' + #category : 'Pyramid-Tests-cases-specs-custom' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidOnBackgroundOrderCommandTest.class.st b/src/Pyramid-Tests/PyramidOnBackgroundOrderCommandTest.class.st index 0e57fc9e..77ade9ab 100644 --- a/src/Pyramid-Tests/PyramidOnBackgroundOrderCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidOnBackgroundOrderCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-order' + #category : 'Pyramid-Tests-cases-plugin-bloc-order' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidOnForegroundOrderCommandTest.class.st b/src/Pyramid-Tests/PyramidOnForegroundOrderCommandTest.class.st index dfd10ec8..265bf52b 100644 --- a/src/Pyramid-Tests/PyramidOnForegroundOrderCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidOnForegroundOrderCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-order' + #category : 'Pyramid-Tests-cases-plugin-bloc-order' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidOpacityCommandTest.class.st b/src/Pyramid-Tests/PyramidOpacityCommandTest.class.st index 15abba92..46ffe7c2 100644 --- a/src/Pyramid-Tests/PyramidOpacityCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidOpacityCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-visuals' + #category : 'Pyramid-Tests-cases-plugin-bloc-visuals' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidPaddingCommandTest.class.st b/src/Pyramid-Tests/PyramidPaddingCommandTest.class.st index 842a6e73..9734cebf 100644 --- a/src/Pyramid-Tests/PyramidPaddingCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidPaddingCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc' + #category : 'Pyramid-Tests-cases-plugin-bloc' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidPluginEditOnRunningTest.class.st b/src/Pyramid-Tests/PyramidPluginEditOnRunningTest.class.st index 5308dc28..81f91fa4 100644 --- a/src/Pyramid-Tests/PyramidPluginEditOnRunningTest.class.st +++ b/src/Pyramid-Tests/PyramidPluginEditOnRunningTest.class.st @@ -7,7 +7,7 @@ Class { #instVars : [ 'setting' ], - #category : #'Pyramid-Tests-cases-plugin-edit-on-running' + #category : 'Pyramid-Tests-cases-plugin-edit-on-running' } { #category : #utils } diff --git a/src/Pyramid-Tests/PyramidPluginManagerTest.class.st b/src/Pyramid-Tests/PyramidPluginManagerTest.class.st index e3e98a55..e848d3c6 100644 --- a/src/Pyramid-Tests/PyramidPluginManagerTest.class.st +++ b/src/Pyramid-Tests/PyramidPluginManagerTest.class.st @@ -4,7 +4,7 @@ A PyramidPluginManagerTest is a test class for testing the behavior of PyramidPl Class { #name : #PyramidPluginManagerTest, #superclass : #TestCase, - #category : #'Pyramid-Tests-cases-core' + #category : 'Pyramid-Tests-cases-core' } { #category : #tests } diff --git a/src/Pyramid-Tests/PyramidPluginTestModeTest.class.st b/src/Pyramid-Tests/PyramidPluginTestModeTest.class.st index de346e56..d4750060 100644 --- a/src/Pyramid-Tests/PyramidPluginTestModeTest.class.st +++ b/src/Pyramid-Tests/PyramidPluginTestModeTest.class.st @@ -6,5 +6,5 @@ Class { 'spacePlugin', 'editor' ], - #category : #'Pyramid-Tests-cases-plugin-testmode' + #category : 'Pyramid-Tests-cases-plugin-testmode' } diff --git a/src/Pyramid-Tests/PyramidPointInputPresenterTest.class.st b/src/Pyramid-Tests/PyramidPointInputPresenterTest.class.st index 9e0170ed..cf1b585f 100644 --- a/src/Pyramid-Tests/PyramidPointInputPresenterTest.class.st +++ b/src/Pyramid-Tests/PyramidPointInputPresenterTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidInputPresenterTest', #classTraits : 'TPyramidInputPresenterTest classTrait', - #category : #'Pyramid-Tests-cases-specs-custom' + #category : 'Pyramid-Tests-cases-specs-custom' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidPositionCommandTest.class.st b/src/Pyramid-Tests/PyramidPositionCommandTest.class.st index 596e92eb..a1a0c133 100644 --- a/src/Pyramid-Tests/PyramidPositionCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidPositionCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc' + #category : 'Pyramid-Tests-cases-plugin-bloc' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidPositionOffsetCommandTest.class.st b/src/Pyramid-Tests/PyramidPositionOffsetCommandTest.class.st index 34285057..f9cbb90b 100644 --- a/src/Pyramid-Tests/PyramidPositionOffsetCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidPositionOffsetCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc' + #category : 'Pyramid-Tests-cases-plugin-bloc' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidProjectModelObserverForTest.class.st b/src/Pyramid-Tests/PyramidProjectModelObserverForTest.class.st index 5b4f43d4..886f8f67 100644 --- a/src/Pyramid-Tests/PyramidProjectModelObserverForTest.class.st +++ b/src/Pyramid-Tests/PyramidProjectModelObserverForTest.class.st @@ -6,7 +6,7 @@ Class { 'pyramidFirstLevelElementsChangedAction', 'pyramidSelectionChangedAction' ], - #category : #'Pyramid-Tests-cases-models' + #category : 'Pyramid-Tests-cases-models' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidProjectModelTest.class.st b/src/Pyramid-Tests/PyramidProjectModelTest.class.st index d8625721..8b2401ec 100644 --- a/src/Pyramid-Tests/PyramidProjectModelTest.class.st +++ b/src/Pyramid-Tests/PyramidProjectModelTest.class.st @@ -8,7 +8,7 @@ Class { 'pyramidFirstLevelElementsChanged', 'pyramidSelectionChanged' ], - #category : #'Pyramid-Tests-cases-models' + #category : 'Pyramid-Tests-cases-models' } { #category : #running } diff --git a/src/Pyramid-Tests/PyramidPropertiesManagerTest.class.st b/src/Pyramid-Tests/PyramidPropertiesManagerTest.class.st index 8a704bc4..41fdca08 100644 --- a/src/Pyramid-Tests/PyramidPropertiesManagerTest.class.st +++ b/src/Pyramid-Tests/PyramidPropertiesManagerTest.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidPropertiesManagerTest, #superclass : #TestCase, - #category : #'Pyramid-Tests-cases-property' + #category : 'Pyramid-Tests-cases-property' } { #category : #tests } diff --git a/src/Pyramid-Tests/PyramidProportionnalHorizontalConstraintsCommandTest.class.st b/src/Pyramid-Tests/PyramidProportionnalHorizontalConstraintsCommandTest.class.st index b7145a1b..c62043bf 100644 --- a/src/Pyramid-Tests/PyramidProportionnalHorizontalConstraintsCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidProportionnalHorizontalConstraintsCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-layout' + #category : 'Pyramid-Tests-cases-plugin-bloc-layout' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidProportionnalVerticalConstraintsCommandTest.class.st b/src/Pyramid-Tests/PyramidProportionnalVerticalConstraintsCommandTest.class.st index e375e6c2..b95c8126 100644 --- a/src/Pyramid-Tests/PyramidProportionnalVerticalConstraintsCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidProportionnalVerticalConstraintsCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-layout' + #category : 'Pyramid-Tests-cases-plugin-bloc-layout' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidRemoveChildCommandTest.class.st b/src/Pyramid-Tests/PyramidRemoveChildCommandTest.class.st index 30f24257..8c195544 100644 --- a/src/Pyramid-Tests/PyramidRemoveChildCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidRemoveChildCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc' + #category : 'Pyramid-Tests-cases-plugin-bloc' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidRemoveMockCommandTest.class.st b/src/Pyramid-Tests/PyramidRemoveMockCommandTest.class.st index 8853340f..ee166273 100644 --- a/src/Pyramid-Tests/PyramidRemoveMockCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidRemoveMockCommandTest.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidRemoveMockCommandTest, #superclass : #TestCase, - #category : #'Pyramid-Tests-cases-command' + #category : 'Pyramid-Tests-cases-command' } { #category : #tests } diff --git a/src/Pyramid-Tests/PyramidRemoveSelectionCommandTest.class.st b/src/Pyramid-Tests/PyramidRemoveSelectionCommandTest.class.st index 18aa0bb1..4ef63b7a 100644 --- a/src/Pyramid-Tests/PyramidRemoveSelectionCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidRemoveSelectionCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc' + #category : 'Pyramid-Tests-cases-plugin-bloc' } { #category : #'as yet unclassified' } diff --git a/src/Pyramid-Tests/PyramidRoundedRectangleCornerRadiiCommandTest.class.st b/src/Pyramid-Tests/PyramidRoundedRectangleCornerRadiiCommandTest.class.st index 68db7048..845cd011 100644 --- a/src/Pyramid-Tests/PyramidRoundedRectangleCornerRadiiCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidRoundedRectangleCornerRadiiCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-geometry' + #category : 'Pyramid-Tests-cases-plugin-bloc-geometry' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidSaveModelVerifierTest.class.st b/src/Pyramid-Tests/PyramidSaveModelVerifierTest.class.st index 7be7dfbf..b9342ec4 100644 --- a/src/Pyramid-Tests/PyramidSaveModelVerifierTest.class.st +++ b/src/Pyramid-Tests/PyramidSaveModelVerifierTest.class.st @@ -4,7 +4,7 @@ A PyramidSaveModelVerifierTest is a test class for testing the behavior of Pyram Class { #name : #PyramidSaveModelVerifierTest, #superclass : #TestCase, - #category : #'Pyramid-Tests-cases-plugin-save' + #category : 'Pyramid-Tests-cases-plugin-save' } { #category : #test } diff --git a/src/Pyramid-Tests/PyramidSavingServiceTest.class.st b/src/Pyramid-Tests/PyramidSavingServiceTest.class.st index 807183b2..7b2b52ee 100644 --- a/src/Pyramid-Tests/PyramidSavingServiceTest.class.st +++ b/src/Pyramid-Tests/PyramidSavingServiceTest.class.st @@ -6,7 +6,7 @@ Class { 'savingService', 'savingClass' ], - #category : #'Pyramid-Tests-cases-plugin-save' + #category : 'Pyramid-Tests-cases-plugin-save' } { #category : #running } diff --git a/src/Pyramid-Tests/PyramidSimpleMockCommand.class.st b/src/Pyramid-Tests/PyramidSimpleMockCommand.class.st index abf1e620..19f714d0 100644 --- a/src/Pyramid-Tests/PyramidSimpleMockCommand.class.st +++ b/src/Pyramid-Tests/PyramidSimpleMockCommand.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidSimpleMockCommand, #superclass : #PyramidMockCommand, - #category : #'Pyramid-Tests-cases-command' + #category : 'Pyramid-Tests-cases-command' } { #category : #'as yet unclassified' } diff --git a/src/Pyramid-Tests/PyramidSimpleMockCommandTest.class.st b/src/Pyramid-Tests/PyramidSimpleMockCommandTest.class.st index ef6f433c..87864823 100644 --- a/src/Pyramid-Tests/PyramidSimpleMockCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidSimpleMockCommandTest.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidSimpleMockCommandTest, #superclass : #TestCase, - #category : #'Pyramid-Tests-cases-command' + #category : 'Pyramid-Tests-cases-command' } { #category : #'as yet unclassified' } diff --git a/src/Pyramid-Tests/PyramidSimpleMockGroupedCommand.class.st b/src/Pyramid-Tests/PyramidSimpleMockGroupedCommand.class.st index 84fcebb0..f1e4a1a1 100644 --- a/src/Pyramid-Tests/PyramidSimpleMockGroupedCommand.class.st +++ b/src/Pyramid-Tests/PyramidSimpleMockGroupedCommand.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidSimpleMockGroupedCommand, #superclass : #PyramidSimpleMockCommand, - #category : #'Pyramid-Tests-cases-command' + #category : 'Pyramid-Tests-cases-command' } { #category : #'as yet unclassified' } diff --git a/src/Pyramid-Tests/PyramidSpCodeObjectInteractionModelTest.class.st b/src/Pyramid-Tests/PyramidSpCodeObjectInteractionModelTest.class.st index 5c79f0fb..22e3ae0b 100644 --- a/src/Pyramid-Tests/PyramidSpCodeObjectInteractionModelTest.class.st +++ b/src/Pyramid-Tests/PyramidSpCodeObjectInteractionModelTest.class.st @@ -6,7 +6,7 @@ Class { 'interactionModel', 'firstLevelElements' ], - #category : #'Pyramid-Tests-cases-plugin-playground' + #category : 'Pyramid-Tests-cases-plugin-playground' } { #category : #running } diff --git a/src/Pyramid-Tests/PyramidSpaceBuilderTest.class.st b/src/Pyramid-Tests/PyramidSpaceBuilderTest.class.st index 7d0700dd..7f32f081 100644 --- a/src/Pyramid-Tests/PyramidSpaceBuilderTest.class.st +++ b/src/Pyramid-Tests/PyramidSpaceBuilderTest.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidSpaceBuilderTest, #superclass : #TestCase, - #category : #'Pyramid-Tests-cases-plugin-space' + #category : 'Pyramid-Tests-cases-plugin-space' } { #category : #tests } diff --git a/src/Pyramid-Tests/PyramidSpacePluginTest.class.st b/src/Pyramid-Tests/PyramidSpacePluginTest.class.st index 45aac1df..e4721cc2 100644 --- a/src/Pyramid-Tests/PyramidSpacePluginTest.class.st +++ b/src/Pyramid-Tests/PyramidSpacePluginTest.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidSpacePluginTest, #superclass : #TestCase, - #category : #'Pyramid-Tests-cases-plugin-space' + #category : 'Pyramid-Tests-cases-plugin-space' } { #category : #tests } diff --git a/src/Pyramid-Tests/PyramidSwitchInputPresenterTest.class.st b/src/Pyramid-Tests/PyramidSwitchInputPresenterTest.class.st index 4a26981c..403fe8ff 100644 --- a/src/Pyramid-Tests/PyramidSwitchInputPresenterTest.class.st +++ b/src/Pyramid-Tests/PyramidSwitchInputPresenterTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidInputPresenterTest', #classTraits : 'TPyramidInputPresenterTest classTrait', - #category : #'Pyramid-Tests-cases-specs-custom' + #category : 'Pyramid-Tests-cases-specs-custom' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidTestWindow.class.st b/src/Pyramid-Tests/PyramidTestWindow.class.st index 29462407..1d18faa0 100644 --- a/src/Pyramid-Tests/PyramidTestWindow.class.st +++ b/src/Pyramid-Tests/PyramidTestWindow.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidTestWindow, #superclass : #PyramidWindow, - #category : #'Pyramid-Tests-cases-views' + #category : 'Pyramid-Tests-cases-views' } { #category : #initialization } diff --git a/src/Pyramid-Tests/PyramidTextForegroundCommandTest.class.st b/src/Pyramid-Tests/PyramidTextForegroundCommandTest.class.st index 36b77372..43d35800 100644 --- a/src/Pyramid-Tests/PyramidTextForegroundCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidTextForegroundCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidFontAttributeCommandTest', #classTraits : 'TPyramidFontAttributeCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-text' + #category : 'Pyramid-Tests-cases-plugin-bloc-text' } { #category : #'as yet unclassified' } diff --git a/src/Pyramid-Tests/PyramidTextInputPresenterTest.class.st b/src/Pyramid-Tests/PyramidTextInputPresenterTest.class.st index 6ca9d02b..8bfe7ddf 100644 --- a/src/Pyramid-Tests/PyramidTextInputPresenterTest.class.st +++ b/src/Pyramid-Tests/PyramidTextInputPresenterTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidInputPresenterTest', #classTraits : 'TPyramidInputPresenterTest classTrait', - #category : #'Pyramid-Tests-cases-specs-custom' + #category : 'Pyramid-Tests-cases-specs-custom' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidTreePluginTest.class.st b/src/Pyramid-Tests/PyramidTreePluginTest.class.st index e3cae686..2d78c2bf 100644 --- a/src/Pyramid-Tests/PyramidTreePluginTest.class.st +++ b/src/Pyramid-Tests/PyramidTreePluginTest.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidTreePluginTest, #superclass : #TestCase, - #category : #'Pyramid-Tests-cases-plugin-tree-library' + #category : 'Pyramid-Tests-cases-plugin-tree-library' } { #category : #tests } diff --git a/src/Pyramid-Tests/PyramidVerticalFrameConstraintsInputPresenterTest.class.st b/src/Pyramid-Tests/PyramidVerticalFrameConstraintsInputPresenterTest.class.st index 54377d79..bb0e4779 100644 --- a/src/Pyramid-Tests/PyramidVerticalFrameConstraintsInputPresenterTest.class.st +++ b/src/Pyramid-Tests/PyramidVerticalFrameConstraintsInputPresenterTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidInputPresenterTest', #classTraits : 'TPyramidInputPresenterTest classTrait', - #category : #'Pyramid-Tests-cases-specs-custom' + #category : 'Pyramid-Tests-cases-specs-custom' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidVisibilityCommandTest.class.st b/src/Pyramid-Tests/PyramidVisibilityCommandTest.class.st index abca3c83..b0cef520 100644 --- a/src/Pyramid-Tests/PyramidVisibilityCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidVisibilityCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc' + #category : 'Pyramid-Tests-cases-plugin-bloc' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidVisibilityInputPresenterTest.class.st b/src/Pyramid-Tests/PyramidVisibilityInputPresenterTest.class.st index 332e72f0..16b09cbb 100644 --- a/src/Pyramid-Tests/PyramidVisibilityInputPresenterTest.class.st +++ b/src/Pyramid-Tests/PyramidVisibilityInputPresenterTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidInputPresenterTest', #classTraits : 'TPyramidInputPresenterTest classTrait', - #category : #'Pyramid-Tests-cases-specs-custom' + #category : 'Pyramid-Tests-cases-specs-custom' } { #category : #accessing } diff --git a/src/Pyramid-Tests/PyramidVisibilitySortFunctionTest.class.st b/src/Pyramid-Tests/PyramidVisibilitySortFunctionTest.class.st index ec815c10..3c173d02 100644 --- a/src/Pyramid-Tests/PyramidVisibilitySortFunctionTest.class.st +++ b/src/Pyramid-Tests/PyramidVisibilitySortFunctionTest.class.st @@ -1,7 +1,7 @@ Class { #name : #PyramidVisibilitySortFunctionTest, #superclass : #TestCase, - #category : #'Pyramid-Tests-cases-bloc-utils' + #category : 'Pyramid-Tests-cases-bloc-utils' } { #category : #tests } diff --git a/src/Pyramid-Tests/PyramidWindowTest.class.st b/src/Pyramid-Tests/PyramidWindowTest.class.st index 2ad1b041..8f51fec4 100644 --- a/src/Pyramid-Tests/PyramidWindowTest.class.st +++ b/src/Pyramid-Tests/PyramidWindowTest.class.st @@ -4,7 +4,7 @@ Class { #instVars : [ 'window' ], - #category : #'Pyramid-Tests-cases-views' + #category : 'Pyramid-Tests-cases-views' } { #category : #running } diff --git a/src/Pyramid-Tests/PyramidZIndexCommandTest.class.st b/src/Pyramid-Tests/PyramidZIndexCommandTest.class.st index ccb5fe23..4f15146b 100644 --- a/src/Pyramid-Tests/PyramidZIndexCommandTest.class.st +++ b/src/Pyramid-Tests/PyramidZIndexCommandTest.class.st @@ -3,7 +3,7 @@ Class { #superclass : #TestCase, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc' + #category : 'Pyramid-Tests-cases-plugin-bloc' } { #category : #accessing } diff --git a/src/Pyramid-Tests/TPyramidCommandTest.trait.st b/src/Pyramid-Tests/TPyramidCommandTest.trait.st index fb408590..54ed130f 100644 --- a/src/Pyramid-Tests/TPyramidCommandTest.trait.st +++ b/src/Pyramid-Tests/TPyramidCommandTest.trait.st @@ -1,6 +1,6 @@ Trait { #name : #TPyramidCommandTest, - #category : #'Pyramid-Tests-cases-command' + #category : 'Pyramid-Tests-cases-command' } { #category : #'as yet unclassified' } diff --git a/src/Pyramid-Tests/TPyramidFontAttributeCommandTest.trait.st b/src/Pyramid-Tests/TPyramidFontAttributeCommandTest.trait.st index 0c0f1863..371f6b73 100644 --- a/src/Pyramid-Tests/TPyramidFontAttributeCommandTest.trait.st +++ b/src/Pyramid-Tests/TPyramidFontAttributeCommandTest.trait.st @@ -2,7 +2,7 @@ Trait { #name : #TPyramidFontAttributeCommandTest, #traits : 'TPyramidCommandTest', #classTraits : 'TPyramidCommandTest classTrait', - #category : #'Pyramid-Tests-cases-plugin-bloc-text' + #category : 'Pyramid-Tests-cases-plugin-bloc-text' } { #category : #'as yet unclassified' } diff --git a/src/Pyramid-Tests/TPyramidInputPresenterTest.trait.st b/src/Pyramid-Tests/TPyramidInputPresenterTest.trait.st index 9373bc0b..7f1e6d5e 100644 --- a/src/Pyramid-Tests/TPyramidInputPresenterTest.trait.st +++ b/src/Pyramid-Tests/TPyramidInputPresenterTest.trait.st @@ -1,6 +1,6 @@ Trait { #name : #TPyramidInputPresenterTest, - #category : #'Pyramid-Tests-cases-specs-custom' + #category : 'Pyramid-Tests-cases-specs-custom' } { #category : #accessing } diff --git a/src/Pyramid-Toplo-Examples/PyramidToploExamples.class.st b/src/Pyramid-Toplo-Examples/PyramidToploExamples.class.st index 1991336c..f9606da8 100644 --- a/src/Pyramid-Toplo-Examples/PyramidToploExamples.class.st +++ b/src/Pyramid-Toplo-Examples/PyramidToploExamples.class.st @@ -1,11 +1,10 @@ Class { - #name : 'PyramidToploExamples', - #superclass : 'Object', - #category : 'Pyramid-Toplo-Examples', - #package : 'Pyramid-Toplo-Examples' + #name : #PyramidToploExamples, + #superclass : #Object, + #category : #'Pyramid-Toplo-Examples' } -{ #category : 'pyramid-serialized-bloc' } +{ #category : #'pyramid-serialized-bloc' } PyramidToploExamples class >> buttons [ ^ [ "BlStashSerializer" @@ -54,12 +53,10 @@ blfontsizedefaultattribute21 := BlFontSizeDefaultAttribute new. constraints vertical exact: 32.0. constraints padding: blinsets1 ]; beHorizontal; - beIconFirst; flexible: false; icon: nil; iconContainerHeight: 0.0; iconContainerWidth: 0.0; - interspace: 0.0 @ 0.0; label: (ToLabel new layout: blframelayout5; constraintsDo: [:constraints | constraints horizontal fitContent. @@ -104,12 +101,10 @@ blfontsizedefaultattribute21 := BlFontSizeDefaultAttribute new. constraints vertical exact: 32.0. constraints padding: blinsets1 ]; beHorizontal; - beIconFirst; flexible: false; icon: nil; iconContainerHeight: 0.0; iconContainerWidth: 0.0; - interspace: 0.0 @ 0.0; label: (ToLabel new layout: blframelayout5; constraintsDo: [:constraints | constraints horizontal fitContent. @@ -143,12 +138,10 @@ blfontsizedefaultattribute21 := BlFontSizeDefaultAttribute new. constraints vertical exact: 32.0. constraints padding: blinsets1 ]; beHorizontal; - beIconFirst; flexible: false; icon: nil; iconContainerHeight: 0.0; iconContainerWidth: 0.0; - interspace: 0.0 @ 0.0; label: (ToLabel new layout: blframelayout5; constraintsDo: [:constraints | constraints horizontal fitContent. @@ -177,12 +170,10 @@ blfontsizedefaultattribute21 := BlFontSizeDefaultAttribute new. constraints vertical exact: 32.0. constraints padding: blinsets1 ]; beHorizontal; - beIconFirst; flexible: false; icon: nil; iconContainerHeight: 0.0; iconContainerWidth: 0.0; - interspace: 0.0 @ 0.0; label: (ToLabel new layout: blframelayout5; constraintsDo: [:constraints | constraints horizontal fitContent. @@ -208,12 +199,10 @@ blfontsizedefaultattribute21 := BlFontSizeDefaultAttribute new. constraints vertical exact: 32.0. constraints padding: blinsets1 ]; beHorizontal; - beIconFirst; flexible: false; icon: nil; iconContainerHeight: 0.0; iconContainerWidth: 0.0; - interspace: 0.0 @ 0.0; label: (ToLabel new layout: blframelayout5; constraintsDo: [:constraints | constraints horizontal fitContent. @@ -261,12 +250,10 @@ blfontsizedefaultattribute21 := BlFontSizeDefaultAttribute new. constraints vertical exact: 32.0. constraints padding: blinsets1 ]; beHorizontal; - beIconFirst; flexible: false; icon: nil; iconContainerHeight: 0.0; iconContainerWidth: 0.0; - interspace: 0.0 @ 0.0; label: (ToLabel new layout: blframelayout5; constraintsDo: [:constraints | constraints horizontal fitContent. @@ -294,12 +281,10 @@ blfontsizedefaultattribute21 := BlFontSizeDefaultAttribute new. constraints vertical exact: 32.0. constraints padding: blinsets1 ]; beHorizontal; - beIconFirst; flexible: false; icon: nil; iconContainerHeight: 0.0; iconContainerWidth: 0.0; - interspace: 0.0 @ 0.0; label: (ToLabel new layout: blframelayout5; constraintsDo: [:constraints | constraints horizontal fitContent. @@ -331,12 +316,10 @@ blfontsizedefaultattribute21 := BlFontSizeDefaultAttribute new. constraints vertical exact: 32.0. constraints padding: blinsets1 ]; beHorizontal; - beIconFirst; flexible: false; icon: nil; iconContainerHeight: 0.0; iconContainerWidth: 0.0; - interspace: 0.0 @ 0.0; label: (ToLabel new layout: blframelayout5; constraintsDo: [:constraints | constraints horizontal fitContent. @@ -367,12 +350,10 @@ blfontsizedefaultattribute21 := BlFontSizeDefaultAttribute new. constraints vertical exact: 32.0. constraints padding: blinsets1 ]; beHorizontal; - beIconFirst; flexible: false; icon: nil; iconContainerHeight: 0.0; iconContainerWidth: 0.0; - interspace: 0.0 @ 0.0; label: (ToLabel new layout: blframelayout5; constraintsDo: [:constraints | constraints horizontal fitContent. @@ -398,12 +379,10 @@ blfontsizedefaultattribute21 := BlFontSizeDefaultAttribute new. constraints vertical exact: 32.0. constraints padding: blinsets1 ]; beHorizontal; - beIconFirst; flexible: false; icon: nil; iconContainerHeight: 0.0; iconContainerWidth: 0.0; - interspace: 0.0 @ 0.0; label: (ToLabel new layout: blframelayout5; constraintsDo: [:constraints | constraints horizontal fitContent. @@ -444,12 +423,10 @@ blfontsizedefaultattribute21 := BlFontSizeDefaultAttribute new. constraints vertical exact: 32.0. constraints padding: blinsets1 ]; beHorizontal; - beIconFirst; flexible: false; icon: nil; iconContainerHeight: 0.0; iconContainerWidth: 0.0; - interspace: 0.0 @ 0.0; label: (ToLabel new layout: blframelayout5; constraintsDo: [:constraints | constraints horizontal fitContent. @@ -475,12 +452,10 @@ blfontsizedefaultattribute21 := BlFontSizeDefaultAttribute new. constraints vertical exact: 32.0. constraints padding: blinsets1 ]; beHorizontal; - beIconFirst; flexible: false; icon: nil; iconContainerHeight: 0.0; iconContainerWidth: 0.0; - interspace: 0.0 @ 0.0; label: (ToLabel new layout: blframelayout5; constraintsDo: [:constraints | constraints horizontal fitContent. @@ -514,12 +489,10 @@ blfontsizedefaultattribute21 := BlFontSizeDefaultAttribute new. constraints vertical exact: 32.0. constraints padding: blinsets1 ]; beHorizontal; - beIconFirst; flexible: false; icon: nil; iconContainerHeight: 0.0; iconContainerWidth: 0.0; - interspace: 0.0 @ 0.0; label: (ToLabel new layout: blframelayout5; constraintsDo: [:constraints | constraints horizontal fitContent. @@ -545,12 +518,10 @@ blfontsizedefaultattribute21 := BlFontSizeDefaultAttribute new. constraints vertical exact: 32.0. constraints padding: blinsets1 ]; beHorizontal; - beIconFirst; flexible: false; icon: nil; iconContainerHeight: 0.0; iconContainerWidth: 0.0; - interspace: 0.0 @ 0.0; label: (ToLabel new layout: blframelayout5; constraintsDo: [:constraints | constraints horizontal fitContent. @@ -576,12 +547,10 @@ blfontsizedefaultattribute21 := BlFontSizeDefaultAttribute new. constraints vertical exact: 32.0. constraints padding: blinsets1 ]; beHorizontal; - beIconFirst; flexible: false; icon: nil; iconContainerHeight: 0.0; iconContainerWidth: 0.0; - interspace: 0.0 @ 0.0; label: (ToLabel new layout: blframelayout5; constraintsDo: [:constraints | constraints horizontal fitContent. diff --git a/src/Pyramid-Toplo-Examples/package.st b/src/Pyramid-Toplo-Examples/package.st index 992899b5..a1c8a7af 100644 --- a/src/Pyramid-Toplo-Examples/package.st +++ b/src/Pyramid-Toplo-Examples/package.st @@ -1 +1 @@ -Package { #name : 'Pyramid-Toplo-Examples' } +Package { #name : #'Pyramid-Toplo-Examples' } diff --git a/src/Pyramid/PyramidAbstractMemento.class.st b/src/Pyramid/PyramidAbstractMemento.class.st index 3e9a2857..34aead3d 100644 --- a/src/Pyramid/PyramidAbstractMemento.class.st +++ b/src/Pyramid/PyramidAbstractMemento.class.st @@ -1,24 +1,22 @@ Class { - #name : 'PyramidAbstractMemento', - #superclass : 'Object', - #category : 'Pyramid-history', - #package : 'Pyramid', - #tag : 'history' + #name : #PyramidAbstractMemento, + #superclass : #Object, + #category : #'Pyramid-history' } -{ #category : 'testing' } +{ #category : #testing } PyramidAbstractMemento class >> isAbstract [ ^ self == PyramidAbstractMemento ] -{ #category : 'visiting' } +{ #category : #visiting } PyramidAbstractMemento >> accept: aVisitor [ ^ self shouldBeImplemented ] -{ #category : 'window management' } +{ #category : #'window management' } PyramidAbstractMemento >> restore [ self shouldBeImplemented diff --git a/src/Pyramid/PyramidAddAllToCollectionCommand.class.st b/src/Pyramid/PyramidAddAllToCollectionCommand.class.st index b6a14472..b4a0224b 100644 --- a/src/Pyramid/PyramidAddAllToCollectionCommand.class.st +++ b/src/Pyramid/PyramidAddAllToCollectionCommand.class.st @@ -1,24 +1,22 @@ Class { - #name : 'PyramidAddAllToCollectionCommand', - #superclass : 'PyramidCollectionCommand', - #category : 'Pyramid-commands', - #package : 'Pyramid', - #tag : 'commands' + #name : #PyramidAddAllToCollectionCommand, + #superclass : #PyramidCollectionCommand, + #category : #'Pyramid-commands' } -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidAddAllToCollectionCommand >> commandInverse [ ^ PyramidRemoveAllFromCollectionCommand new ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidAddAllToCollectionCommand >> getValueFor: anObject [ ^ nil ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidAddAllToCollectionCommand >> setValueFor: anObject with: anArgument [ anObject addAll: anArgument diff --git a/src/Pyramid/PyramidAddToCollectionCommand.class.st b/src/Pyramid/PyramidAddToCollectionCommand.class.st index 8028f80a..c1eb5377 100644 --- a/src/Pyramid/PyramidAddToCollectionCommand.class.st +++ b/src/Pyramid/PyramidAddToCollectionCommand.class.st @@ -1,24 +1,22 @@ Class { - #name : 'PyramidAddToCollectionCommand', - #superclass : 'PyramidCollectionCommand', - #category : 'Pyramid-commands', - #package : 'Pyramid', - #tag : 'commands' + #name : #PyramidAddToCollectionCommand, + #superclass : #PyramidCollectionCommand, + #category : #'Pyramid-commands' } -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidAddToCollectionCommand >> commandInverse [ ^ PyramidRemoveFromCollectionCommand new ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidAddToCollectionCommand >> getValueFor: anObject [ ^ nil ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidAddToCollectionCommand >> setValueFor: anObject with: anArgument [ anObject add: anArgument diff --git a/src/Pyramid/PyramidCallbackCommandExecutor.class.st b/src/Pyramid/PyramidCallbackCommandExecutor.class.st index 5aa440b5..01669d1d 100644 --- a/src/Pyramid/PyramidCallbackCommandExecutor.class.st +++ b/src/Pyramid/PyramidCallbackCommandExecutor.class.st @@ -1,47 +1,45 @@ Class { - #name : 'PyramidCallbackCommandExecutor', - #superclass : 'PyramidCommandExecutorDecorator', + #name : #PyramidCallbackCommandExecutor, + #superclass : #PyramidCommandExecutorDecorator, #instVars : [ 'beforeDo', 'afterDo' ], - #category : 'Pyramid-commands', - #package : 'Pyramid', - #tag : 'commands' + #category : #'Pyramid-commands' } -{ #category : 'accessing' } +{ #category : #accessing } PyramidCallbackCommandExecutor >> afterDo [ ^ afterDo ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidCallbackCommandExecutor >> afterDo: anObject [ afterDo := anObject ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidCallbackCommandExecutor >> beforeDo [ ^ beforeDo ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidCallbackCommandExecutor >> beforeDo: anObject [ beforeDo := anObject ] -{ #category : 'initialization' } +{ #category : #initialization } PyramidCallbackCommandExecutor >> initialize [ afterDo := [ ]. beforeDo := [ ] ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidCallbackCommandExecutor >> use: aCommand on: aCollection with: arguments [ self beforeDo value. diff --git a/src/Pyramid/PyramidCluster.class.st b/src/Pyramid/PyramidCluster.class.st index 340fb16a..b008d470 100644 --- a/src/Pyramid/PyramidCluster.class.st +++ b/src/Pyramid/PyramidCluster.class.st @@ -1,25 +1,23 @@ Class { - #name : 'PyramidCluster', - #superclass : 'Object', + #name : #PyramidCluster, + #superclass : #Object, #instVars : [ 'allTargets', 'groups', 'groupedAssociations', 'individualAssociations' ], - #category : 'Pyramid-commands', - #package : 'Pyramid', - #tag : 'commands' + #category : #'Pyramid-commands' } -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidCluster >> allTargets [ "Collection of all targets of the cluster" ^ allTargets ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidCluster >> groupedAssociations [ "Collection of association with: - key: anArgument @@ -28,14 +26,14 @@ PyramidCluster >> groupedAssociations [ ^ groupedAssociations ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidCluster >> groups [ "Collection of all groups of the cluster. By default the #getValueFor: result." ^ groups ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidCluster >> individualAssociations [ "Collection of association with: - key: anArgument @@ -44,7 +42,7 @@ PyramidCluster >> individualAssociations [ ^ individualAssociations ] -{ #category : 'initialization' } +{ #category : #initialization } PyramidCluster >> initialize [ allTargets := OrderedCollection new. @@ -53,26 +51,26 @@ PyramidCluster >> initialize [ individualAssociations := OrderedCollection new ] -{ #category : 'testing' } +{ #category : #testing } PyramidCluster >> isEmpty [ ^ self groups isEmpty ] -{ #category : 'testing' } +{ #category : #testing } PyramidCluster >> isNotEmpty [ ^ self isEmpty not ] -{ #category : 'testing' } +{ #category : #testing } PyramidCluster >> isTargetsSameArguments [ "true if all targets have the same argument." ^ self groups size = 1 ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidCluster >> register: aTarget forArguments: anArguments [ (self allTargets includes: aTarget) ifTrue: [ ^ self ]. @@ -89,7 +87,7 @@ PyramidCluster >> register: aTarget forArguments: anArguments [ yourself ] ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidCluster >> size [ ^ self allTargets size diff --git a/src/Pyramid/PyramidCollectionCommand.class.st b/src/Pyramid/PyramidCollectionCommand.class.st index 1ccd0c24..3a225279 100644 --- a/src/Pyramid/PyramidCollectionCommand.class.st +++ b/src/Pyramid/PyramidCollectionCommand.class.st @@ -1,24 +1,22 @@ Class { - #name : 'PyramidCollectionCommand', - #superclass : 'PyramidCommand', - #category : 'Pyramid-commands', - #package : 'Pyramid', - #tag : 'commands' + #name : #PyramidCollectionCommand, + #superclass : #PyramidCommand, + #category : #'Pyramid-commands' } -{ #category : 'testing' } +{ #category : #testing } PyramidCollectionCommand class >> isAbstract [ ^ self == PyramidCollectionCommand ] -{ #category : 'testing' } +{ #category : #testing } PyramidCollectionCommand >> canBeUsedFor: anObject [ ^ anObject isCollection ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidCollectionCommand >> saveStatesOf: aCollection withCommand: aCommand withArguments: anArguments [ | mementos | diff --git a/src/Pyramid/PyramidCollectionWithCallbacks.class.st b/src/Pyramid/PyramidCollectionWithCallbacks.class.st index 5ee05436..fb260465 100644 --- a/src/Pyramid/PyramidCollectionWithCallbacks.class.st +++ b/src/Pyramid/PyramidCollectionWithCallbacks.class.st @@ -1,16 +1,14 @@ Class { - #name : 'PyramidCollectionWithCallbacks', - #superclass : 'SequenceableCollection', + #name : #PyramidCollectionWithCallbacks, + #superclass : #SequenceableCollection, #instVars : [ 'collection', 'subscriptions' ], - #category : 'Pyramid-models', - #package : 'Pyramid', - #tag : 'models' + #category : #'Pyramid-models' } -{ #category : 'adding' } +{ #category : #adding } PyramidCollectionWithCallbacks >> add: newObject [ | result | @@ -19,7 +17,7 @@ PyramidCollectionWithCallbacks >> add: newObject [ ^ result ] -{ #category : 'adding' } +{ #category : #adding } PyramidCollectionWithCallbacks >> addAll: newObjects [ | result | @@ -29,32 +27,32 @@ PyramidCollectionWithCallbacks >> addAll: newObjects [ ^ result ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidCollectionWithCallbacks >> at: anInteger [ ^ self collection at: anInteger ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidCollectionWithCallbacks >> collection [ ^ collection ] -{ #category : 'enumerating' } +{ #category : #enumerating } PyramidCollectionWithCallbacks >> do: aBlock [ ^ self collection do: aBlock ] -{ #category : 'initialization' } +{ #category : #initialization } PyramidCollectionWithCallbacks >> initialize [ collection := OrderedCollection new. subscriptions := Dictionary new ] -{ #category : 'removing' } +{ #category : #removing } PyramidCollectionWithCallbacks >> remove: oldObject [ | result | @@ -63,7 +61,7 @@ PyramidCollectionWithCallbacks >> remove: oldObject [ ^ result ] -{ #category : 'removing' } +{ #category : #removing } PyramidCollectionWithCallbacks >> remove: oldObject ifAbsent: anExceptionBlock [ | result | @@ -74,7 +72,7 @@ PyramidCollectionWithCallbacks >> remove: oldObject ifAbsent: anExceptionBlock [ ^ result ] -{ #category : 'removing' } +{ #category : #removing } PyramidCollectionWithCallbacks >> removeAll [ | result | @@ -84,7 +82,7 @@ PyramidCollectionWithCallbacks >> removeAll [ ^ result ] -{ #category : 'removing' } +{ #category : #removing } PyramidCollectionWithCallbacks >> removeAll: oldObjects [ | result | @@ -94,7 +92,7 @@ PyramidCollectionWithCallbacks >> removeAll: oldObjects [ ^ result ] -{ #category : 'removing' } +{ #category : #removing } PyramidCollectionWithCallbacks >> replaceAll: newObjects [ | result | @@ -106,31 +104,31 @@ PyramidCollectionWithCallbacks >> replaceAll: newObjects [ ^ result ] -{ #category : 'signalling' } +{ #category : #signalling } PyramidCollectionWithCallbacks >> signalChanged [ self subscriptions do: [ :callback | callback value ] ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidCollectionWithCallbacks >> size [ ^ self collection size ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidCollectionWithCallbacks >> subscribe: anObject withCallback: aBlock [ self subscriptions at: anObject ifPresent: [ Error signal: 'Already subscribed.' ] ifAbsentPut: [ aBlock ] ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidCollectionWithCallbacks >> subscriptions [ ^ subscriptions ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidCollectionWithCallbacks >> unsubscribe: anObject [ self subscriptions diff --git a/src/Pyramid/PyramidColorInputMultiLinesPresenter.class.st b/src/Pyramid/PyramidColorInputMultiLinesPresenter.class.st index e01fa91e..c9ef304d 100644 --- a/src/Pyramid/PyramidColorInputMultiLinesPresenter.class.st +++ b/src/Pyramid/PyramidColorInputMultiLinesPresenter.class.st @@ -1,23 +1,21 @@ Class { - #name : 'PyramidColorInputMultiLinesPresenter', - #superclass : 'PyramidInputPresenter', + #name : #PyramidColorInputMultiLinesPresenter, + #superclass : #PyramidInputPresenter, #instVars : [ 'hexaInput', 'colorInput', 'whenValueChangedDo' ], - #category : 'Pyramid-specs-custom', - #package : 'Pyramid', - #tag : 'specs-custom' + #category : #'Pyramid-specs-custom' } -{ #category : 'accessing' } +{ #category : #accessing } PyramidColorInputMultiLinesPresenter >> colorInput [ ^ colorInput ] -{ #category : 'layout' } +{ #category : #layout } PyramidColorInputMultiLinesPresenter >> defaultLayout [ ^ SpBoxLayout newVertical @@ -27,13 +25,13 @@ PyramidColorInputMultiLinesPresenter >> defaultLayout [ yourself ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidColorInputMultiLinesPresenter >> hexaInput [ ^ hexaInput ] -{ #category : 'initialization - deprecated' } +{ #category : #'initialization - deprecated' } PyramidColorInputMultiLinesPresenter >> initializePresenters [ whenValueChangedDo := [ :color | ]. @@ -50,26 +48,26 @@ PyramidColorInputMultiLinesPresenter >> initializePresenters [ self value: Color red ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidColorInputMultiLinesPresenter >> value [ ^ self hexaInput value ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidColorInputMultiLinesPresenter >> value: aColor [ self colorInput value: aColor. self hexaInput value: aColor ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidColorInputMultiLinesPresenter >> whenValueChangedDo [ ^ whenValueChangedDo ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidColorInputMultiLinesPresenter >> whenValueChangedDo: anObject [ whenValueChangedDo := anObject diff --git a/src/Pyramid/PyramidColorInputPresenter.class.st b/src/Pyramid/PyramidColorInputPresenter.class.st index 6b78f096..5a938884 100644 --- a/src/Pyramid/PyramidColorInputPresenter.class.st +++ b/src/Pyramid/PyramidColorInputPresenter.class.st @@ -1,30 +1,28 @@ Class { - #name : 'PyramidColorInputPresenter', - #superclass : 'PyramidInputPresenter', + #name : #PyramidColorInputPresenter, + #superclass : #PyramidInputPresenter, #instVars : [ 'aMorph', 'hMorph', 'svMorph', 'whenValueChangedDo' ], - #category : 'Pyramid-specs-custom', - #package : 'Pyramid', - #tag : 'specs-custom' + #category : #'Pyramid-specs-custom' } -{ #category : 'accessing' } +{ #category : #accessing } PyramidColorInputPresenter >> aMorph [ ^ aMorph ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidColorInputPresenter >> alphaSelected: aScale [ self whenValueChangedDo value: self value. ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidColorInputPresenter >> colorSelected: aColor [ "A color has been selected. Make the hue match." @@ -35,12 +33,12 @@ PyramidColorInputPresenter >> colorSelected: aColor [ self aMorph color: aColor ] -{ #category : 'initialization' } +{ #category : #initialization } PyramidColorInputPresenter >> defaultColor [ ^ Color red ] -{ #category : 'layout' } +{ #category : #layout } PyramidColorInputPresenter >> defaultLayout [ ^ SpBoxLayout newVertical spacing: 4; @@ -50,13 +48,13 @@ PyramidColorInputPresenter >> defaultLayout [ yourself ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidColorInputPresenter >> hMorph [ ^ hMorph ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidColorInputPresenter >> hue: aFloat [ "Set the hue in the range 0.0 - 1.0. Update the SV morph and hMorph." @@ -64,7 +62,7 @@ PyramidColorInputPresenter >> hue: aFloat [ self svMorph color: (Color h: aFloat * 359.9 s: 1.0 v: 1.0) ] -{ #category : 'initialization - deprecated' } +{ #category : #'initialization - deprecated' } PyramidColorInputPresenter >> initializePresenter [ whenValueChangedDo := [ :color | ]. @@ -82,20 +80,20 @@ PyramidColorInputPresenter >> initializePresenter [ self value: self defaultColor ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidColorInputPresenter >> svMorph [ ^ svMorph ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidColorInputPresenter >> value [ "Answer the selected color." ^ self svMorph selectedColor alpha: self aMorph value ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidColorInputPresenter >> value: aColor [ "Set the hue and sv components." | whenValueChangedDoTemp | @@ -109,13 +107,13 @@ PyramidColorInputPresenter >> value: aColor [ self aMorph value: aColor alpha] ensure: [ self whenValueChangedDo: whenValueChangedDoTemp ] ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidColorInputPresenter >> whenValueChangedDo [ ^ whenValueChangedDo ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidColorInputPresenter >> whenValueChangedDo: anObject [ whenValueChangedDo := anObject diff --git a/src/Pyramid/PyramidColorInputSingleLinePresenter.class.st b/src/Pyramid/PyramidColorInputSingleLinePresenter.class.st index 0fc134bb..a8e43c2a 100644 --- a/src/Pyramid/PyramidColorInputSingleLinePresenter.class.st +++ b/src/Pyramid/PyramidColorInputSingleLinePresenter.class.st @@ -1,31 +1,29 @@ Class { - #name : 'PyramidColorInputSingleLinePresenter', - #superclass : 'PyramidInputPresenter', + #name : #PyramidColorInputSingleLinePresenter, + #superclass : #PyramidInputPresenter, #instVars : [ 'hexInput', 'alphaInput', 'previewPresenter', 'whenValueChangedDo' ], - #category : 'Pyramid-specs-custom', - #package : 'Pyramid', - #tag : 'specs-custom' + #category : #'Pyramid-specs-custom' } -{ #category : 'accessing' } +{ #category : #accessing } PyramidColorInputSingleLinePresenter >> alphaInput [ ^ alphaInput ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidColorInputSingleLinePresenter >> applyStrings [ self alphaInput strings: self strings. self hexInput strings: self strings ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidColorInputSingleLinePresenter >> cleanHexValue: aString [ | cleanString | @@ -43,7 +41,7 @@ PyramidColorInputSingleLinePresenter >> cleanHexValue: aString [ ^ cleanString ] -{ #category : 'layout' } +{ #category : #layout } PyramidColorInputSingleLinePresenter >> defaultLayout [ ^ SpBoxLayout newHorizontal @@ -54,13 +52,13 @@ PyramidColorInputSingleLinePresenter >> defaultLayout [ yourself ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidColorInputSingleLinePresenter >> hexInput [ ^ hexInput ] -{ #category : 'initialization - deprecated' } +{ #category : #'initialization - deprecated' } PyramidColorInputSingleLinePresenter >> initializePresenter [ whenValueChangedDo := [ :c | ]. @@ -84,13 +82,13 @@ PyramidColorInputSingleLinePresenter >> initializePresenter [ self updatePreview ] ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidColorInputSingleLinePresenter >> previewPresenter [ ^ previewPresenter ] -{ #category : 'actions' } +{ #category : #actions } PyramidColorInputSingleLinePresenter >> updatePreview [ | color | @@ -99,7 +97,7 @@ PyramidColorInputSingleLinePresenter >> updatePreview [ self previewPresenter morph color: self value ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidColorInputSingleLinePresenter >> value [ | color alpha | @@ -112,7 +110,7 @@ PyramidColorInputSingleLinePresenter >> value [ ^ color alpha: (alpha / 100 min: 1 max: 0). ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidColorInputSingleLinePresenter >> value: aColor [ aColor isColor ifFalse: [ @@ -123,13 +121,13 @@ PyramidColorInputSingleLinePresenter >> value: aColor [ self updatePreview ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidColorInputSingleLinePresenter >> whenValueChangedDo [ ^ whenValueChangedDo ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidColorInputSingleLinePresenter >> whenValueChangedDo: aBlock [ whenValueChangedDo := aBlock diff --git a/src/Pyramid/PyramidColorInputSingleLineWithPickupButtonPresenter.class.st b/src/Pyramid/PyramidColorInputSingleLineWithPickupButtonPresenter.class.st index fe4a046e..714b612e 100644 --- a/src/Pyramid/PyramidColorInputSingleLineWithPickupButtonPresenter.class.st +++ b/src/Pyramid/PyramidColorInputSingleLineWithPickupButtonPresenter.class.st @@ -1,30 +1,28 @@ Class { - #name : 'PyramidColorInputSingleLineWithPickupButtonPresenter', - #superclass : 'PyramidInputPresenter', + #name : #PyramidColorInputSingleLineWithPickupButtonPresenter, + #superclass : #PyramidInputPresenter, #instVars : [ 'singleLineInput', 'button', 'multiLinesInput', 'whenValueChangedDo' ], - #category : 'Pyramid-specs-custom', - #package : 'Pyramid', - #tag : 'specs-custom' + #category : #'Pyramid-specs-custom' } -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidColorInputSingleLineWithPickupButtonPresenter >> applytStrings [ self singleLineInput strings: self strings. ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidColorInputSingleLineWithPickupButtonPresenter >> button [ ^ button ] -{ #category : 'layout' } +{ #category : #layout } PyramidColorInputSingleLineWithPickupButtonPresenter >> defaultLayout [ ^ SpBoxLayout newVertical add: (SpBoxLayout newHorizontal @@ -34,7 +32,7 @@ PyramidColorInputSingleLineWithPickupButtonPresenter >> defaultLayout [ yourself) height: 24 ] -{ #category : 'initialization' } +{ #category : #initialization } PyramidColorInputSingleLineWithPickupButtonPresenter >> initializePresenters [ whenValueChangedDo := [ :color | ]. @@ -53,13 +51,13 @@ PyramidColorInputSingleLineWithPickupButtonPresenter >> initializePresenters [ self value: Color red ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidColorInputSingleLineWithPickupButtonPresenter >> multiLinesInput [ ^ multiLinesInput ] -{ #category : 'initialization' } +{ #category : #initialization } PyramidColorInputSingleLineWithPickupButtonPresenter >> openMultiLinesModal [ | dialog color window | @@ -74,32 +72,32 @@ PyramidColorInputSingleLineWithPickupButtonPresenter >> openMultiLinesModal [ ifFalse: [ self multiLinesInput value: self singleLineInput value ] ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidColorInputSingleLineWithPickupButtonPresenter >> singleLineInput [ ^ singleLineInput ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidColorInputSingleLineWithPickupButtonPresenter >> value [ ^ self singleLineInput value ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidColorInputSingleLineWithPickupButtonPresenter >> value: aColor [ self singleLineInput value: aColor. self multiLinesInput value: aColor ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidColorInputSingleLineWithPickupButtonPresenter >> whenValueChangedDo [ ^ whenValueChangedDo ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidColorInputSingleLineWithPickupButtonPresenter >> whenValueChangedDo: anObject [ whenValueChangedDo := anObject diff --git a/src/Pyramid/PyramidCommand.class.st b/src/Pyramid/PyramidCommand.class.st index b8c5585d..4bf754c6 100644 --- a/src/Pyramid/PyramidCommand.class.st +++ b/src/Pyramid/PyramidCommand.class.st @@ -10,26 +10,24 @@ In some rare case, the method saveStatesOf: aCollection withCommand: aCommand wi " Class { - #name : 'PyramidCommand', - #superclass : 'Object', - #category : 'Pyramid-commands', - #package : 'Pyramid', - #tag : 'commands' + #name : #PyramidCommand, + #superclass : #Object, + #category : #'Pyramid-commands' } -{ #category : 'testing' } +{ #category : #testing } PyramidCommand class >> isAbstract [ ^ self == PyramidCommand ] -{ #category : 'testing' } +{ #category : #testing } PyramidCommand >> canBeUsedFor: anObject [ ^ self shouldBeImplemented ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidCommand >> clusterOf: aCollection [ | users cluster | @@ -42,25 +40,25 @@ PyramidCommand >> clusterOf: aCollection [ ^ cluster ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidCommand >> commandInverse [ ^ self ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidCommand >> getGroupedValueFor: anObject [ ^ self getValueFor: anObject ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidCommand >> getValueFor: anObject [ ^ self shouldBeImplemented ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidCommand >> saveStatesOf: aCollection with: arguments [ ^ self @@ -69,7 +67,7 @@ PyramidCommand >> saveStatesOf: aCollection with: arguments [ withArguments: arguments ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidCommand >> saveStatesOf: aCollection withCommand: aCommand withArguments: anArguments [ | mementos | @@ -85,19 +83,19 @@ PyramidCommand >> saveStatesOf: aCollection withCommand: aCommand withArguments: yourself ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidCommand >> saveStatesWithCommandInverseOf: aCollection with: arguments [ ^ self saveStatesOf: aCollection withCommand: self commandInverse withArguments: arguments ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidCommand >> setValueFor: anObject with: anArgument [ self shouldBeImplemented ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidCommand >> useOn: aCollection with: anArgument [ aCollection do: [ :each | self setValueFor: each with: anArgument ] diff --git a/src/Pyramid/PyramidCommandExecutor.class.st b/src/Pyramid/PyramidCommandExecutor.class.st index a13e4782..8c3a2038 100644 --- a/src/Pyramid/PyramidCommandExecutor.class.st +++ b/src/Pyramid/PyramidCommandExecutor.class.st @@ -5,20 +5,18 @@ I’m an abstract class use to define the API. " Class { - #name : 'PyramidCommandExecutor', - #superclass : 'Object', - #category : 'Pyramid-commands', - #package : 'Pyramid', - #tag : 'commands' + #name : #PyramidCommandExecutor, + #superclass : #Object, + #category : #'Pyramid-commands' } -{ #category : 'testing' } +{ #category : #testing } PyramidCommandExecutor class >> isAbstract [ ^ self == PyramidCommandExecutor ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidCommandExecutor >> use: aCommand on: aCollection with: arguments [ self shouldBeImplemented diff --git a/src/Pyramid/PyramidCommandExecutorDecorator.class.st b/src/Pyramid/PyramidCommandExecutorDecorator.class.st index 91bd251e..ec7ddd8a 100644 --- a/src/Pyramid/PyramidCommandExecutorDecorator.class.st +++ b/src/Pyramid/PyramidCommandExecutorDecorator.class.st @@ -3,29 +3,27 @@ I‘m a decorator for the `PyramidMainCommandExecutor`. The wrappe is either the " Class { - #name : 'PyramidCommandExecutorDecorator', - #superclass : 'PyramidCommandExecutor', + #name : #PyramidCommandExecutorDecorator, + #superclass : #PyramidCommandExecutor, #instVars : [ 'wrappee' ], - #category : 'Pyramid-commands', - #package : 'Pyramid', - #tag : 'commands' + #category : #'Pyramid-commands' } -{ #category : 'testing' } +{ #category : #testing } PyramidCommandExecutorDecorator class >> isAbstract [ ^ self == PyramidCommandExecutorDecorator ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidCommandExecutorDecorator >> wrappee [ ^ wrappee ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidCommandExecutorDecorator >> wrappee: anObject [ wrappee := anObject diff --git a/src/Pyramid/PyramidCommandMemento.class.st b/src/Pyramid/PyramidCommandMemento.class.st index f0fb4538..ad4e0420 100644 --- a/src/Pyramid/PyramidCommandMemento.class.st +++ b/src/Pyramid/PyramidCommandMemento.class.st @@ -1,59 +1,57 @@ Class { - #name : 'PyramidCommandMemento', - #superclass : 'PyramidAbstractMemento', + #name : #PyramidCommandMemento, + #superclass : #PyramidAbstractMemento, #instVars : [ 'command', 'target', 'arguments' ], - #category : 'Pyramid-history', - #package : 'Pyramid', - #tag : 'history' + #category : #'Pyramid-history' } -{ #category : 'visiting' } +{ #category : #visiting } PyramidCommandMemento >> accept: aVisitor [ ^ aVisitor visitCommandMemento: self ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidCommandMemento >> arguments [ ^ arguments ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidCommandMemento >> arguments: anObject [ arguments := anObject ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidCommandMemento >> command [ ^ command ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidCommandMemento >> command: anObject [ command := anObject ] -{ #category : 'window management' } +{ #category : #'window management' } PyramidCommandMemento >> restore [ self command setValueFor: self target with: self arguments ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidCommandMemento >> target [ ^ target ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidCommandMemento >> target: anObject [ target := anObject diff --git a/src/Pyramid/PyramidCompositeMemento.class.st b/src/Pyramid/PyramidCompositeMemento.class.st index 4050380c..f3eb07f9 100644 --- a/src/Pyramid/PyramidCompositeMemento.class.st +++ b/src/Pyramid/PyramidCompositeMemento.class.st @@ -1,39 +1,37 @@ Class { - #name : 'PyramidCompositeMemento', - #superclass : 'PyramidAbstractMemento', + #name : #PyramidCompositeMemento, + #superclass : #PyramidAbstractMemento, #instVars : [ 'mementos' ], - #category : 'Pyramid-history', - #package : 'Pyramid', - #tag : 'history' + #category : #'Pyramid-history' } -{ #category : 'visiting' } +{ #category : #visiting } PyramidCompositeMemento >> accept: aVisitor [ ^ aVisitor visitCompositeMemento: self ] -{ #category : 'initialization' } +{ #category : #initialization } PyramidCompositeMemento >> initialize [ mementos := OrderedCollection new. ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidCompositeMemento >> mementos [ ^ mementos ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidCompositeMemento >> mementos: anObject [ mementos := anObject ] -{ #category : 'window management' } +{ #category : #'window management' } PyramidCompositeMemento >> restore [ self mementos do: [ :each | each restore ] diff --git a/src/Pyramid/PyramidDashArrayInputPresenter.class.st b/src/Pyramid/PyramidDashArrayInputPresenter.class.st index 45db5c30..4f483d5f 100644 --- a/src/Pyramid/PyramidDashArrayInputPresenter.class.st +++ b/src/Pyramid/PyramidDashArrayInputPresenter.class.st @@ -1,22 +1,20 @@ Class { - #name : 'PyramidDashArrayInputPresenter', - #superclass : 'PyramidInputPresenter', + #name : #PyramidDashArrayInputPresenter, + #superclass : #PyramidInputPresenter, #instVars : [ 'submitBlock', 'inputArray' ], - #category : 'Pyramid-specs-custom', - #package : 'Pyramid', - #tag : 'specs-custom' + #category : #'Pyramid-specs-custom' } -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidDashArrayInputPresenter >> applyStrings [ self inputArray help: self strings help ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidDashArrayInputPresenter >> defaultLayout [ ^ SpBoxLayout newHorizontal @@ -24,7 +22,7 @@ PyramidDashArrayInputPresenter >> defaultLayout [ yourself ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidDashArrayInputPresenter >> getArrayFrom: aString [ | numbersAsString | @@ -34,7 +32,7 @@ PyramidDashArrayInputPresenter >> getArrayFrom: aString [ NumberParser parse: each onError: [ ^ PyramidUnknowState new ] ] ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidDashArrayInputPresenter >> initializePresenters [ inputArray := SpTextInputFieldPresenter new @@ -43,26 +41,26 @@ PyramidDashArrayInputPresenter >> initializePresenters [ yourself ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidDashArrayInputPresenter >> inputArray [ ^ inputArray ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidDashArrayInputPresenter >> submitBlock [ submitBlock ifNil: [ submitBlock := [ :n | ] ]. ^ submitBlock ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidDashArrayInputPresenter >> value [ ^ self getArrayFrom: self inputArray text ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidDashArrayInputPresenter >> value: aCollection [ aCollection isCollection ifFalse: [ @@ -73,7 +71,7 @@ PyramidDashArrayInputPresenter >> value: aCollection [ number asFloat reduce printString ])) ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidDashArrayInputPresenter >> whenValueChangedDo: aBlock [ submitBlock := aBlock diff --git a/src/Pyramid/PyramidDynamicLayoutAllPanels.class.st b/src/Pyramid/PyramidDynamicLayoutAllPanels.class.st index ce814a8e..71042492 100644 --- a/src/Pyramid/PyramidDynamicLayoutAllPanels.class.st +++ b/src/Pyramid/PyramidDynamicLayoutAllPanels.class.st @@ -1,12 +1,10 @@ Class { - #name : 'PyramidDynamicLayoutAllPanels', - #superclass : 'PyramidDynamicLayoutStrategy', - #category : 'Pyramid-plugin-dynamic-layout', - #package : 'Pyramid', - #tag : 'plugin-dynamic-layout' + #name : #PyramidDynamicLayoutAllPanels, + #superclass : #PyramidDynamicLayoutStrategy, + #category : #'Pyramid-plugin-dynamic-layout' } -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidDynamicLayoutAllPanels >> centerLayoutFor: aWindow [ ^ SpPanedLayout newLeftToRight diff --git a/src/Pyramid/PyramidDynamicLayoutOnlyCenter.class.st b/src/Pyramid/PyramidDynamicLayoutOnlyCenter.class.st index ac44f91b..860e12b3 100644 --- a/src/Pyramid/PyramidDynamicLayoutOnlyCenter.class.st +++ b/src/Pyramid/PyramidDynamicLayoutOnlyCenter.class.st @@ -1,12 +1,10 @@ Class { - #name : 'PyramidDynamicLayoutOnlyCenter', - #superclass : 'PyramidDynamicLayoutStrategy', - #category : 'Pyramid-plugin-dynamic-layout', - #package : 'Pyramid', - #tag : 'plugin-dynamic-layout' + #name : #PyramidDynamicLayoutOnlyCenter, + #superclass : #PyramidDynamicLayoutStrategy, + #category : #'Pyramid-plugin-dynamic-layout' } -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidDynamicLayoutOnlyCenter >> centerLayoutFor: aWindow [ ^ (self spaceAndToolBarFor: aWindow) diff --git a/src/Pyramid/PyramidDynamicLayoutOnlyLeft.class.st b/src/Pyramid/PyramidDynamicLayoutOnlyLeft.class.st index ff683463..5556f2b0 100644 --- a/src/Pyramid/PyramidDynamicLayoutOnlyLeft.class.st +++ b/src/Pyramid/PyramidDynamicLayoutOnlyLeft.class.st @@ -1,12 +1,10 @@ Class { - #name : 'PyramidDynamicLayoutOnlyLeft', - #superclass : 'PyramidDynamicLayoutStrategy', - #category : 'Pyramid-plugin-dynamic-layout', - #package : 'Pyramid', - #tag : 'plugin-dynamic-layout' + #name : #PyramidDynamicLayoutOnlyLeft, + #superclass : #PyramidDynamicLayoutStrategy, + #category : #'Pyramid-plugin-dynamic-layout' } -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidDynamicLayoutOnlyLeft >> centerLayoutFor: aWindow [ ^ SpPanedLayout newLeftToRight diff --git a/src/Pyramid/PyramidDynamicLayoutOnlyRight.class.st b/src/Pyramid/PyramidDynamicLayoutOnlyRight.class.st index 352e40ac..802da25a 100644 --- a/src/Pyramid/PyramidDynamicLayoutOnlyRight.class.st +++ b/src/Pyramid/PyramidDynamicLayoutOnlyRight.class.st @@ -1,12 +1,10 @@ Class { - #name : 'PyramidDynamicLayoutOnlyRight', - #superclass : 'PyramidDynamicLayoutStrategy', - #category : 'Pyramid-plugin-dynamic-layout', - #package : 'Pyramid', - #tag : 'plugin-dynamic-layout' + #name : #PyramidDynamicLayoutOnlyRight, + #superclass : #PyramidDynamicLayoutStrategy, + #category : #'Pyramid-plugin-dynamic-layout' } -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidDynamicLayoutOnlyRight >> centerLayoutFor: aWindow [ ^ SpPanedLayout newLeftToRight diff --git a/src/Pyramid/PyramidDynamicLayoutStrategy.class.st b/src/Pyramid/PyramidDynamicLayoutStrategy.class.st index db39f2d8..8503c2a0 100644 --- a/src/Pyramid/PyramidDynamicLayoutStrategy.class.st +++ b/src/Pyramid/PyramidDynamicLayoutStrategy.class.st @@ -1,36 +1,34 @@ Class { - #name : 'PyramidDynamicLayoutStrategy', - #superclass : 'Object', - #category : 'Pyramid-plugin-dynamic-layout', - #package : 'Pyramid', - #tag : 'plugin-dynamic-layout' + #name : #PyramidDynamicLayoutStrategy, + #superclass : #Object, + #category : #'Pyramid-plugin-dynamic-layout' } -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidDynamicLayoutStrategy class >> proportion [ ^ 1 / 4 ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidDynamicLayoutStrategy class >> proportionRight [ ^ 1 - self proportion ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidDynamicLayoutStrategy class >> proportionRightAndLeft [ ^ (1 - (2 * self proportion)) / (1 - self proportion) ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidDynamicLayoutStrategy >> centerLayoutFor: aWindow [ ^ self shouldBeImplemented ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidDynamicLayoutStrategy >> layoutFor: aWindow [ | mainLayout | @@ -42,7 +40,7 @@ PyramidDynamicLayoutStrategy >> layoutFor: aWindow [ ^ mainLayout ] -{ #category : 'as yet unclassified' } +{ #category : #'as yet unclassified' } PyramidDynamicLayoutStrategy >> spaceAndToolBarFor: aWindow [ "^ (aWindow services at: #space) presenter" @@ -52,7 +50,7 @@ PyramidDynamicLayoutStrategy >> spaceAndToolBarFor: aWindow [ yourself ] -{ #category : 'specs' } +{ #category : #specs } PyramidDynamicLayoutStrategy >> topLayoutFor: aWindow [ | layout | diff --git a/src/Pyramid/PyramidDynamicWindow.class.st b/src/Pyramid/PyramidDynamicWindow.class.st index 597b821b..995c2ae8 100644 --- a/src/Pyramid/PyramidDynamicWindow.class.st +++ b/src/Pyramid/PyramidDynamicWindow.class.st @@ -1,21 +1,19 @@ Class { - #name : 'PyramidDynamicWindow', - #superclass : 'PyramidWindow', + #name : #PyramidDynamicWindow, + #superclass : #PyramidWindow, #instVars : [ 'layoutStrategy' ], - #category : 'Pyramid-plugin-dynamic-layout', - #package : 'Pyramid', - #tag : 'plugin-dynamic-layout' + #category : #'Pyramid-plugin-dynamic-layout' } -{ #category : 'accessing' } +{ #category : #accessing } PyramidDynamicWindow >> layout [ ^ self layoutStrategy layoutFor: self ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidDynamicWindow >> layoutStrategy [ layoutStrategy ifNil: [ @@ -23,7 +21,7 @@ PyramidDynamicWindow >> layoutStrategy [ ^ layoutStrategy ] -{ #category : 'accessing' } +{ #category : #accessing } PyramidDynamicWindow >> layoutStrategy: aStrategy [ layoutStrategy := aStrategy. diff --git a/src/Pyramid/PyramidEditor.class.st b/src/Pyramid/PyramidEditor.class.st index 9707b9a1..b4177428 100644 --- a/src/Pyramid/PyramidEditor.class.st +++ b/src/Pyramid/PyramidEditor.class.st @@ -1,6 +1,6 @@ Class { - #name : 'PyramidEditor', - #superclass : 'Object', + #name : #PyramidEditor, + #superclass : #Object, #traits : 'TPyramidFindPlugin', #classTraits : 'TPyramidFindPlugin classTrait', #instVars : [ @@ -10,31 +10,29 @@ Class { 'propertiesManager', 'announcer' ], - #category : 'Pyramid-core', - #package : 'Pyramid', - #tag : 'core' + #category : #'Pyramid-core' } -{ #category : 'private' } +{ #category : #private } PyramidEditor class >> buildEditor [ ^ PyramidPluginManager uniqueInstance buildEditor ] -{ #category : 'instance creation' } +{ #category : #'instance creation' } PyramidEditor class >> open [