Grafoscopio/src/Grafoscopio/PRDocumentItem.extension.st

35 lines
683 B
Smalltalk
Raw Normal View History

2020-03-30 17:02:46 +00:00
Extension { #name : #PRDocumentItem }
2020-04-03 11:08:47 +00:00
{ #category : #'*Grafoscopio' }
PRDocumentItem >> isLineBreak [
^ false
]
{ #category : #'*Grafoscopio' }
PRDocumentItem >> isTextOrLineBreak [
^ false
]
2020-03-30 17:02:46 +00:00
{ #category : #'*Grafoscopio' }
PRDocumentItem >> textSize [
^ self textStop - self textStart
]
{ #category : #'*Grafoscopio' }
PRDocumentItem >> textStart [
^ self
propertyAt: #textStart
ifAbsent: [ self hasChildren
ifTrue: [ self children first textStart ]
ifFalse: [ 0 ] ]
]
{ #category : #'*Grafoscopio' }
PRDocumentItem >> textStop [
^ self
propertyAt: #textStop
ifAbsent: [ self hasChildren
ifTrue: [ self children last textStop ]
ifFalse: [ 0 ] ]
]