]> gitweb.factorcode.org Git - factor.git/blob - basis/models/models-docs.factor
aa0a8f3b8714894c854a167e4544d060cf0ec61b
[factor.git] / basis / models / models-docs.factor
1 USING: help.syntax help.markup kernel math classes classes.tuple
2 calendar sequences growable ;
3 IN: models
4
5 HELP: model
6 { $class-description "A mutable cell holding a single value. When the value is changed, a sequence of connected objects are notified. Models have the following slots:"
7     { $list
8         { { $slot "value" } " - the value of the model. Use " { $link set-model } " to change the value." }
9         { { $slot "connections" } " - a sequence of objects implementing the " { $link model-changed } " generic word, to be notified when the model's value changes." }
10         { { $slot "dependencies" } " - a sequence of models which should have this model added to their sequence of connections when activated." }
11         { { $slot "ref" } " - a reference count tracking the number of models which depend on this one." }
12         { { $slot "locked?" } " - a slot set by " { $link with-locked-model } " to ensure that the model doesn't get changed recursively" }
13     }
14 "Other classes may inherit from " { $link model } "."
15 } ;
16
17 HELP: <model>
18 { $values { "value" object } { "model" "a new " { $link model } } }
19 { $description "Creates a new model with an initial value." } ;
20
21 HELP: add-dependency
22 { $values { "dep" model } { "model" model } }
23 { $description "Registers a dependency. When " { $snippet "model" } " is activated, it will be added to " { $snippet "dep" } "'s connections and notified when " { $snippet "dep" } " changes." }
24 { $notes "This word should not be called directly unless you are implementing your own model class." } ;
25
26 { add-dependency remove-dependency activate-model deactivate-model } related-words
27
28 HELP: remove-dependency
29 { $values { "dep" model } { "model" model } }
30 { $description "Unregisters a dependency." }
31 { $notes "This word should not be called directly unless you are implementing your own model class." } ;
32
33 HELP: model-activated
34 { $values { "model" model } }
35 { $contract "Called after a model has been activated." } ;
36
37 { model-activated activate-model deactivate-model } related-words
38
39 HELP: activate-model
40 { $values { "model" model } }
41 { $description "Increments the reference count of the model. If it was previously zero, this model is added as a connection to all models registered as dependencies by " { $link add-dependency } "." }
42 { $warning "Calls to " { $link activate-model } " and " { $link deactivate-model } " should be balanced to keep the reference counting consistent, otherwise " { $link model-changed } " might be called at the wrong time or not at all." } ;
43
44 HELP: deactivate-model
45 { $values { "model" model } }
46 { $description "Decrements the reference count of the model. If it reaches zero, this model is removed as a connection from all models registered as dependencies by " { $link add-dependency } "." }
47 { $warning "Calls to " { $link activate-model } " and " { $link deactivate-model } " should be balanced to keep the reference counting consistent, otherwise " { $link model-changed } " might be called at the wrong time or not at all." } ;
48
49 HELP: model-changed
50 { $values { "model" model } { "observer" object } }
51 { $contract "Called to notify observers of a model that the model value has changed as a result of a call to " { $link set-model } ". Observers can be registered with " { $link add-connection } "." } ;
52
53 { add-connection remove-connection model-changed } related-words
54
55 HELP: add-connection
56 { $values { "observer" object } { "model" model } }
57 { $contract "Registers an object interested in being notified of changes to the model's value. When the value is changed as a result of a call to " { $link set-model } ", the " { $link model-changed } " word is called on the observer." } ;
58
59 HELP: remove-connection
60 { $values { "observer" object } { "model" model } }
61 { $contract "Unregisters an object no longer interested in being notified of changes to the model's value." } ;
62
63 HELP: set-model
64 { $values { "value" object } { "model" model } }
65 { $description "Changes the value of a model and calls " { $link model-changed } " on all observers registered with " { $link add-connection } "." } ;
66
67 HELP: ?set-model
68 { $values { "value" object } { "model" model } }
69 { $description "Similar to " { $link set-model } ", but only sets the value if the new value is different." } ;
70
71 { set-model change-model change-model* (change-model) push-model pop-model } related-words
72
73 HELP: change-model
74 { $values { "model" model } { "quot" { $quotation ( ..a obj -- ..b newobj ) } } }
75 { $description "Applies the quotation to the current value of the model to yield a new value, then changes the value of the model to the new value, and calls " { $link model-changed } " on all observers registered with " { $link add-connection } "." } ;
76
77 HELP: change-model*
78 { $values { "model" model } { "quot" { $quotation ( ..a obj -- ..b ) } } }
79 { $description "Applies the quotation to the current value of the model and calls " { $link model-changed } " on all observers registered with " { $link add-connection } " without actually changing the value of the model. This is useful for notifying observers of operations that mutate a value, as in " { $link push-model } " and " { $link pop-model } "." } ;
80
81 HELP: (change-model)
82 { $values { "model" model } { "quot" { $quotation ( ..a obj -- ..b newobj ) } } }
83 { $description "Applies the quotation to the current value of the model to yield a new value, then changes the value of the model to the new value without notifying any observers registered with " { $link add-connection } "." }
84 { $notes "There are very few reasons for user code to call this word. Instead, call " { $link change-model } ", which notifies observers." } ;
85
86 HELP: push-model
87 { $values { "value" object } { "model" model } }
88 { $description { $link push } "es " { $snippet "value" } " onto the " { $link growable } " sequence stored as the value of " { $snippet "model" } " and calls " { $link model-changed } " on all observers registered for the model with " { $link add-connection } "." } ;
89
90 HELP: pop-model
91 { $values { "model" model } { "value" object } }
92 { $description { $link pop } "s the topmost " { $snippet "value" } " off of the " { $link growable } " sequence stored as the value of " { $snippet "model" } " and calls " { $link model-changed } " on all observers registered for the model with " { $link add-connection } "." } ;
93
94 HELP: range-value
95 { $values { "model" model } { "value" object } }
96 { $contract "Outputs the current value of a range model." } ;
97
98 HELP: range-page-value
99 { $values { "model" model } { "value" object } }
100 { $contract "Outputs the page size of a range model." } ;
101
102 HELP: range-min-value
103 { $values { "model" model } { "value" object } }
104 { $contract "Outputs the minimum value of a range model." } ;
105
106 HELP: range-max-value
107 { $values { "model" model } { "value" object } }
108 { $contract "Outputs the maximum value of a range model." } ;
109
110 HELP: range-max-value*
111 { $values { "model" model } { "value" object } }
112 { $contract "Outputs the slider position for a range model. Since the bottom of the slider cannot exceed the maximum value, this is equal to the maximum value minus the page size." } ;
113
114 HELP: set-range-value
115 { $values { "value" object } { "model" model } }
116 { $description "Sets the current value of a range model." } 
117 { $side-effects "model" } ;
118
119 HELP: set-range-page-value
120 { $values { "value" object } { "model" model } }
121 { $description "Sets the page size of a range model." } 
122 { $side-effects "model" } ;
123
124 HELP: set-range-min-value
125 { $values { "value" object } { "model" model } }
126 { $description "Sets the minimum value of a range model." } 
127 { $side-effects "model" } ;
128
129 HELP: set-range-max-value
130 { $values { "value" object } { "model" model } }
131 { $description "Sets the maximum value of a range model." }
132 { $side-effects "model" } ;
133
134 ARTICLE: "models" "Models"
135 "The " { $vocab-link "models" } " vocabulary provides basic support for dataflow programming. A model is an observable value. Changing a model's value notifies other objects which depend on the model automatically, and models may depend on each other's values."
136 $nl
137 "The class of models:"
138 { $subsections model }
139 "Creating models:"
140 { $subsections <model> }
141 "Adding and removing connections:"
142 { $subsections
143     add-connection
144     remove-connection
145 }
146 "Generic word called on model connections when the model value changes:"
147 { $subsections model-changed }
148 "When using models which are not associated with controls (or when unit testing controls), you must activate and deactivate models manually:"
149 { $subsections
150     activate-model
151     deactivate-model
152     "models-impl"
153     "models.arrow"
154     "models.product"
155     "models-range"
156     "models-delay"
157 } ;
158
159 ARTICLE: "models-impl" "Implementing models"
160 "New types of models can be defined, for example see " { $vocab-link "models.arrow" } "."
161 $nl
162 "Models can execute hooks when activated:"
163 { $subsections model-activated }
164 "Models can override requests to change their value, for example to perform validation:"
165 { $subsections set-model } ;
166
167 ABOUT: "models"