summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Eolian: Integration of Naviframedevs/jackdanielz/eolian_waiting_bugsDaniel Zaoui2014-03-315-455/+422
|
* Eolian: Integration of Multi Button EntryDaniel Zaoui2014-03-315-464/+405
|
* Eolian: Integration of Flip SelectorDaniel Zaoui2014-03-315-273/+301
|
* Eolian: Integration of File SelectorDaniel Zaoui2014-03-315-320/+206
|
* Eolian: Integration of File Selector EntryDaniel Zaoui2014-03-315-326/+239
|
* Eolian: Integration of File Selector ButtonDaniel Zaoui2014-03-315-217/+182
|
* Eolian: Integration of File Selector InterfaceDaniel Zaoui2014-03-317-128/+296
|
* Eolian: Integration of WinDaniel Zaoui2014-03-315-1853/+1758
|
* Eolian: Integration of Widget Access ObjectDaniel Zaoui2014-03-315-80/+56
|
* Eolian: Integration of WebDaniel Zaoui2014-03-316-1163/+905
|
* Eolian: Integration of VideoDaniel Zaoui2014-03-315-343/+302
|
* Eolian: Integration of ToolbarDaniel Zaoui2014-03-315-688/+695
|
* Eolian: Integration of ThumbDaniel Zaoui2014-03-315-444/+438
|
* Eolian: Integration of TableDaniel Zaoui2014-03-314-235/+226
|
* Eolian: Integration of SystrayDaniel Zaoui2014-03-314-158/+157
|
* Eolian: Integration of SpinnerDaniel Zaoui2014-03-315-405/+490
|
* Eolian: Integration of SlideshowDaniel Zaoui2014-03-315-446/+541
|
* Eolian: Integration of SliderDaniel Zaoui2014-03-315-466/+516
|
* Eolian: Integration of SeparatorDaniel Zaoui2014-03-315-93/+76
|
* Eolian: Integration of Segment ControlDaniel Zaoui2014-03-315-262/+300
|
* Eolian: Integration of ScrollerDaniel Zaoui2014-03-315-294/+219
|
* Eolian: Integration of RouteDaniel Zaoui2014-03-316-119/+89
|
* Eolian: Integration of RadioDaniel Zaoui2014-03-316-249/+217
|
* Eolian: Integration of ProgressbarDaniel Zaoui2014-03-315-349/+394
|
* Eolian: Integration of PrefsDaniel Zaoui2014-03-315-539/+505
|
* Eolian: Integration of PopupDaniel Zaoui2014-03-315-369/+312
|
* Eolian: Integration of PlugDaniel Zaoui2014-03-314-97/+94
|
* Eolian: Integration of PlayerDaniel Zaoui2014-03-315-87/+75
|
* Eolian: Integration of PhotoDaniel Zaoui2014-03-315-191/+175
|
* Eolian: Integration of Photocam and Photocam PanDaniel Zaoui2014-03-316-437/+428
|
* Eolian: Integration of PanesDaniel Zaoui2014-03-315-198/+221
|
* Eolian: Integration of NotifyDaniel Zaoui2014-03-315-263/+198
|
* Eolian: Integration of MapBufDaniel Zaoui2014-03-315-295/+284
|
* genlist no longer randomly selects items (or scrolls to them after selecting)v1.10.0-tech-previewzmike2014-03-301-1/+1
| | | | this item focus thing is a giant bug nightmare and needed to be developed/tested much more thoroughly in a branch before being committed to master.
* fix documentation typo/spellingCarsten Haitzler (Rasterman)2014-03-301-1/+1
|
* efm theme bg swallow now stacks correctlyMike Blumenkrantz2014-03-281-2/+1
| | | | fix T792
* label: Remove unused setting of foundflag before return.Stefan Schmidt2014-03-281-3/+1
| | | | | | | | We are never going to check on foundflag here because we return right after setting it. Clear the code up a bit by not setting it at all. Found by Clang scan-build
* win - fix reset to 0 0 geom when window resizes. should stay at cur posCarsten Haitzler (Rasterman)2014-03-281-1/+0
| | | | this is a side-effect of the fix to track actual position properly
* silence complaints getting top widget if object is not an elm widgetCarsten Haitzler (Rasterman)2014-03-282-11/+21
|
* remove duplicate strcmpCarsten Haitzler (Rasterman)2014-03-281-6/+5
|
* win - reduce code duplication and move accel prefernce into single funcCarsten Haitzler (Rasterman)2014-03-281-36/+20
|
* fix my theme version fix to not version extns/overlaysCarsten Haitzler (Rasterman)2014-03-281-16/+20
|
* elm win - fix wrong resizing of focus highlight obj.WooHyun Jung2014-03-283-0/+33
| | | | | | | When focus highlight animation is enabled, focus highlight can be resized only by animator inside edje. So, if there is no animation by some reasons, focus highlight just keeps its original. @fix
* spinner: crash issue on deletion fixChunEon Park2014-03-281-0/+1
| | | | | | | | | | | | | | | | | | | | Summary: Issue: longpress timer callback if it gets called after widget deletion, crash happens. Solution: delete the long press timer in smart del function. Signed-off by: Kumar Navneet (k.navneet@samsung.com) Signed-off by: Shilpa Singh (shilpa.singh@samsung.com) Test Plan: When we tap inc/dec fast and delete the widget immediately, crash might happen. Reviewers: raster, seoz, Hermet Reviewed By: Hermet CC: govi, rajeshps Differential Revision: https://phab.enlightenment.org/D669 @fix
* Revert "key binding: define Elm_Action function as having a return type of ↵ChunEon Park2014-03-274-10/+9
| | | | | | | | | | Eina_Bool" This reverts commit f8d46bfca2a9285b45ec76062cd85b69dc86a7db. don't push any change except bug fix in window merge step 2 this patch will be pushed again.
* elementary - added missed @sinceChunEon Park2014-03-271-0/+4
|
* key binding: define Elm_Action function as having a return type of Eina_BoolJaeun Choi2014-03-274-9/+10
| | | | | | | | | | | | | | | Summary: This patch makes func of Elm_Action struct return a Eina_Bool value. The function had a return type of void, so could not check if the function succeeds or fails. Test Plan: None Reviewers: Hermet Reviewed By: Hermet Differential Revision: https://phab.enlightenment.org/D666
* general "bugfix" via feature - add version numbering for elm themeCarsten Haitzler (Rasterman)2014-03-262-1/+13
| | | | | | | | this now has elm themes have a version number. we start at 110 (just matches efl/elm 1.10 that this will be released in) and this means theme files that do not claim a recent enough version (or claim no version at all) will not load/be used. default should/would always provide this so you always will fall back.
* elm win - fix tracking of current position to properly store it in win objCarsten Haitzler (Rasterman)2014-03-261-0/+3
| | | | @fix of win tracking bug
* toolbar - fixed to use elm apis for elm objectsChunEon Park2014-03-251-4/+4
|