File: list.rst

package info (click to toggle)
neuron 8.2.6-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 34,768 kB
  • sloc: cpp: 149,571; python: 58,449; ansic: 50,329; sh: 3,510; xml: 213; pascal: 51; makefile: 35; sed: 5
file content (386 lines) | stat: -rw-r--r-- 7,392 bytes parent folder | download | duplicates (3)
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386

.. _hoc_list:

List
----



.. hoc:class:: List

    List of objects 

    Syntax:
        ``List()``

        ``List("templatename")``


    Description:
        The List class provides useful tools for creating and manipulating lists of objects. 
        For example, if you have 
        a network of cells connected at synapses and each synapse is a separate object, you may want to use 
        lists to help organize the network.  You could create one list of all pre-synaptic connections and 
        another of post-synaptic connections, as well as a list of all the connecting cells. 


        ``List()`` 
            Create an empty list. Objects added to the list are referenced. 
            Objects removed from the list are unreferenced. 

        ``List("templatename")`` 
            Create a list of all the object instances of the template. 
            These object instances are NOT referenced and therefore the list 
            dynamically changes as objects of template instances are 
            created and destroyed. Adding and  removing objects 
            from this kind of list is not allowed. 


         

----



.. hoc:method:: List.append


    Syntax:
        ``.append(object)``


    Description:
        Append an object to a list, and return the number of items in list. 

         

----



.. hoc:method:: List.prepend


    Syntax:
        ``.prepend(object)``


    Description:
        Add an object to the beginning of a list, and return the number of objects in the list. 
        The inserted object has index=0.  Following objects have an incremented 
        index. 

         

----



.. hoc:method:: List.insrt


    Syntax:
        ``.insrt(i, object)``


    Description:
        Insert an object before item *i*, and return the number of items in the list. 
        The inserted object has index *i*, following items have an incremented 
        index. 
         
        Not called :ref:`insert <hoc_keyword_insert>` because that name is a keyword

         

----



.. hoc:method:: List.remove


    Syntax:
        ``.remove(i)``


    Description:
        Remove the object at index *i*. Following items have a decremented 
        index. ie it's often most convenient to remove items from back 
        to  front. Return the number of objects remaining in the list. 

         

----



.. hoc:method:: List.remove_all


    Syntax:
        ``.remove_all()``


    Description:
        Remove all the objects from the list. Return 0. 

         

----



.. hoc:method:: List.index


    Syntax:
        ``.index(object)``


    Description:
        Return the index of the object in the list. Return a -1 if the 
        object is not in the list. 

         

----



.. hoc:method:: List.count


    Syntax:
        ``.count()``


    Description:
        Return the number of objects in the list. 

         

----



.. hoc:method:: List.browser


    Syntax:
        ``.browser()``

        ``.browser("title", "strname")``

        ``.browser("title", strdef, "command")``


    Description:


        ``.browser(["title"], ["strname"])`` 
            Make the list visible on the screen. 
            The items are normally the object names but if the second arg is 
            present and is the name of a string symbol that is defined 
            in the object's	template, then that string is displayed in the list. 

        ``.browser("title", strdef, "command")`` 
            Browser labels are computed. For each item, command is executed 
            with :hoc:data:`hoc_ac_` set to the index of the item. On return, the
            contents of *strdef* are used as the label. Some objects 
            notify the List when they change, ie point processes when they change 
            their location notify the list. 


         

----



.. hoc:method:: List.selected


    Syntax:
        ``.selected()``


    Description:
        Return the index of the highlighted object or -1 if no object is highlighted. 

    .. seealso::
        :hoc:meth:`List.browser`

         

----



.. hoc:method:: List.select


    Syntax:
        ``.select(i)``


    Description:
        Highlight the object at index *i*. 

    .. seealso::
        :hoc:meth:`List.browser`

         

----



.. hoc:method:: List.scroll_pos


    Syntax:
        ``index = list.scroll_pos()``

        ``list.scroll_pos(index)``


    Description:
        Returns the index of the top of the browser window. Sets the scroll so that 
        index is the top of the browser window. A large number will cause a scroll 
        to the bottom. 

    .. seealso::
        :hoc:meth:`List.browser`

         

----



.. hoc:method:: List.select_action


    Syntax:
        ``list.select_action("command")``

        ``list.select_action("command", 0or1)``


    Description:
        Execute a command when an item in the 
        list :hoc:meth:`List.browser` is selected by single clicking the mouse.
        :hoc:data:`hoc_ac_` contains the index when the command is executed. Thus
        ``l.select_action("action(hoc_ac_)")`` is convenient usage. 
        action will be invoked within the object context that existed when 
        ``select_action`` was called. 
         
        If the second arg exists and is 1 then the action is only called on 
        the mouse button release. If nothing is selected at that time then 
        :hoc:data:`hoc_ac_` = -1

    Example:
        This example shows that the object context is saved when an action is 
        registered. 

        .. code-block::
            none

            begintemplate A 
            objref this, list, obj 
            proc init() { 
            	list = new List() 
            	list.append(this) 
            	for i=0,4 { 
            		obj = new Random() 
            		list.append(obj) 
            	} 
            	list.browser() 
            	list.select_action("act(hoc_ac_)") 
            } 
            proc act() { 
            	printf("item %d selected in list of object %s\n", $1, this) 
            } 
            endtemplate A 
             
            objref a[2] 
            for i=0,1 a[i] = new A() 


         

----



.. hoc:method:: List.accept_action


    Syntax:
        ``list.accept_action("command")``


    Description:
        Execute a command when double clicking 
        on an item displayed in the list :hoc:meth:`List.browser` by the mouse.
        :hoc:data:`hoc_ac_` contains the index when the command is executed. Command is
        executed within the object context that existed when ``accept_action`` 
        was called. 

    Example:

        .. code-block::
            none

            objref list, obj 
            list = new List() 
            for i=0,4 { 
                    obj = new Random() 
                    list.append(obj)  
            	obj = new List() 
            	list.append(obj) 
            } 
            list.browser() 
            list.accept_action("act()") 
            proc act() { 
                    printf("item %d accepted\n", hoc_ac_) 
            } 


         

----



.. hoc:method:: List.object


    Syntax:
        ``.object(i)``

        ``.o(i)``


    Description:
        Return the object at index *i*. 

         

----



.. hoc:method:: List.o


    Syntax:
        ``.object(i)``

        ``.o(i)``


    Description:
        Return the object at index *i*.