26 lines
504 B
Smalltalk
26 lines
504 B
Smalltalk
Class {
|
|
#name : #PPCMContainer,
|
|
#superclass : #PPCMDelegateNode,
|
|
#category : #'PetitMarkdown-AST'
|
|
}
|
|
|
|
{ #category : #'as yet unclassified' }
|
|
PPCMContainer >> accept: visitor [
|
|
^ visitor visitContainer: self
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
PPCMContainer >> viewBody [
|
|
|
|
| aText |
|
|
aText := self className asRopedText.
|
|
|
|
self children do: [ :child |
|
|
aText append: ' ' asRopedText.
|
|
aText append: (child className asRopedText foreground:
|
|
BrGlamorousColors disabledButtonTextColor) ].
|
|
|
|
|
|
^ aText
|
|
]
|