summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* e menus now have their own shadowsdevs/discomfitor/elm19Mike Blumenkrantz2014-01-131-0/+13
|
* fix fast popups to still have shadowsMike Blumenkrantz2014-01-131-0/+29
|
* change border icon urgency to be more in line with other e animationsMike Blumenkrantz2014-01-131-6/+6
| | | | a number of e animations are "zoom" related. bouncing is clearly identified as being OSX, so let's stay away from that.
* feature: add PIN desklock themeMike Blumenkrantz2014-01-132-0/+122
| | | | currently just reuses syscon buttons since they're identical in function
* feature: iconify/uniconify animations for windowsMike Blumenkrantz2014-01-132-0/+98
|
* add pager16 module themeMike Blumenkrantz2014-01-133-0/+380
|
* readd deskmirrorMike Blumenkrantz2014-01-133-0/+427
| | | | this file seems to have been magically and mysteriously lost during the recent theme merge
* redo comp theme to match e19 signalsMike Blumenkrantz2014-01-134-84/+711
| | | | | | | | | | | | * shadows should be uniformly moved to whatever thing they're supposed to be on (WIP) * trans-clipper was a failure idea, this is now done in C * signals renamed to be more consistent * groups renamed to comp/frame/* * comp/border/* groups preserved for compat
* atspi_bridge: Changed shadow variable names.Daniel Juyung Seo2014-01-131-10/+10
|
* ctxpopup, entry: Check widget type by eo_isa not by evas_object_typeDaniel Juyung Seo2014-01-132-4/+4
| | | | string compare.
* inwin, layout: Check null before calling eo_isa.Daniel Juyung Seo2014-01-132-2/+2
|
* panes: Fixed panes smart callbak calls by fixing default theme.Daniel Juyung Seo2014-01-132-4/+56
| | | | | | | | Panes smart callback depends on the signals from theme but it was broken when dark theme was introduced. "clicked" does not work yet, it should be fixed. Thanks for the report, JackDanielZ.
* cnp: Fixed indentation while reading the code.Daniel Juyung Seo2014-01-131-1/+1
|
* Widget: Removed !obj checks from ELM_WIDGET_DATA_GET_OR_RETURN and ↵Ryuan Choi2014-01-131-9/+7
| | | | | | | | | ELM_WIDGET_CHECK eo_data_scope_get and eo_isa returns NULL with complaint when NULL is passed. So, Removed unnecessary !obj check routine. In addition, adopt EINA_UNLIKELY for these macros and fix indentation.
* entry: Add elm_entry_input_panel_show_on_demand_set/get APIJihoon Kim2014-01-134-1/+115
| | | | | This API sets the attribute to show the input panel in case of only an user's explicit Mouse Up event. It doesn't request to show the input panel even though it has focus.
* elm_win: Removed EE_ENGINE_COMPARE macro to reduce redundant function calls.Ryuan Choi2014-01-131-34/+44
| | | | | | | | | EE_ENGINE_COMPARE reduces typing little bit, but it makes redundant function calls because almost callers call it more than once. And, there is no way to check whether ecore_evas_engine_name_get is null. This patch removed EE_ENGINE_COMPARE with small refactoring. In addition, removed unnecessary check routines from _elm_ee_xwin_get.
* genlist: Check return value out of the loop in _realized_items_getRyuan Choi2014-01-131-2/+4
|
* fileselector: Fix that the enter key does not navigate directoryRyuan Choi2014-01-131-27/+10
| | | | Moved the navigation logic from callback of "clicked,double" to callback of "activated".
* els_box : Move horizontal condition out of some loop in _els_box_layoutRyuan Choi2014-01-131-59/+39
| | | | | | | | | | | | | | | | | Summary: Almost logic of both horizontal and vertical are same except different axis in _els_box_layout. This patch reduced code size and improved speed little bit by moving condition out of the loop using some extra pointer variables. In addition, removed unnecessary check routines. There are already similar logic for them before and after. Reviewers: raster, seoz, cedric Reviewed By: raster Differential Revision: https://phab.enlightenment.org/D423
* actionslider - fix unused macros to match current usage and build againCarsten Haitzler (Rasterman)2014-01-131-2/+2
|
* [actionslider]:enable the mouse eventprashant2014-01-132-3/+91
| | | | | | | | | | | | | | Summary: On mouse click move the knob on action slider Test Plan: elementary_test -to actionslider Reviewers: seoz, singh.amitesh, raster Reviewed By: raster CC: raster Differential Revision: https://phab.enlightenment.org/D384
* atspi - fix warnhings and use %llu (unsigned long long) or obj handleCarsten Haitzler (Rasterman)2014-01-132-6/+6
|
* atspi: accessible and component interface implementation.Lukasz Stanislawski2014-01-138-38/+1809
| | | | | | | | | | Reviewers: raster, cedric, kimcinoo, seoz Reviewed By: raster CC: pkaczmarek-samsung, z.kosinski Differential Revision: https://phab.enlightenment.org/D378
* Adding elm_tooltip_movement_lock_set() and elm_tooltip_movement_lock_get()abhi2014-01-135-5/+86
| | | | | | | | | | | | | | Summary: These APIs allow to enable/disable a tooltip to move with respect to mouse pointer Test Plan: elm_tooltip_movement_lock_set(), elm_tooltip_movement_lock_get(), elementary_test -to tooltip Reviewers: singh.amitesh, seoz, raster Reviewed By: raster CC: raster Differential Revision: https://phab.enlightenment.org/D369
* elm cnp (dnd) - file:/ is the minimum, not file:// so work with other appsCarsten Haitzler (Rasterman)2014-01-131-11/+11
|
* theme - make dark rounded square less transp. and add shadow to ibar menuCarsten Haitzler (Rasterman)2014-01-135-2/+15
|
* test_genlist: Enable focus highlight and animation only for this window.Daniel Juyung Seo2014-01-131-3/+2
| | | | Do not affect other test windows.
* test_genlist: Renamed genlist20 test name to more descriptive test name,Daniel Juyung Seo2014-01-132-27/+29
| | | | genlist_focus.
* glview test - fix if evas gl ins't found - leak of gld dataCarsten Haitzler (Rasterman)2014-01-111-0/+1
|
* elm prefs cc - fix failed lseek handling on compileCarsten Haitzler (Rasterman)2014-01-111-0/+6
|
* glview test - dont leak gldCarsten Haitzler (Rasterman)2014-01-111-0/+2
|
* fix sign/unsigned compare warnCarsten Haitzler (Rasterman)2014-01-111-3/+3
|
* use long not unsigned long - ftell returns long.Carsten Haitzler (Rasterman)2014-01-111-3/+3
|
* elm glview - evas sync before rendering with always draw to sync rightCarsten Haitzler (Rasterman)2014-01-111-0/+2
| | | | | async rendering clashes with the idle enterer glview uses to draw with always render mode - sync first and there is no problem.
* dbus menu - fix leak of reply creation for method eventsCarsten Haitzler (Rasterman)2014-01-101-1/+0
| | | | this fixes CID 1039975
* mapbuf - move index check into eo method and use fixed index sizeCarsten Haitzler (Rasterman)2014-01-101-16/+10
| | | | this also fixes CID 1141033 and CID 1141032
* elm prefs - useless staement as _deltai() already fills in *valCarsten Haitzler (Rasterman)2014-01-101-2/+0
| | | | this should fix 1040028
* comment fallthroughs as intentionalCarsten Haitzler (Rasterman)2014-01-101-2/+2
|
* fix elm fsel test to check mkdir returnCarsten Haitzler (Rasterman)2014-01-101-2/+4
| | | | this should fix CID 1040043
* app client - fix not handling failed return from eldbus callCarsten Haitzler (Rasterman)2014-01-101-1/+2
| | | | this fixes CID 1091411
* elm map - fix incorrect return check of freadCarsten Haitzler (Rasterman)2014-01-101-2/+2
| | | | this fixes CID 1132735 (real bug)
* elm map - fix incorrect return check of freadCarsten Haitzler (Rasterman)2014-01-101-2/+2
| | | | this fixes CID 1132736 (real bug)
* elm map - fix incorrect return check of freadCarsten Haitzler (Rasterman)2014-01-101-2/+2
| | | | this fixes CID 1132737 (a real bug)
* formatting (spaces)Carsten Haitzler (Rasterman)2014-01-101-3/+3
|
* When the viewport is resized, the entry size will be recalculate.Youngbok Shin2014-01-102-20/+79
| | | | | | | | | Using the elm_scrollable_interface_content_viewport_resize_cb_set in scrollable entry widget. this only happens in mobile profile when you drag the content with your finger left/right when the content is smaller than the gap between icons. This accepts D187
* [scroller] fixed infinite loop bug in scrollerHosang Kim2014-01-101-16/+17
| | | | | | | | | | Summary: called scroller bring in API in "scroll,anim,stop" callback, so occured infinite loop Reviewers: seoz, jaehwan, raster, woohyun, cedric Reviewed By: raster Differential Revision: https://phab.enlightenment.org/D445
* Add COPYING.images to make distDoug Newgard2014-01-101-0/+1
| | | | | | | | | | Summary: This file is is the attribution required by the license. Reviewers: raster Reviewed By: raster Differential Revision: https://phab.enlightenment.org/D438
* test_dnd: avoid to create icon object that will be unusedJihoon Kim2014-01-101-1/+3
|
* test_glview: Show description if gl is not supported.Jihoon Kim2014-01-101-29/+49
| | | | | | refer commit: 5a143dc1c68f07e994ed6f2f4f035f77c7f902d5 66d2b7df56d1fc0900f8e407e17f3967efc23534
* test_dnd: Check return value of strchr it can be NULL.Daniel Juyung Seo2014-01-101-0/+4
| | | | This fixes coverity CID 1152899 and 1152898.