-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathINNotebookAbstractCellModel.class.st
More file actions
94 lines (71 loc) · 2.16 KB
/
INNotebookAbstractCellModel.class.st
File metadata and controls
94 lines (71 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
"
I am an abstract editor cell model.
I have an instance variable `needToUpdate` that is set to true if a preview cell was never created for me (i.e. if I was never compiled) or if I was modified after having created a preview cell.
It is set to false otherwise, this way I don't have to be recompiled or to create a new preview cell.
I am responsible for the compilation of the content in my presenter's text input.
"
Class {
#name : #INNotebookAbstractCellModel,
#superclass : #Object,
#instVars : [
'text',
'needToUpdate',
'previewCell'
],
#category : #InteractiveNotebookPresenter
}
{ #category : #ston }
INNotebookAbstractCellModel class >> stonAllInstVarNames [
^ super stonAllInstVarNames \ { #needToUpdate. #previewCell }
]
{ #category : #converting }
INNotebookAbstractCellModel >> beCodeModel [
^ self subclassResponsibility
]
{ #category : #converting }
INNotebookAbstractCellModel >> beTextModel [
^ self subclassResponsibility
]
{ #category : #printing }
INNotebookAbstractCellModel >> getContentwithContext: aContext [
^ self subclassResponsibility
]
{ #category : #initialization }
INNotebookAbstractCellModel >> initialize [
super initialize.
needToUpdate := true.
text := String empty
]
{ #category : #accessing }
INNotebookAbstractCellModel >> needToUpdate [
^ needToUpdate
]
{ #category : #accessing }
INNotebookAbstractCellModel >> needToUpdate: aBoolean [
needToUpdate := aBoolean
]
{ #category : #helpers }
INNotebookAbstractCellModel >> presenterClass [
self subclassResponsibility
]
{ #category : #accessing }
INNotebookAbstractCellModel >> previewCell [
^ previewCell
]
{ #category : #accessing }
INNotebookAbstractCellModel >> previewCell: anObject [
previewCell := anObject
]
{ #category : #printing }
INNotebookAbstractCellModel >> printContentIn: aStream withContext: aContext [
self subclassResponsibility
]
{ #category : #accessing }
INNotebookAbstractCellModel >> text [
^ text
]
{ #category : #accessing }
INNotebookAbstractCellModel >> text: anObject [
(text = anObject) ifFalse: [ self needToUpdate: true ].
text := anObject
]