summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* bg: do not make background accessibility object.Lukasz Stanislawski2015-12-013-27/+4
|
* atspi: add type of accessibility objectLukasz Stanislawski2015-12-014-15/+95
| | | | | | | | | Type API provides possibility to skip/ignore widgets in accessiblity tree. It make sense to ignore object if it do not provide any valuable contextual information for disabled users. Skipped objects are usually container objects and are ommited in parent-child relationship. @feature
* elm_font: correct argument order for calloc()Stefan Schmidt2015-11-301-2/+2
| | | | | calloc() expects count first and the actual size to allocate as second argument. Say Thank You to smatch for finding this issues for us.
* test: correct argument order for calloc()Stefan Schmidt2015-11-301-1/+1
| | | | | calloc() expects count first and the actual size to allocate as second argument. Say Thank You to smatch for finding this issues for us.
* test_gesture_layer: correct argument order for calloc()Stefan Schmidt2015-11-302-2/+2
| | | | | calloc() expects count first and the actual size to allocate as second argument. Say Thank You to smatch for finding this issues for us.
* atspi: correct argument order for calloc()Stefan Schmidt2015-11-302-5/+5
| | | | | calloc() expects count first and the actual size to allocate as second argument. Say Thank You to smatch for finding this issues for us.
* test_access: correct argument order for calloc()Stefan Schmidt2015-11-301-2/+2
| | | | | calloc() expects count first and the actual size to allocate as second argument. Say Thank You to smatch for finding this issues for us.
* elementary: Fix test_colorclass functionChris Michael2015-11-302-2/+2
| | | | | | | | | | The test_colorclass function (and prototype) were incorrect in that they did not have the proper function parameters defined. This lead to a warning when building elementary tests. @fix Signed-off-by: Chris Michael <cp.michael@samsung.com>
* Entry: add markup cnp handlersDaniel Hirt2015-11-302-0/+17
| | | | | | | | | | | | | | | In Elm_Cnp, a markup data preparer was missing, which resulted in _x11_notify_handler_targets not requesting "application/x-elementary-markup" (requested "UTF8_STRING" instead) when trying to paste markup text from one entry to another (or itself). Also, there was a missing handling in the selection data callback for ELM_SEL_FORMAT_MARKUP data format. This fixes issues like not being able to paste "item" formats to the entry widget. @fix
* elm_widget: correct declaration of function with no parametersStefan Schmidt2015-11-261-1/+1
| | | | | | | | | | | We have to use void in a function declaration if we want no function parameters. Using just empty parenthesis means the function takes an unspecified number of parameters. We had it correct for most declarations and this series fixes it for the rest. Thanks for the sparse semantic parser for pointing this out.
* test: correct declaration of function with no parametersStefan Schmidt2015-11-261-1/+1
| | | | | | | | | | | We have to use void in a function declaration if we want no function parameters. Using just empty parenthesis means the function takes an unspecified number of parameters. We had it correct for most declarations and this series fixes it for the rest. Thanks for the sparse semantic parser for pointing this out.
* elm_prefcs_cc: correct declaration of function with no parametersStefan Schmidt2015-11-261-3/+3
| | | | | | | | | | | We have to use void in a function declaration if we want no function parameters. Using just empty parenthesis means the function takes an unspecified number of parameters. We had it correct for most declarations and this series fixes it for the rest. Thanks for the sparse semantic parser for pointing this out.
* atspi: remove useless "GetDefaultAttributeSet" methodLukasz Stanislawski2015-11-261-1/+0
| | | | | This method exists in atspi spec, however is not implemented in libatspi library. Drop it for now as it seems useless.
* atspi: fix default text attribute signatureLukasz Stanislawski2015-11-251-3/+1
|
* notify: remove duplicate call of _sizing_eval.Amitesh Singh2015-11-241-2/+0
| | | | we are already calling _sizing_eval() inside _calc().
* Popup Example: Fix size calculation issue in popupAditya Raj2015-11-241-1/+1
| | | | | | | | | | | | | | | | | Summary: The function evas_object_resize(win, 480, 800) was being called after evas_object_show(popup) so size calculations of popup were going wrong(height was 0). It should be called before creating popup as win is parent of popup, This fix needs to be done only here as in other cases window is already present before creating popup but here both are being created for exmaple purposes. Signed-off-by: Aditya Raj <aditya1.raj@samsung.com> Reviewers: singh.amitesh, raster Subscribers: jpeg, tanwar.umesh07, sachin.dev Differential Revision: https://phab.enlightenment.org/D3360
* table: implement Evas.Object_Smart.calculateMike Blumenkrantz2015-11-232-0/+9
| | | | | | this allows tables to be manually calculated ref T2836
* Entry focus region : if single line, show the whole object.indefini2015-11-231-0/+7
| | | | | | | | | | Summary: If the entry is a single line, rather than return the cursor height, it is better to return the height of the object. Reviewers: herdsman, tasn Differential Revision: https://phab.enlightenment.org/D3169
* theme: add DBG() message when style is set to default (fallback)Jee-Yong Um2015-11-231-1/+6
| | | | | | | | | | | | | | | | Summary: When _elm_theme_set() failed to set given style, it sets style as "default". However, setting style to "default" can be unintended behavior, so developer should have the chance to get to know fallback. Reviewers: cedric Reviewed By: cedric Differential Revision: https://phab.enlightenment.org/D3352 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* datetime: fix field arrange code for dynamically field sequence change case.woochan lee2015-11-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Summary: This is for support dynamically field sequence changing case for example User sets datetime format as "%d/%b/%y" first. Then change the format dynamically in runtime to "%I:%M %p" Previous format datetime items still there. It breaks view(object dulicated on same geometry) @fix Test Plan: Run datetime sample. Add changed callback. Change format in changed callback function. Check the bug state. Reviewers: jaehwan, id213sin, Hermet, cedric Reviewed By: cedric Differential Revision: https://phab.enlightenment.org/D3340 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* multibuttonentry: internal entry cnp mode set as "ELM_CNP_MODE_PLAINTEXT".woochan lee2015-11-231-0/+1
| | | | | | | | | | | | | | | | Summary: To prevent pasted markup text in entry. User want tags removed text when paste text into entry. @fix Reviewers: jaehwan, Hermet, cedric Reviewed By: cedric Differential Revision: https://phab.enlightenment.org/D3333 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* multibuttonentry: change default format count.woochan lee2015-11-231-1/+1
| | | | | | | | | | | | | | | | Summary: There is no need ellipsis, space as well before "%d". The "%d" will show the actual invisible item count. @fix Reviewers: jaehwan, Hermet, cedric Reviewed By: cedric Differential Revision: https://phab.enlightenment.org/D3332 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* atspi: typo fixLukasz Stanislawski2015-11-211-1/+1
|
* atspi: support key modifers in bridge.Lukasz Stanislawski2015-11-211-1/+23
| | | | @feature
* atspi: move root object creation to atspi class.Lukasz Stanislawski2015-11-205-47/+58
|
* notify: fix hide animationAmitesh Singh2015-11-201-13/+3
| | | | | | | | | | | | | | This feature has been added long time ago but it never worked before. I delayed the parent object hide call when hide signal is present in theme. Test: 1. elementary_test -to notify 2. Click Left and wait for timer to expire 3. Click Left and click "close" button on notify. Now hide animation happens when notify hides. @fix
* notify: fix broken timeout feature in elm_notifyAmitesh Singh2015-11-201-0/+1
| | | | | | | | Add missing signal "elm,action,hide,finished" in notify theme and hide the notify object when hide is finished. fixes T2853 @fix
* atspi: unprotect subset of methodsLukasz Stanislawski2015-11-181-8/+8
| | | | | | | | Unprotect methods which are ment to be a part of public API. This methods were initially unprotected, however it looks like during eo refactoring @protect tags were added by mistake. @fix
* gengrid: Prevent duplicated selected function calls when item is unselected ↵Youngbok Shin2015-11-181-3/+5
| | | | | | | | | | | | | | | | | | | | | | in the function. Summary: If item is unselected in a selected function, selected function will be called once more from _elm_gengrid_elm_widget_on_focus. It is happened when elm_gengrid object has no focus and one of item is selected by mouse up event. To fix this issue, we need to set focus to item and keep the address of selected item before calling selected function. @fix Test Plan: 1. Install & Run efbb (Escape From Booty Bay: https://git.enlightenment.org/games/efbb.git/) 2. Select a level in the main menu. (It is using elm_gengrid). 3. See duplicated target images. Reviewers: cedric, SanghyeonLee Reviewed By: SanghyeonLee Differential Revision: https://phab.enlightenment.org/D3323
* Elm entry: Keep cursor at inserted position after dnd.Subodh Kumar2015-11-181-5/+0
| | | | | | | | | | | | | | | | | | Summary: Keep cursor at inserted position after dnd. For good user experience, after dnd users expect the cursor should be at the last inserted position. @feature Test Plan: NA Reviewers: thiepha, herdsman, cedric, tasn Subscribers: shilpasingh Differential Revision: https://phab.enlightenment.org/D3267
* win: only perform maximize frame state updating during ecore-evas callbackMike Blumenkrantz2015-11-171-19/+18
| | | | | | | running this during csd button activation leads to state mismatches when maximize is not triggered from the csd button @fix
* Clouseau: handle case when the library is not installedDaniel Zaoui2015-11-121-2/+2
| | | | | | | | | | Eina module errors are printed on the screen when the library is not installed in the system and Clouseau debug is enabled. The module pointer is not NULL checked, leading to an error message when trying to load this NULL module. @fix
* elm_prefs: mark some local symbols static and align thus with their declarationStefan Schmidt2015-11-111-6/+6
|
* elm_prefs: remove some unused functionsStefan Schmidt2015-11-111-30/+0
|
* elm_transit: mark some local symbols staticStefan Schmidt2015-11-111-7/+7
|
* elm_map: mark some local symbols staticStefan Schmidt2015-11-111-5/+5
|
* elm_main: mark some local symbols staticStefan Schmidt2015-11-111-2/+2
|
* Genlist: Fixed a possible crash in filter iterator and a typo.shashank.p2015-11-112-3/+5
| | | | | | | | | | | | | | | | | | | Summary: 1. If the sd->items list is empty any time and container_get is used on filter iterator, it will lead to crash. Solution is to not rely on sd->items and maintain a pointer to container when iterator is created. 2. There was a typo while filter feature was added earlier. Fixed it @fix Test Plan: NA Reviewers: SanghyeonLee Reviewed By: SanghyeonLee Subscribers: rajeshps, shilpasingh Differential Revision: https://phab.enlightenment.org/D3319
* hoversel: add item disabling support.godly.talias2015-11-103-0/+14
| | | | | | | | | | | | | | | | Summary: Hoversel items can be disabled using elm_object_item_disabled_set @feature Test Plan: elementary_test Reviewers: prince.dubey, shilpasingh, raster, Hermet, conr2d, cedric Subscribers: poornima.srinivasan, rajeshps Differential Revision: https://phab.enlightenment.org/D3122 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* slider: fix slider focus bugHosang Kim2015-11-101-1/+1
| | | | | | | | | | | | Summary: when slider is focused and slider's indicator mode is not ELM_SLIDER_INDICATOR_VISIBLE_MODE_ON_FOCUS, slider's indicator popup blinked. Test Plan: elementary_test -> slider -> focus out -> click slider again Reviewers: seoz, cedric, raster, Hermet, woohyun, CHAN, id213sin Differential Revision: https://phab.enlightenment.org/D3308 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* spinner: code clean up for readability.woochan lee2015-11-091-2/+31
| | | | | | | | | | | | Summary: Line change by meaningful paragraph. Test Plan: N/A Reviewers: Hermet, cedric Differential Revision: https://phab.enlightenment.org/D3300 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* spinner: add entry filter for accepted only digits and "."woochan lee2015-11-092-0/+48
| | | | | | | | | | | | | | | | | | | | | | | | | Summary: When spinner activated with entry, user can input any characters in entry. It degrades the usability. Add filter for only can input numbers and "." for case of decimal point existing. I will add entry filter for limit size as well after this commit. This spinner features may help for app developer and users too. @feature Test Plan: Run elementary_test Test various spinner format for check this. Reviewers: Hermet, cedric Subscribers: id213sin, shilpasingh Differential Revision: https://phab.enlightenment.org/D3299 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* segment_control: fix variable affectationJean Guyomarc'h2015-11-091-3/+3
| | | | | | | | | | | | | | | | | | | Summary: When an Elm_Segment_Control object is created, the constructor calls the smart_add() behind the scenes. It then calls _update_list() which calls _position_items(), with the sd->obj unset (because it was set after calling super constructors). This led to a CRI() (and therefore to a backtrace) on the creation of each Elm_Segment_Control. @fix Test Plan: elementary_test Reviewers: stefan_schmidt, cedric, raster Differential Revision: https://phab.enlightenment.org/D3276 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* hoversel: refactor a bit to avoid code duplication.Subodh Kumar2015-11-091-37/+26
| | | | | | | | | | | | | | | Summary: Avoid code duplication Two dismissal signals at two different places created some confusion and also code is duplicated. Also removed some extra space. Test Plan: NA Reviewers: cedric Differential Revision: https://phab.enlightenment.org/D3269
* genlist: modified first/last/prev/next get API for filtered list.shashank.p2015-11-095-17/+91
| | | | | | | | | | | | | | Summary: elm_genlist_first_item_get(), elm_genlist_last_item_get(), elm_genlist_item_prev_get(), elm_genlist_item_next_get() should return the next filtered item if filter is applied on the genlist. Test Plan: test_genlist.c => Genlist Filter demo updated Reviewers: shilpasingh, cedric, SanghyeonLee Subscribers: divyesh, rajeshps Differential Revision: https://phab.enlightenment.org/D3263 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* conform: retry connect to indicator when confrom fails connect.Shinwoo Kim2015-11-091-2/+4
| | | | | | | | | | | | | | | | | | Summary: An application starts before the indicator has. In this case, the application should try to connect again with the indicator. Test Plan: 1. Start an application without the indicator service. 2. Start the indicator service. Reviewers: raster, Hermet, woohyun, jaehwan, cedric Subscribers: seoz Differential Revision: https://phab.enlightenment.org/D3258 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* naviframe: subtitle,show signal not sentShilpa Singh2015-11-091-5/+5
| | | | | | | | | | | | | | | | | | | | | | Summary: 1. When subtitle is set using actual part name "elm.text.subtitle", subtitle,show signal is not sent issue fix. 2. Remove unnecessary checks, maintain code readability. @fix Test Plan: Set text using edc part name elm.text.subtitle Reviewers: Hermet, cedric Reviewed By: cedric Subscribers: shashank0990 Differential Revision: https://phab.enlightenment.org/D2988 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* index: internal item's edje object handling logic changed to improve ↵woochan lee2015-11-091-29/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | performance. Summary: The box_clear, box_fill internal functions called when almost every internal chage happend. (resize, theme apply, item append, item delete etc...) Then those APIs delete/create item's edje object for all of the items. It's very not good action for performance. So, i changed this just edje object box unpack/pack instead of delete/create. @fix Test Plan: Working test on elementary_test and Call all of the index APIs for check this change. Reviewers: Hermet, cedric Reviewed By: cedric Differential Revision: https://phab.enlightenment.org/D3268 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* toolbar: reduce changing widget parent-child relationship when an item is added.Youngbok Shin2015-11-091-10/+6
| | | | | | | | | | | | | | | | | | Summary: It is an legacy of old code. When the view object of item was edje, I think there was no meaningless parent-child relationship changes. But, now, the view object is elm_layout and if we add object in proper order, we don't need to make an useless parent-child realationship in any moments. Test Plan: None Reviewers: woohyun, cedric Reviewed By: cedric Differential Revision: https://phab.enlightenment.org/D3254 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
* toolbar: add item_signal_emit.Shilpa Singh2015-11-092-0/+10
| | | | | | | | | | | | | | | | | | | Summary: Application cannot send signals to toolbar item using elm_object_item_signal_emit API. @feature Test Plan: Send signal to toolbar item from app using elm_object_item_signal_emit widget. Reviewers: cedric Reviewed By: cedric Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D3251 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>