summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Eolian: Turn on strict type checking.devs/tasn/strict_eolianTom Hacohen2016-04-191-11/+4
| | | | | | | Thanks to q66 for the code. I'm stealing credit here because: 1. I'm lazy. 2. He's lazy and doesn't deserve it.
* Elm glview: Fix eo type errors.Tom Hacohen2016-04-191-0/+4
|
* Elm box: Fix eo type errors.Tom Hacohen2016-04-191-0/+4
|
* Elm web: Fix eo type errors.Tom Hacohen2016-04-191-0/+7
|
* Elm app server view: Fix eo type errors.Tom Hacohen2016-04-191-0/+2
|
* Elm slideshow: Fix eo type errors.Tom Hacohen2016-04-191-0/+2
|
* Elm app client view: Fix eo type errors.Tom Hacohen2016-04-191-1/+5
|
* Elm app server: Fix eo type errors.Tom Hacohen2016-04-191-0/+1
|
* Elm gengrid: Fix eo type errors.Tom Hacohen2016-04-191-0/+1
|
* Elm map: Fix eo type errors.Tom Hacohen2016-04-191-0/+7
|
* Elm calendar: Fix eo type errors.Tom Hacohen2016-04-191-0/+2
|
* Elm eo: Make Eina_Compare_Cb accessible to all widgets.Tom Hacohen2016-04-192-1/+1
|
* Elm sys notify interface: Fix eo type errors.Tom Hacohen2016-04-191-0/+2
|
* Elm prefs: Fix eo type errors.Tom Hacohen2016-04-191-2/+7
|
* Elm app client: Fix eo type errors.Tom Hacohen2016-04-191-1/+6
|
* Eo eina types: Add Eina.Value.Tom Hacohen2016-04-191-0/+2
|
* Elm multibutton entry: Fix eo type errors.Tom Hacohen2016-04-191-0/+3
|
* Elm app server: Fix eo type errors.Tom Hacohen2016-04-191-3/+7
|
* Elm genlist: Fix eo type errors.Tom Hacohen2016-04-191-0/+1
|
* Elm view list: Fix eo type errors.Tom Hacohen2016-04-191-0/+2
|
* Elm naviframe item: Fix eo type errors.Tom Hacohen2016-04-191-0/+2
|
* Elm interface fileselector: Fix eo type errors.Tom Hacohen2016-04-191-0/+4
|
* Elm slider: Fix eo type errors.Tom Hacohen2016-04-191-1/+4
|
* Elm toolbar item: Fix eo type errors.Tom Hacohen2016-04-191-1/+1
|
* Elm systray: Fix eo type errors.Tom Hacohen2016-04-191-1/+1
|
* Elm toolbar: Fix eo type errors.Tom Hacohen2016-04-191-0/+1
|
* Elm list: Fix eo type errors.Tom Hacohen2016-04-191-0/+1
|
* Elm layout: Fix eo type errors.Tom Hacohen2016-04-191-2/+4
|
* Elm atspi text: Fix eo type errors.Tom Hacohen2016-04-192-7/+11
|
* Elm atspi widget action: Fix eo type errors.Tom Hacohen2016-04-191-0/+2
|
* Elm hoversel item: Fix eo type errors.Tom Hacohen2016-04-191-0/+2
|
* Elm win: Fix eo type errors.Tom Hacohen2016-04-191-0/+8
|
* Elm check: Fix eo type errors.Tom Hacohen2016-04-191-1/+1
|
* Elm image: Fix eo type errors.Tom Hacohen2016-04-191-1/+1
|
* Elm entry: Fix eo type errors.Tom Hacohen2016-04-191-0/+4
|
* Elm atspi accessible: Fix eo type errors.Tom Hacohen2016-04-191-0/+3
|
* Elm widget: Fix eo type errors.Tom Hacohen2016-04-192-0/+6
|
* Elm gesturelayer: Fix eo type errors.Tom Hacohen2016-04-191-0/+2
|
* Elm photocam: Fix eo type errors.Tom Hacohen2016-04-191-1/+3
|
* Elm general: Ignore more types (callbacks) in eolian.Tom Hacohen2016-04-191-0/+3
|
* Elm interface scrollable: Fix eo type errors.Tom Hacohen2016-04-194-38/+48
|
* Elm widget item: Fix eo type errors.Tom Hacohen2016-04-191-0/+2
|
* Elm gen item: Add missing eolian type definitions.Tom Hacohen2016-04-191-0/+9
|
* Elm eo files: Add missing include of efl_types.Tom Hacohen2016-04-192-0/+4
|
* Eo base: fix parameters to be the correct type.Tom Hacohen2016-04-191-2/+2
| | | | Eo is not a type Eolian is aware of, the correct type is Eo.Base.
* genlist: call update_job after smart_calculation doneSangHyeon Lee2016-04-191-0/+8
| | | | | | | | | | Summary : if item_update happens before the smart calcuate finished, item can be delayed updated(next frame). to prevent this issue, if unsolved job is remaining after smart calc done, call update_job directly and remove job. @fix
* eo base - add value keys in addition to object and void ptr data keysCarsten Haitzler (Rasterman)2016-04-193-4/+142
| | | | | | | | eina value would allow any value to be attached to an eo object and also be freed nicely too. this would allow any generic data to go there without overloading a void * that us c coders love to abuse. @feature
* eo base - clean up base data struct formattingCarsten Haitzler (Rasterman)2016-04-191-15/+15
| | | | just a cleanup of the struct formatting/spacing
* eo - add object comments - esp useful for erigo and gui buildersCarsten Haitzler (Rasterman)2016-04-193-5/+134
| | | | | | | | also useful for debugging and more. this also makes both name/id and comment an extension blob of ram so objects dont keep growing boundlessly in memory usage/size @feature
* eo - add object names/ids esp useful for erigo as it wants object namesCarsten Haitzler (Rasterman)2016-04-193-0/+66
| | | | | | | | also evas objects have names too, so add this as this was discussed and now the feature is in. there is nothing to find objects by name yet. that's more api's and features to add after this. @feature