diff options
author | Xavi Artigas <xavierartigas@yahoo.es> | 2019-09-10 16:05:44 +0200 |
---|---|---|
committer | Xavi Artigas <xavierartigas@yahoo.es> | 2019-09-10 16:05:44 +0200 |
commit | 96d8b9bc3e5b14e2a8ad004debffa220ff28e36d (patch) | |
tree | 1f8519272ff81671fe5cc3f8b4edaa69258eb793 | |
parent | 08e5b09d0a985d4d556c2a22dbae93ed9e45cfa4 (diff) |
docs: nicer formatting of the NULL keyword, everywhere
26 files changed, 37 insertions, 37 deletions
diff --git a/src/lib/ecore/ecore_event_message.eo b/src/lib/ecore/ecore_event_message.eo index ca39084c17..a674da49bc 100644 --- a/src/lib/ecore/ecore_event_message.eo +++ b/src/lib/ecore/ecore_event_message.eo | |||
@@ -15,7 +15,7 @@ class @beta Ecore.Event.Message extends Efl.Loop_Message | |||
15 | } | 15 | } |
16 | data_steal { | 16 | data_steal { |
17 | [[ Steal the data out and set internal values to -1 | 17 | [[ Steal the data out and set internal values to -1 |
18 | for type and NULL for other vals ]] | 18 | for type and $NULL for other vals ]] |
19 | params { | 19 | params { |
20 | @out type: int; [[ The event type ]] | 20 | @out type: int; [[ The event type ]] |
21 | @out data: void_ptr; [[ The event data ]] | 21 | @out data: void_ptr; [[ The event data ]] |
diff --git a/src/lib/ecore/efl_io_copier.eo b/src/lib/ecore/efl_io_copier.eo index 2e9506d394..e172a0c41d 100644 --- a/src/lib/ecore/efl_io_copier.eo +++ b/src/lib/ecore/efl_io_copier.eo | |||
@@ -147,7 +147,7 @@ class @beta Efl.Io.Copier extends Efl.Loop_Consumer implements Efl.Io.Closer { | |||
147 | If @.source is flagged "eos" and all data is written to the | 147 | If @.source is flagged "eos" and all data is written to the |
148 | destination then the "done" event is emitted. | 148 | destination then the "done" event is emitted. |
149 | 149 | ||
150 | If the destination is not set (ie: NULL) then data is kept | 150 | If the destination is not set (ie: $NULL) then data is kept |
151 | in a internal @Eina.Binbuf, which can be stolen with | 151 | in a internal @Eina.Binbuf, which can be stolen with |
152 | @.binbuf_steal once "data" or "line" events are | 152 | @.binbuf_steal once "data" or "line" events are |
153 | emitted. It exists as a useful shortcut to easily drain | 153 | emitted. It exists as a useful shortcut to easily drain |
diff --git a/src/lib/ecore_audio/ecore_audio.eo b/src/lib/ecore_audio/ecore_audio.eo index 79be83c5dd..45fb7a0e6d 100644 --- a/src/lib/ecore_audio/ecore_audio.eo +++ b/src/lib/ecore_audio/ecore_audio.eo | |||
@@ -89,7 +89,7 @@ abstract @beta Ecore.Audio extends Efl.Object | |||
89 | data: void_ptr; [[User data to pass to the VIO functions]] | 89 | data: void_ptr; [[User data to pass to the VIO functions]] |
90 | free_func: efl_key_data_free_func; [[This function takes care to | 90 | free_func: efl_key_data_free_func; [[This function takes care to |
91 | clean up $data when he VIO is | 91 | clean up $data when he VIO is |
92 | destroyed. NULL means do | 92 | destroyed. $NULL means do |
93 | nothing. | 93 | nothing. |
94 | ]] | 94 | ]] |
95 | } | 95 | } |
diff --git a/src/lib/ecore_con/efl_net_dialer.eo b/src/lib/ecore_con/efl_net_dialer.eo index 47685e1434..8570e6538e 100644 --- a/src/lib/ecore_con/efl_net_dialer.eo +++ b/src/lib/ecore_con/efl_net_dialer.eo | |||
@@ -74,7 +74,7 @@ interface @beta Efl.Net.Dialer extends Efl.Net.Socket { | |||
74 | 'http'. | 74 | 'http'. |
75 | 75 | ||
76 | Whenever appropriate dialers may use system proxy if the | 76 | Whenever appropriate dialers may use system proxy if the |
77 | proxy is NULL (the default). To forcefully disable | 77 | proxy is $NULL (the default). To forcefully disable |
78 | proxy, use an empty string (""). | 78 | proxy, use an empty string (""). |
79 | 79 | ||
80 | - http://username:password\@proxyserver:port | 80 | - http://username:password\@proxyserver:port |
@@ -91,7 +91,7 @@ interface @beta Efl.Net.Dialer extends Efl.Net.Socket { | |||
91 | get { } | 91 | get { } |
92 | set { } | 92 | set { } |
93 | values { | 93 | values { |
94 | proxy_url: string; [[May be empty or NULL to unset]] | 94 | proxy_url: string; [[May be empty or $NULL to unset]] |
95 | } | 95 | } |
96 | } | 96 | } |
97 | 97 | ||
diff --git a/src/lib/ecore_con/efl_net_dialer_http.eo b/src/lib/ecore_con/efl_net_dialer_http.eo index ceca602c26..59701a3a13 100644 --- a/src/lib/ecore_con/efl_net_dialer_http.eo +++ b/src/lib/ecore_con/efl_net_dialer_http.eo | |||
@@ -31,7 +31,7 @@ class @beta Efl.Net.Dialer_Http extends Efl.Loop_Consumer implements Efl.Net.Dia | |||
31 | To enable debugging use EINA_LOG_LEVELS=ecore_con:4 environment | 31 | To enable debugging use EINA_LOG_LEVELS=ecore_con:4 environment |
32 | variable. | 32 | variable. |
33 | 33 | ||
34 | If the proxy is NULL (default), then the system proxy will be | 34 | If the proxy is $NULL (default), then the system proxy will be |
35 | used. On UNIX that's the environment variable $http_proxy (or | 35 | used. On UNIX that's the environment variable $http_proxy (or |
36 | '$all_proxy') is used if the given address doesn't match | 36 | '$all_proxy') is used if the given address doesn't match |
37 | $no_proxy patterns. To disable proxy use an empty string. If | 37 | $no_proxy patterns. To disable proxy use an empty string. If |
@@ -259,7 +259,7 @@ class @beta Efl.Net.Dialer_Http extends Efl.Loop_Consumer implements Efl.Net.Dia | |||
259 | Since multiple requests can occur if @.allow_redirects | 259 | Since multiple requests can occur if @.allow_redirects |
260 | is true, then all headers will be accumulated. To know | 260 | is true, then all headers will be accumulated. To know |
261 | when a new request's been started, check for headers with keys | 261 | when a new request's been started, check for headers with keys |
262 | being NULL. The value will be the "HTTP/VERSION RESPONSE" | 262 | being $NULL. The value will be the "HTTP/VERSION RESPONSE" |
263 | string received from the host, such as: | 263 | string received from the host, such as: |
264 | 264 | ||
265 | - key=NULL, value="HTTP/1.1 302 Found" | 265 | - key=NULL, value="HTTP/1.1 302 Found" |
@@ -381,7 +381,7 @@ class @beta Efl.Net.Dialer_Http extends Efl.Loop_Consumer implements Efl.Net.Dia | |||
381 | params { | 381 | params { |
382 | epochtime: int64; [[UNIX Epoch time - seconds since 1/1/1970]] | 382 | epochtime: int64; [[UNIX Epoch time - seconds since 1/1/1970]] |
383 | } | 383 | } |
384 | return: mstring @move @no_unused; [[Newly allocated null-terminated string on success or NULL on errors]] | 384 | return: mstring @move @no_unused; [[Newly allocated null-terminated string on success or $NULL on errors]] |
385 | } | 385 | } |
386 | } | 386 | } |
387 | 387 | ||
diff --git a/src/lib/ecore_con/efl_net_dialer_ssl.eo b/src/lib/ecore_con/efl_net_dialer_ssl.eo index 6172bd24d9..9bb7417231 100644 --- a/src/lib/ecore_con/efl_net_dialer_ssl.eo +++ b/src/lib/ecore_con/efl_net_dialer_ssl.eo | |||
@@ -4,12 +4,12 @@ class @beta Efl.Net.Dialer_Ssl extends Efl.Net.Socket_Ssl implements Efl.Net.Dia | |||
4 | This creates an internal @Efl.Net.Dialer_Tcp and once connected | 4 | This creates an internal @Efl.Net.Dialer_Tcp and once connected |
5 | it will start the SSL handshake. | 5 | it will start the SSL handshake. |
6 | 6 | ||
7 | If the proxy is NULL (default), then the system proxy will be | 7 | If the proxy is $NULL (default), then the system proxy will be |
8 | used. On UNIX that's the environment variable $socks_proxy (or | 8 | used. On UNIX that's the environment variable $socks_proxy (or |
9 | '$proxy' or '$all_proxy') is used if the given address doesn't | 9 | '$proxy' or '$all_proxy') is used if the given address doesn't |
10 | match $no_proxy patterns. To disable proxy use an empty string. | 10 | match $no_proxy patterns. To disable proxy use an empty string. |
11 | 11 | ||
12 | If the proxy is NULL (default), then the system proxy will be | 12 | If the proxy is $NULL (default), then the system proxy will be |
13 | used. On UNIX that's the environment variable $socks_proxy (or | 13 | used. On UNIX that's the environment variable $socks_proxy (or |
14 | '$all_proxy') is used if the given address doesn't match | 14 | '$all_proxy') is used if the given address doesn't match |
15 | $no_proxy patterns. To disable proxy use an empty string. If | 15 | $no_proxy patterns. To disable proxy use an empty string. If |
diff --git a/src/lib/ecore_con/efl_net_dialer_tcp.eo b/src/lib/ecore_con/efl_net_dialer_tcp.eo index 4b01aeec9d..424ef0bafd 100644 --- a/src/lib/ecore_con/efl_net_dialer_tcp.eo +++ b/src/lib/ecore_con/efl_net_dialer_tcp.eo | |||
@@ -1,12 +1,12 @@ | |||
1 | class @beta Efl.Net.Dialer_Tcp extends Efl.Net.Socket_Tcp implements Efl.Net.Dialer { | 1 | class @beta Efl.Net.Dialer_Tcp extends Efl.Net.Socket_Tcp implements Efl.Net.Dialer { |
2 | [[Connects to a remote TCP server. | 2 | [[Connects to a remote TCP server. |
3 | 3 | ||
4 | If the proxy is NULL (default), then the system proxy will be | 4 | If the proxy is $NULL (default), then the system proxy will be |
5 | used. On UNIX that's the environment variable $socks_proxy (or | 5 | used. On UNIX that's the environment variable $socks_proxy (or |
6 | '$proxy' or '$all_proxy') is used if the given address doesn't | 6 | '$proxy' or '$all_proxy') is used if the given address doesn't |
7 | match $no_proxy patterns. To disable proxy use an empty string. | 7 | match $no_proxy patterns. To disable proxy use an empty string. |
8 | 8 | ||
9 | If the proxy is NULL (default), then the system proxy will be | 9 | If the proxy is $NULL (default), then the system proxy will be |
10 | used. On UNIX that's the environment variable $socks_proxy (or | 10 | used. On UNIX that's the environment variable $socks_proxy (or |
11 | '$all_proxy') is used if the given address doesn't match | 11 | '$all_proxy') is used if the given address doesn't match |
12 | $no_proxy patterns. To disable proxy use an empty string. If | 12 | $no_proxy patterns. To disable proxy use an empty string. If |
diff --git a/src/lib/ecore_con/efl_net_dialer_websocket.eo b/src/lib/ecore_con/efl_net_dialer_websocket.eo index 5224030101..4bd96a5b7f 100644 --- a/src/lib/ecore_con/efl_net_dialer_websocket.eo +++ b/src/lib/ecore_con/efl_net_dialer_websocket.eo | |||
@@ -52,7 +52,7 @@ class @beta Efl.Net.Dialer_Websocket extends Efl.Loop_Consumer implements Efl.Ne | |||
52 | not a subclass and thus not all HTTP features are exposed as the | 52 | not a subclass and thus not all HTTP features are exposed as the |
53 | WebSocket has strict requirements that must be respected. | 53 | WebSocket has strict requirements that must be respected. |
54 | 54 | ||
55 | If the proxy is NULL (default), then the system proxy will be | 55 | If the proxy is $NULL (default), then the system proxy will be |
56 | used. On UNIX that's the environment variable $http_proxy (or | 56 | used. On UNIX that's the environment variable $http_proxy (or |
57 | '$all_proxy') is used if the given address doesn't match | 57 | '$all_proxy') is used if the given address doesn't match |
58 | $no_proxy patterns. To disable the proxy use an empty string. If | 58 | $no_proxy patterns. To disable the proxy use an empty string. If |
diff --git a/src/lib/ecore_con/efl_net_ip_address.eo b/src/lib/ecore_con/efl_net_ip_address.eo index d1be8b7d5c..69b2e5414a 100644 --- a/src/lib/ecore_con/efl_net_ip_address.eo +++ b/src/lib/ecore_con/efl_net_ip_address.eo | |||
@@ -85,7 +85,7 @@ class @beta Efl.Net.Ip_Address extends Efl.Object { | |||
85 | params { | 85 | params { |
86 | numeric_address: string; [[The numeric address to parse, such as '127.0.0.1:1234' or '[::1]:1234']] | 86 | numeric_address: string; [[The numeric address to parse, such as '127.0.0.1:1234' or '[::1]:1234']] |
87 | } | 87 | } |
88 | return: Efl.Net.Ip_Address @move; [[The new IP address object or NULL if it failed to parse]] | 88 | return: Efl.Net.Ip_Address @move; [[The new IP address object or $NULL if it failed to parse]] |
89 | } | 89 | } |
90 | 90 | ||
91 | resolve @static { | 91 | resolve @static { |
diff --git a/src/lib/ecore_con/efl_net_session.eo b/src/lib/ecore_con/efl_net_session.eo index d9f55e5c0f..745dc68e52 100644 --- a/src/lib/ecore_con/efl_net_session.eo +++ b/src/lib/ecore_con/efl_net_session.eo | |||
@@ -34,10 +34,10 @@ class @beta Efl.Net.Session extends Efl.Loop_Consumer { | |||
34 | Some platforms may not implement the backend for this class. In | 34 | Some platforms may not implement the backend for this class. In |
35 | this cases the system will report always @.state "online" | 35 | this cases the system will report always @.state "online" |
36 | (@Efl.Net.Session_State.online) and other properties will be | 36 | (@Efl.Net.Session_State.online) and other properties will be |
37 | NULL, such as @.network_name, @.interface, @.ipv4 and @.ipv6; as well as | 37 | $NULL, such as @.network_name, @.interface, @.ipv4 and @.ipv6; as well as |
38 | @.technology is set to @Efl.Net.Session_Technology.unknown. As such | 38 | @.technology is set to @Efl.Net.Session_Technology.unknown. As such |
39 | if you need to detect for an actual backend, check if the | 39 | if you need to detect for an actual backend, check if the |
40 | state is online but those properties are NULL or technology is | 40 | state is online but those properties are $NULL or technology is |
41 | unknown. | 41 | unknown. |
42 | 42 | ||
43 | Note: the @.connect method is subject to backend policy. For | 43 | Note: the @.connect method is subject to backend policy. For |
@@ -92,7 +92,7 @@ class @beta Efl.Net.Session extends Efl.Loop_Consumer { | |||
92 | Note: if there is no backend for this class, then state | 92 | Note: if there is no backend for this class, then state |
93 | will be always online, however @.technology will be | 93 | will be always online, however @.technology will be |
94 | unknown, @.interface, @.network_name, @.ipv4 and @.ipv6 will be | 94 | unknown, @.interface, @.network_name, @.ipv4 and @.ipv6 will be |
95 | NULL. | 95 | $NULL. |
96 | ]] | 96 | ]] |
97 | get { } | 97 | get { } |
98 | values { | 98 | values { |
diff --git a/src/lib/ecore_con/efl_net_socket_ssl.eo b/src/lib/ecore_con/efl_net_socket_ssl.eo index 31fcb309f5..7bf9b4cba7 100644 --- a/src/lib/ecore_con/efl_net_socket_ssl.eo +++ b/src/lib/ecore_con/efl_net_socket_ssl.eo | |||
@@ -37,8 +37,8 @@ class @beta Efl.Net.Socket_Ssl extends Efl.Loop_Consumer implements Efl.Net.Sock | |||
37 | return: bool(false); [[$true if adopted, $false otherwise]] | 37 | return: bool(false); [[$true if adopted, $false otherwise]] |
38 | } | 38 | } |
39 | values { | 39 | values { |
40 | efl_net_socket: Efl.Net.Socket; [[The adopted object, if any, otherwise NULL]] | 40 | efl_net_socket: Efl.Net.Socket; [[The adopted object, if any, otherwise $NULL]] |
41 | ctx: Efl.Net.Ssl.Context; [[The SSL context used when adopting the socket, if any, otherwise NULL]] | 41 | ctx: Efl.Net.Ssl.Context; [[The SSL context used when adopting the socket, if any, otherwise $NULL]] |
42 | } | 42 | } |
43 | } | 43 | } |
44 | 44 | ||
@@ -68,7 +68,7 @@ class @beta Efl.Net.Socket_Ssl extends Efl.Loop_Consumer implements Efl.Net.Sock | |||
68 | address but the server certificate only specifies DNS | 68 | address but the server certificate only specifies DNS |
69 | (names). | 69 | (names). |
70 | 70 | ||
71 | If NULL, then it will fetch from socket using | 71 | If $NULL, then it will fetch from socket using |
72 | @Efl.Net.Socket.address_remote or | 72 | @Efl.Net.Socket.address_remote or |
73 | @Efl.Net.Dialer.address_dial. | 73 | @Efl.Net.Dialer.address_dial. |
74 | 74 | ||
diff --git a/src/lib/ecore_con/efl_net_ssl_context.eo b/src/lib/ecore_con/efl_net_ssl_context.eo index cddbafdcdd..fe543d28ee 100644 --- a/src/lib/ecore_con/efl_net_ssl_context.eo +++ b/src/lib/ecore_con/efl_net_ssl_context.eo | |||
@@ -115,7 +115,7 @@ class @beta Efl.Net.Ssl.Context extends Efl.Object { | |||
115 | This is useful to avoid replicating a hostname in all | 115 | This is useful to avoid replicating a hostname in all |
116 | socket wrapper with hostname_override. | 116 | socket wrapper with hostname_override. |
117 | 117 | ||
118 | If NULL, then sockets wrappers will will fetch from | 118 | If $NULL, then sockets wrappers will will fetch from |
119 | adopted socket using address_remote or | 119 | adopted socket using address_remote or |
120 | address_dial. | 120 | address_dial. |
121 | 121 | ||
diff --git a/src/lib/efl/interfaces/efl_gfx_color_class.eo b/src/lib/efl/interfaces/efl_gfx_color_class.eo index 25d822bdc8..ec6f5d71d4 100644 --- a/src/lib/efl/interfaces/efl_gfx_color_class.eo +++ b/src/lib/efl/interfaces/efl_gfx_color_class.eo | |||
@@ -75,7 +75,7 @@ mixin @beta Efl.Gfx.Color_Class | |||
75 | the third is the text shadow. (Note that the second two only apply | 75 | the third is the text shadow. (Note that the second two only apply |
76 | to text parts). | 76 | to text parts). |
77 | 77 | ||
78 | Returns NULL if the color class cannot be fetched. | 78 | Returns $NULL if the color class cannot be fetched. |
79 | 79 | ||
80 | Note: These color values are expected to be premultiplied by $a.]] | 80 | Note: These color values are expected to be premultiplied by $a.]] |
81 | } | 81 | } |
diff --git a/src/lib/efl/interfaces/efl_io_buffer.eo b/src/lib/efl/interfaces/efl_io_buffer.eo index eefdf8e507..518a799a3a 100644 --- a/src/lib/efl/interfaces/efl_io_buffer.eo +++ b/src/lib/efl/interfaces/efl_io_buffer.eo | |||
@@ -131,7 +131,7 @@ class @beta Efl.Io.Buffer extends Efl.Object | |||
131 | The returned memory must be freed with eina_binbuf_free(). | 131 | The returned memory must be freed with eina_binbuf_free(). |
132 | 132 | ||
133 | On failure, for example a read-only backing store was | 133 | On failure, for example a read-only backing store was |
134 | adopted with @.adopt_readonly, NULL is returned. | 134 | adopted with @.adopt_readonly, $NULL is returned. |
135 | ]] | 135 | ]] |
136 | return: ptr(Eina.Binbuf) @move @no_unused; [[Binbuf]] | 136 | return: ptr(Eina.Binbuf) @move @no_unused; [[Binbuf]] |
137 | } | 137 | } |
diff --git a/src/lib/elementary/efl_access_object.eo b/src/lib/elementary/efl_access_object.eo index d08434a16a..3219332952 100644 --- a/src/lib/elementary/efl_access_object.eo +++ b/src/lib/elementary/efl_access_object.eo | |||
@@ -435,7 +435,7 @@ mixin @beta Efl.Access.Object requires Efl.Object | |||
435 | relationship_remove @beta { | 435 | relationship_remove @beta { |
436 | [[Removes the relationship between two accessible objects. | 436 | [[Removes the relationship between two accessible objects. |
437 | 437 | ||
438 | If relation_object is NULL function removes all relations | 438 | If relation_object is $NULL function removes all relations |
439 | of the given type. | 439 | of the given type. |
440 | ]] | 440 | ]] |
441 | params { | 441 | params { |
diff --git a/src/lib/elementary/efl_ui_item.eo b/src/lib/elementary/efl_ui_item.eo index d84b919a37..148a112be3 100644 --- a/src/lib/elementary/efl_ui_item.eo +++ b/src/lib/elementary/efl_ui_item.eo | |||
@@ -46,9 +46,9 @@ abstract @beta Efl.Ui.Item extends Efl.Ui.Layout_Base implements Efl.Ui.Selectab | |||
46 | @property item_parent { | 46 | @property item_parent { |
47 | [[The parent of the item. | 47 | [[The parent of the item. |
48 | 48 | ||
49 | This property expresses a tree structure of items. If the parent is NULL the item is added to | 49 | This property expresses a tree structure of items. If the parent is $NULL the item is added to |
50 | the root level of the content. The item parent can only be set once. | 50 | the root level of the content. The item parent can only be set once. |
51 | When the object is invalidated, the item parent is set to NULL and still cannot be reset. | 51 | When the object is invalidated, the item parent is set to $NULL and still cannot be reset. |
52 | ]] | 52 | ]] |
53 | values { | 53 | values { |
54 | parent : Efl.Ui.Item; | 54 | parent : Efl.Ui.Item; |
diff --git a/src/lib/elementary/efl_ui_popup.eo b/src/lib/elementary/efl_ui_popup.eo index b3f22b7857..619f7d7549 100644 --- a/src/lib/elementary/efl_ui_popup.eo +++ b/src/lib/elementary/efl_ui_popup.eo | |||
@@ -82,10 +82,10 @@ class @beta Efl.Ui.Popup extends Efl.Ui.Layout_Base implements Efl.Content, Efl. | |||
82 | - the Popup is resized | 82 | - the Popup is resized |
83 | - the parent window is resized | 83 | - the parent window is resized |
84 | 84 | ||
85 | If @.anchor.get returns NULL, the anchor is the parent window of the Popup. | 85 | If @.anchor.get returns $NULL, the anchor is the parent window of the Popup. |
86 | If the anchor object is set to $NULL, the Popup will no longer recalculate its alignment or change | 86 | If the anchor object is set to $NULL, the Popup will no longer recalculate its alignment or change |
87 | its position under any circumstance. | 87 | its position under any circumstance. |
88 | If the Popup is moved by using @Efl.Gfx.Entity.position.set, $anchor is set NULL. | 88 | If the Popup is moved by using @Efl.Gfx.Entity.position.set, $anchor is set $NULL. |
89 | ]] | 89 | ]] |
90 | set { | 90 | set { |
91 | } | 91 | } |
diff --git a/src/lib/elementary/efl_ui_position_manager_data_access_v1.eo b/src/lib/elementary/efl_ui_position_manager_data_access_v1.eo index 4f6e678411..ab55c09c38 100644 --- a/src/lib/elementary/efl_ui_position_manager_data_access_v1.eo +++ b/src/lib/elementary/efl_ui_position_manager_data_access_v1.eo | |||
@@ -118,7 +118,7 @@ interface @beta Efl.Ui.Position_Manager.Data_Access_V1 { | |||
118 | values { | 118 | values { |
119 | obj_access : Efl.Ui.Position_Manager.Object_Batch_Callback; [[Function callback for canvas objects, even if | 119 | obj_access : Efl.Ui.Position_Manager.Object_Batch_Callback; [[Function callback for canvas objects, even if |
120 | the start_id is valid, the returned objects | 120 | the start_id is valid, the returned objects |
121 | may be NULL.]] | 121 | may be $NULL.]] |
122 | size_access : Efl.Ui.Position_Manager.Size_Batch_Callback; [[Function callback for the size, returned values | 122 | size_access : Efl.Ui.Position_Manager.Size_Batch_Callback; [[Function callback for the size, returned values |
123 | are always valid, but might be changed later on. | 123 | are always valid, but might be changed later on. |
124 | ]] | 124 | ]] |
diff --git a/src/lib/elementary/efl_ui_scroll_manager.eo b/src/lib/elementary/efl_ui_scroll_manager.eo index 3733e81369..c08734c393 100644 --- a/src/lib/elementary/efl_ui_scroll_manager.eo +++ b/src/lib/elementary/efl_ui_scroll_manager.eo | |||
@@ -12,7 +12,7 @@ class @beta Efl.Ui.Scroll.Manager extends Efl.Object implements | |||
12 | 12 | ||
13 | This property is protected as it is meant for scrollable object | 13 | This property is protected as it is meant for scrollable object |
14 | implementations only, to set and access the internal pan object. | 14 | implementations only, to set and access the internal pan object. |
15 | If pan is set to NULL, scrolling does not work. | 15 | If pan is set to $NULL, scrolling does not work. |
16 | ]] | 16 | ]] |
17 | set { | 17 | set { |
18 | } | 18 | } |
diff --git a/src/lib/elementary/efl_ui_spotlight_container.eo b/src/lib/elementary/efl_ui_spotlight_container.eo index bb39fd2fc6..fcd0bc30a3 100644 --- a/src/lib/elementary/efl_ui_spotlight_container.eo +++ b/src/lib/elementary/efl_ui_spotlight_container.eo | |||
@@ -91,7 +91,7 @@ class @beta Efl.Ui.Spotlight.Container extends Efl.Ui.Layout_Base implements Efl | |||
91 | ]] | 91 | ]] |
92 | params { | 92 | params { |
93 | deletion_on_transition_end : bool; [[If $true, then the object will be deleted before resolving the future, | 93 | deletion_on_transition_end : bool; [[If $true, then the object will be deleted before resolving the future, |
94 | and a NULL pointer is the value of the future. | 94 | and a $NULL pointer is the value of the future. |
95 | $false if no operation should be applied to it.]] | 95 | $false if no operation should be applied to it.]] |
96 | } | 96 | } |
97 | return : future<Efl.Gfx.Entity>; [[This Future gets resolved when any transition animation finishes and the | 97 | return : future<Efl.Gfx.Entity>; [[This Future gets resolved when any transition animation finishes and the |
diff --git a/src/lib/elementary/efl_ui_tags.eo b/src/lib/elementary/efl_ui_tags.eo index 96f1fb0eb8..29728900eb 100644 --- a/src/lib/elementary/efl_ui_tags.eo +++ b/src/lib/elementary/efl_ui_tags.eo | |||
@@ -40,7 +40,7 @@ class @beta Efl.Ui.Tags extends Efl.Ui.Layout_Base | |||
40 | get { | 40 | get { |
41 | } | 41 | } |
42 | values { | 42 | values { |
43 | items: const(array<string>); [[The array of items, or NULL if none.]] | 43 | items: const(array<string>); [[The array of items, or $NULL if none.]] |
44 | } | 44 | } |
45 | } | 45 | } |
46 | } | 46 | } |
diff --git a/src/lib/elementary/efl_ui_text.eo b/src/lib/elementary/efl_ui_text.eo index 691c0271bd..50845d125f 100644 --- a/src/lib/elementary/efl_ui_text.eo +++ b/src/lib/elementary/efl_ui_text.eo | |||
@@ -359,7 +359,7 @@ class @beta Efl.Ui.Text extends Efl.Ui.Layout_Base implements Efl.Input.Clickabl | |||
359 | } | 359 | } |
360 | events { | 360 | events { |
361 | changed: void; [[Called when entry changes]] | 361 | changed: void; [[Called when entry changes]] |
362 | /* can be NULL, tag nullable once Eolian supports it */ | 362 | /* can be $NULL, tag nullable once Eolian supports it */ |
363 | changed,user: Efl.Ui.Text_Change_Info; | 363 | changed,user: Efl.Ui.Text_Change_Info; |
364 | [[The text object has changed due to user interaction]] | 364 | [[The text object has changed due to user interaction]] |
365 | validate: Elm.Validate_Content; [[Called when validating]] | 365 | validate: Elm.Validate_Content; [[Called when validating]] |
diff --git a/src/lib/elementary/elm_code_widget.eo b/src/lib/elementary/elm_code_widget.eo index bb24d1b9fb..3e1de99f8a 100644 --- a/src/lib/elementary/elm_code_widget.eo +++ b/src/lib/elementary/elm_code_widget.eo | |||
@@ -36,7 +36,7 @@ class @beta Elm.Code_Widget extends Efl.Ui.Layout | |||
36 | @property font { | 36 | @property font { |
37 | set { | 37 | set { |
38 | [[Set the font that this widget uses, the font should be a monospaced scalable font. | 38 | [[Set the font that this widget uses, the font should be a monospaced scalable font. |
39 | Passing NULL will load the default system monospaced font.]] | 39 | Passing $NULL will load the default system monospaced font.]] |
40 | } | 40 | } |
41 | get { | 41 | get { |
42 | [[Get the font currently in use. | 42 | [[Get the font currently in use. |
diff --git a/src/lib/eo/efl_object.eo b/src/lib/eo/efl_object.eo index 765bb6d6bd..fe8f6f12c2 100644 --- a/src/lib/eo/efl_object.eo +++ b/src/lib/eo/efl_object.eo | |||
@@ -205,7 +205,7 @@ abstract Efl.Object | |||
205 | 205 | ||
206 | The object from the provider will then be returned. | 206 | The object from the provider will then be returned. |
207 | The base implementation calls the provider_find function on the object parent, | 207 | The base implementation calls the provider_find function on the object parent, |
208 | and returns its result. If no parent is present NULL is returned. | 208 | and returns its result. If no parent is present $NULL is returned. |
209 | Each implementation has to support this function by overriding | 209 | Each implementation has to support this function by overriding |
210 | it and returning itself if the interface matches the parameter. | 210 | it and returning itself if the interface matches the parameter. |
211 | If this is not done the class cannot be found up in the object tree. | 211 | If this is not done the class cannot be found up in the object tree. |
diff --git a/src/lib/evas/canvas/efl_canvas_animation_rotate.eo b/src/lib/evas/canvas/efl_canvas_animation_rotate.eo index 631d9f2067..169ddd3926 100644 --- a/src/lib/evas/canvas/efl_canvas_animation_rotate.eo +++ b/src/lib/evas/canvas/efl_canvas_animation_rotate.eo | |||
@@ -14,7 +14,7 @@ class @beta Efl.Canvas.Animation_Rotate extends Efl.Canvas.Animation | |||
14 | from_degree: double; [[Rotation degree when animation starts]] | 14 | from_degree: double; [[Rotation degree when animation starts]] |
15 | to_degree: double; [[Rotation degree when animation ends]] | 15 | to_degree: double; [[Rotation degree when animation ends]] |
16 | pivot: Efl.Canvas.Object; [[Pivot object for the center point. | 16 | pivot: Efl.Canvas.Object; [[Pivot object for the center point. |
17 | If the pivot object is NULL, then the object is rotated on itself.]] | 17 | If the pivot object is $NULL, then the object is rotated on itself.]] |
18 | cx: double; [[X relative coordinate of the center point. | 18 | cx: double; [[X relative coordinate of the center point. |
19 | The left end is 0.0 and the right end is 1.0 (the center is 0.5).]] | 19 | The left end is 0.0 and the right end is 1.0 (the center is 0.5).]] |
20 | cy: double; [[Y relative coordinate of the center point. | 20 | cy: double; [[Y relative coordinate of the center point. |
diff --git a/src/lib/evas/canvas/efl_canvas_animation_scale.eo b/src/lib/evas/canvas/efl_canvas_animation_scale.eo index 20a979dd11..4d7df5e010 100644 --- a/src/lib/evas/canvas/efl_canvas_animation_scale.eo +++ b/src/lib/evas/canvas/efl_canvas_animation_scale.eo | |||
@@ -15,7 +15,7 @@ class @beta Efl.Canvas.Animation_Scale extends Efl.Canvas.Animation | |||
15 | from_scale_y: double; [[Scale factor along y axis when animation starts]] | 15 | from_scale_y: double; [[Scale factor along y axis when animation starts]] |
16 | to_scale_x: double; [[Scale factor along x axis when animation ends]] | 16 | to_scale_x: double; [[Scale factor along x axis when animation ends]] |
17 | to_scale_y: double; [[Scale factor along y axis when animation ends]] | 17 | to_scale_y: double; [[Scale factor along y axis when animation ends]] |
18 | pivot: Efl.Canvas.Object; [[Pivot object for the center point. If the pivot object is NULL, then the object | 18 | pivot: Efl.Canvas.Object; [[Pivot object for the center point. If the pivot object is $NULL, then the object |
19 | is scaled on itself.]] | 19 | is scaled on itself.]] |
20 | cx: double; [[X relative coordinate of the center point. The left end is 0.0 and the right end is 1.0 | 20 | cx: double; [[X relative coordinate of the center point. The left end is 0.0 and the right end is 1.0 |
21 | (the center is 0.5).]] | 21 | (the center is 0.5).]] |