Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue 0174 #200

Merged
merged 12 commits into from
Jul 31, 2024
8 changes: 8 additions & 0 deletions src/Pyramid-Bloc/BlElement.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,11 @@ BlElement >> editWithPyramid [
editor window open.
^ editor
]

{ #category : #'*Pyramid-Bloc' }
BlElement >> parentsShouldSerializeChildren [

self parent ifNil: [ ^ true ].
self parent shouldSerializedChildren ifFalse: [ ^ false ].
^ self parent parentsShouldSerializeChildren
]
2 changes: 1 addition & 1 deletion src/Pyramid-Bloc/PyramidAbstractBlocCommand.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ PyramidAbstractBlocCommand class >> isAbstract [
{ #category : #testing }
PyramidAbstractBlocCommand >> canBeUsedFor: anObject [

^ anObject class = BlElement or: [anObject class inheritsFrom: BlElement]
^ anObject isKindOf: BlElement
]
34 changes: 0 additions & 34 deletions src/Pyramid-Bloc/PyramidAbstractColumnsBuilder.class.st

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,16 @@ PyramidBackgroundImageModalPresenter >> defaultLayout [
{ #category : #action }
PyramidBackgroundImageModalPresenter >> image: aForm [

| source |
self codeBitmap beForObject: aForm.
self codeBitmap text: self textBitmap , 'self
'
'.
(aForm isPyramidProxy) ifFalse: [ ^ self ].
source := aForm pyramidExternalRessourceSource.
self inputReceiverProxy text: (Stash new serialize: source target).
self inputSelectorProxy text: (Stash new serialize: source selector).
self inputArgumentsProxy text:
(Stash new serialize: source arguments)
]

{ #category : #initialization }
Expand Down
3 changes: 1 addition & 2 deletions src/Pyramid-Bloc/PyramidBlocTextCommand.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ PyramidBlocTextCommand class >> isAbstract [
{ #category : #testing }
PyramidBlocTextCommand >> canBeUsedFor: anObject [

^ anObject class = BlTextElement or: [
anObject class inheritsFrom: BlTextElement ]
^ anObject isKindOf: BlTextElement
]

{ #category : #'as yet unclassified' }
Expand Down
78 changes: 0 additions & 78 deletions src/Pyramid-Bloc/PyramidElementToAddCategory.class.st

This file was deleted.

77 changes: 0 additions & 77 deletions src/Pyramid-Bloc/PyramidElementToAddFactory.class.st

This file was deleted.

17 changes: 0 additions & 17 deletions src/Pyramid-Bloc/PyramidElementToAddFactoryEmpty.class.st

This file was deleted.

126 changes: 0 additions & 126 deletions src/Pyramid-Bloc/PyramidElementToAddFactoryPresenter.class.st

This file was deleted.

Loading
Loading