mirror of
https://github.com/lxsang/Diya-API.git
synced 2024-12-27 03:48:21 +01:00
96 lines
1.5 KiB
Smalltalk
96 lines
1.5 KiB
Smalltalk
Class {
|
|
#name : #Diya2DNodeStyle,
|
|
#superclass : #DiyaNodeStyle,
|
|
#instVars : [
|
|
'bgcolor',
|
|
'color',
|
|
'border',
|
|
'fontSize',
|
|
'fontFamilly',
|
|
'borderColor',
|
|
'bgcolor2',
|
|
'fontStyle'
|
|
],
|
|
#category : #'Diya-Graphics'
|
|
}
|
|
|
|
{ #category : #accessing }
|
|
Diya2DNodeStyle >> bgcolor [
|
|
^ bgcolor
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
Diya2DNodeStyle >> bgcolor2 [
|
|
^ bgcolor2
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
Diya2DNodeStyle >> bgcolor2: anObject [
|
|
bgcolor2 := anObject
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
Diya2DNodeStyle >> bgcolor: anObject [
|
|
bgcolor := anObject
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
Diya2DNodeStyle >> border [
|
|
^ border
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
Diya2DNodeStyle >> border: anObject [
|
|
border := anObject
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
Diya2DNodeStyle >> borderColor [
|
|
^ borderColor
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
Diya2DNodeStyle >> borderColor: anObject [
|
|
borderColor := anObject
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
Diya2DNodeStyle >> color [
|
|
^ color
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
Diya2DNodeStyle >> color: anObject [
|
|
color := anObject
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
Diya2DNodeStyle >> fontFamilly [
|
|
^ fontFamilly
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
Diya2DNodeStyle >> fontFamilly: anObject [
|
|
fontFamilly := anObject
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
Diya2DNodeStyle >> fontSize [
|
|
^ fontSize
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
Diya2DNodeStyle >> fontSize: anObject [
|
|
fontSize := anObject
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
Diya2DNodeStyle >> fontStyle [
|
|
^ fontStyle
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
Diya2DNodeStyle >> fontStyle: anObject [
|
|
fontStyle := anObject
|
|
]
|