summaryrefslogtreecommitdiff
path: root/src/lib/evas/canvas/evas_object_smart.eo
blob: e3202be9e3b135a434adc9244397bc0b1a869e99 (plain)
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
class Evas.Object_Smart (Evas_Object, Evas.Signal_Interface)
{
   eo_prefix: evas_obj_smart;
   data: Evas_Smart_Data;
   properties {
      need_recalculate {
         set {
            /*@
            Set or unset the flag signalling that a given smart object needs to
            get recalculated.

            If this flag is set, then the @c calculate() smart function of @p
            obj will be called, if one is provided, during rendering phase of
            Evas (see evas_render()), after which this flag will be
            automatically unset.

            If that smart function is not provided for the given object, this
            flag will be left unchanged.

            @note just setting this flag will not make the canvas' whole scene
            dirty, by itself, and evas_render() will have no effect. To
            force that, use evas_object_smart_changed(), that will also
            call this function automatically, with @c EINA_TRUE as parameter.

            @see evas_object_smart_need_recalculate_get()
            @see evas_object_smart_calculate()
            @see evas_smart_objects_calculate()

            @ingroup Evas_Smart_Object_Group */
         }
         get {
            /*@
            Get the value of the flag signalling that a given smart object needs to
            get recalculated.

            @return if flag is set or not.

            @note this flag will be unset during the rendering phase, when the
            @c calculate() smart function is called, if one is provided.
            If it's not provided, then the flag will be left unchanged
            after the rendering phase.

            @see evas_object_smart_need_recalculate_set(), for more details

            @ingroup Evas_Smart_Object_Group */
         }
         values {
            Eina_Bool value; /*@ whether one wants to set (@c EINA_TRUE) or to unset
            (@c EINA_FALSE) the flag. */
         }
      }
      clip {
         set {
            /*@ No description supplied by the EAPI. */
            legacy null;
         }
         values {
            Evas_Object *clip;
         }
      }
      color {
         set {
            /*@ No description supplied by the EAPI. */
            legacy null;
         }
         values {
            int r;
            int g;
            int b;
            int a;
         }
      }
      data {
         set {
            /*@
            Store a pointer to user data for a given smart object.

            This data is stored @b independently of the one set by
            evas_object_data_set(), naturally.

            @see evas_object_smart_data_get()

            @ingroup Evas_Smart_Object_Group */
         }
         values {
            void *data; /*@ A pointer to user data */
         }
      }
      members {
         get {
            /*@
            Retrieves the list of the member objects of a given Evas smart
            object

            @return Returns the list of the member objects of @p obj.

            The returned list should be freed with @c eina_list_free() when you
            no longer need it.

            @since 1.7 This function will return @c NULL when a non-smart object is passed.

            @see evas_object_smart_member_add()
            @see evas_object_smart_member_del()
            @see evas_object_smart_iterator_new() */
            return Eina_List * @warn_unused;
         }
      }
      smart {
         get {
            /*@
            Get the #Evas_Smart from which @p obj smart object was created.

            @return the #Evas_Smart handle or @c NULL, on errors

            @ingroup Evas_Smart_Object_Group */
            return Evas_Smart * @warn_unused;
         }
      }
   }
   methods {
      show {
         /*@ No description supplied by the EAPI. */
         legacy null;
      }
      move {
         /*@ No description supplied by the EAPI. */
         legacy null;
         params {
            @in Evas_Coord x;
            @in Evas_Coord y;
         }
      }
      callbacks_descriptions_set {
         /*@
         Set an smart object @b instance's smart callbacks descriptions.

         @return @c EINA_TRUE on success, @c EINA_FALSE on failure.

         These descriptions are hints to be used by introspection and are
         not enforced in any way.

         It will not be checked if instance callbacks descriptions have the
         same name as respective possibly registered in the smart object
         @b class. Both are kept in different arrays and users of
         evas_object_smart_callbacks_descriptions_get() should handle this
         case as they wish.

         @note Becase @p descriptions must be @c NULL terminated, and
         because a @c NULL name makes little sense, too,
         Evas_Smart_Cb_Description.name must @b not be @c NULL.

         @note While instance callbacks descriptions are possible, they are
         @b not recommended. Use @b class callbacks descriptions
         instead as they make you smart object user's life simpler and
         will use less memory, as descriptions and arrays will be
         shared among all instances.

         @ingroup Evas_Smart_Object_Group */

         return Eina_Bool;
         params {
            @in const Evas_Smart_Cb_Description *descriptions; /*@ @c NULL terminated array with
            #Evas_Smart_Cb_Description descriptions. Array elements won't be
            modified at run time, but references to them and their contents
            will be made, so this array should be kept alive during the whole
            object's lifetime. */
         }
      }
      callbacks_descriptions_get {
         /*@
         Retrieve an smart object's know smart callback descriptions (both
         instance and class ones).

         This call searches for registered callback descriptions for both
         instance and class of the given smart object. These arrays will be
         sorted by Evas_Smart_Cb_Description.name and also @c NULL
         terminated, so both @a class_count and @a instance_count can be
         ignored, if the caller wishes so. The terminator @c NULL is not
         counted in these values.

         @note If just class descriptions are of interest, try
         evas_smart_callbacks_descriptions_get() instead.

         @note Use @c NULL pointers on the descriptions/counters you're not
         interested in: they'll be ignored by the function.

         @see evas_smart_callbacks_descriptions_get()

         @ingroup Evas_Smart_Object_Group */

         const;
         params {
            @out const Evas_Smart_Cb_Description **class_descriptions; /*@ Where to store class callbacks
            descriptions array, if any is known. If no descriptions are
            known, @c NULL is returned */
            @out unsigned int class_count; /*@ Returns how many class callbacks descriptions
            are known. */
            @out const Evas_Smart_Cb_Description **instance_descriptions; /*@ Where to store instance callbacks
            descriptions array, if any is known. If no descriptions are
            known, @c NULL is returned. */
            @out unsigned int instance_count; /*@ Returns how many instance callbacks
            descriptions are known. */
         }
      }
      iterator_new {
         /*@
         Retrieves an iterator of the member objects of a given Evas smart
         object

         @return Returns the iterator of the member objects of @p obj.

         @since 1.8

         @see evas_object_smart_member_add()
         @see evas_object_smart_member_del()
         @see evas_object_smart_members_get() */

         const;
         return Eina_Iterator * @warn_unused;
      }
      callback_description_find {
         /*@
         Find callback description for callback called @a name.

         or @c NULL if not found. If parameter is @c NULL, no search
         will be done on instance descriptions.
         @return reference to description if found, @c NULL if not found. */

         const;
         params {
            @in const char *name @nonull; /*@ name of desired callback, must @b not be @c NULL.  The
            search have a special case for @a name being the same
            pointer as registered with Evas_Smart_Cb_Description, one
            can use it to avoid excessive use of strcmp(). */
            @out const Evas_Smart_Cb_Description *class_description; /*@ pointer to return class description or
            @c NULL if not found. If parameter is @c NULL, no search will
            be done on class descriptions. */
            @out const Evas_Smart_Cb_Description *instance_description; /*@ pointer to return instance description */
         }
      }
      hide {
         /*@ No description supplied by the EAPI. */
         legacy null;
      }
      calculate {
         /*@
         Call the @b calculate() smart function immediately on a given smart
         object.

         This will force immediate calculations (see #Evas_Smart_Class)
         needed for renderization of this object and, besides, unset the
         flag on it telling it needs recalculation for the next rendering
         phase.

         @see evas_object_smart_need_recalculate_set()

         @ingroup Evas_Smart_Object_Group */

      }
      add {
         /*@
         Instantiates a new smart object described by @p s.

         @return a new #Evas_Object handle

         This is the function one should use when defining the public
         function @b adding an instance of the new smart object to a given
         canvas. It will take care of setting all of its internals to work
         as they should, if the user set things properly, as seem on the
         #EVAS_SMART_SUBCLASS_NEW, for example.

         @ingroup Evas_Smart_Object_Group */
         legacy null;
      }
      member_add {
         /*@
         Set an Evas object as a member of a given smart object.

         Members will automatically be stacked and layered together with the
         smart object. The various stacking functions will operate on
         members relative to the other members instead of the entire canvas,
         since they now live on an exclusive layer (see
         evas_object_stack_above(), for more details).

         Any @p smart_obj object's specific implementation of the @c
         member_add() smart function will take place too, naturally.

         @see evas_object_smart_member_del()
         @see evas_object_smart_members_get()

         @ingroup Evas_Smart_Object_Group */

         params {
            @in Evas_Object *sub_obj @nonull; /*@ The member object */
         }
         legacy null;
      }
      resize {
         /*@ No description supplied by the EAPI. */
         legacy null;
         params {
            @in Evas_Coord w;
            @in Evas_Coord h;
         }
      }
      clip_unset {
         /*@ No description supplied by the EAPI. */
         legacy null;
      }
      changed {
         /*@
         Mark smart object as changed, dirty.

         This will flag the given object as needing recalculation,
         forcefully. As an effect, on the next rendering cycle its @b
         calculate() (see #Evas_Smart_Class) smart function will be called.

         @see evas_object_smart_need_recalculate_set().
         @see evas_object_smart_calculate().

         @ingroup Evas_Smart_Object_Group */

      }
      member_del {
         /*@
         Removes a member object from a given smart object.

         This removes a member object from a smart object, if it was added
         to any. The object will still be on the canvas, but no longer
         associated with whichever smart object it was associated with.

         @see evas_object_smart_member_add() for more details
         @see evas_object_smart_members_get() */

         params {
            @in Evas_Object *sub_obj; /*@ the member object
            @ingroup Evas_Smart_Object_Group */
         }
         legacy null;
      }
      del {
         /*@ Deletes a smart object. */
         legacy null;
      }
      attach {
         /*@ Attach a given smart data to a given smart object. */
         params {
            @in Evas_Smart *s;
         }
         legacy null;
      }
   }
   implements {
      class.constructor;
      class.destructor;
      Eo.Base.constructor;
      Evas_Object.smart_type_check_ptr;
      Evas_Object.smart_type_check;
      Evas_Object.smart_data.get;
   }
}