Commit Graph

2420 Commits

Author SHA1 Message Date
ChunEon Park a5eb6bebde elementary / transit - fixed typo.
SVN revision: 58094
2011-03-26 12:39:47 +00:00
WooHyun Jung fc6a5a24b9 From: WooHyun Jung <wh0705.jung@samsung.com>
Subject: [E-devel] [Patch] for Gettext /I18N

Mr. Govi in SISO made a patch for following description. 

Detail Description:

1. If EFL/Elementary Application has i18n String with its own PO file,
then Elementary will end up looking for internal Strings at application
PO files. Passing PACKAGE name in the Elementary String Look up macro
eliminates this issue and looks for internal String from Elm.po files.

2. Macro E_(str) is used, to differentiate the elementary Strings from
commonly used #define _(str) in the applications. ( Just E ed :) )
 


SVN revision: 58085
2011-03-25 04:49:49 +00:00
Tristan Lelong ab35bb5667 From: Tristan Lelong <tristan.lelong@blunderer.org>
Subject: [E-devel] [PATCH]: keyboard navigation in menus

I was using elementary on a target that only has a keyboard, and I add
to do several modification on the elm_menu to handle keyboard
navigation.
- patch 1: discard a menu from C source code
- patch 2: add accessors for menu items and add the ability to handle
selected item from C source code



SVN revision: 58084
2011-03-25 04:42:12 +00:00
suxia li 58508d43d3 From: suxia li <suxia.li@samsung.com>
Subject: [E-devel] Patch for photocam elm_photocam_file_set

hello, i made a patch for photocam, because i found a bug that
sometimes grid_clearall is done after image preload process, but it
should be done before image preload process, otherwise, only low
quality image is loaded.
Please have a check, thanks~



SVN revision: 58083
2011-03-25 04:33:51 +00:00
Seunggyun Kim c8eb346a08 From: Seunggyun Kim <sgyun.kim@samsung.com>
Subject: [E-devel]  elm_genlist - bug fix about _update_job

I found one bug in _update_job.

Now, when the elm_genlist_item_update is called, all realized items have
been updated.

In _update_job logic, item block is recalculated if it->minw and
itminw is
not same.
But before comparing that, itminw value is saved it->w. 
And it->minw value is saved in _item_realzie function.
Then there are different between it->minw and itminw value.

So the item block is recalculated and _item_block_position is called.

After applying below patch, elm_genlist_item_update api updates only one
item.



SVN revision: 58082
2011-03-25 04:27:47 +00:00
Jihoon Kim d7ad29248d From: Jihoon Kim <jihoon48.kim@samsung.com>
Subject: [E-devel] [PATCH] Patch to give focus to the content in
elm_notify

lm_notify has not handled the focus movement.
Even though a button widget is contained in an notify widget and notify
widget is shown,  button widget could not be focused.
Therefore, button couldn't process any key event such as space and enter key.
This patch will solve this problem.



SVN revision: 58081
2011-03-25 04:13:10 +00:00
ChunEon Park ef71827092 elementary/ctxpopup - fixed indentation
SVN revision: 58070
2011-03-24 15:49:46 +00:00
Jae Hwan Kim 9e506fc581 From: Jae Hwan Kim <jae.hwan.kim@samsung.com>
If the scroller is stopped and set the freeze push while bounce
animation is running, it will stop bouncing in a moment. Even if the scroller
is set the freeze pop again, the scroller don't finish the bouncing. I think
that it should finish the bouncing when it is set the freeze pop.



SVN revision: 58063
2011-03-24 07:34:23 +00:00
ChunEon Park a6a182f7b6 elementary/ctxpopup - removed white trailing
SVN revision: 58052
2011-03-24 02:17:34 +00:00
ChunEon Park 29bdbfe36f elementary/ctxpopup - removed fingersize completely.
SVN revision: 58051
2011-03-24 02:14:22 +00:00
Daniel Juyung Seo 7071c0352a Elementary ko_KR.po: Updated Korean translations.
SVN revision: 58034
2011-03-23 15:26:57 +00:00
Carsten Haitzler 2fda5e577f listen to move events and track on override-redirect windows.
SVN revision: 58032
2011-03-23 13:29:26 +00:00
ChunEon Park 646cfe83d8 elementary/default.edc - fixed typo (ctxpopup)
SVN revision: 58030
2011-03-23 10:57:51 +00:00
ChunEon Park 03a276fbe0 elementary/default.edc - modified ctxpopup arrow position to be more closed to box
SVN revision: 58029
2011-03-23 10:53:09 +00:00
ChunEon Park a92abbf562 elementary/ctxpopup - modified fingersize to half one
SVN revision: 58028
2011-03-23 10:52:18 +00:00
Carsten Haitzler 7365b3ea66 oops - missed theme part of menu patch
SVN revision: 58027
2011-03-23 10:44:55 +00:00
Daniel Juyung Seo 65a8f97f30 Elementary elm_widget.c: Modification of last change in
elm_widget_show_region_set function.

Patch by WooHyun Jung <wh0705.jung@samsung.com>



SVN revision: 58015
2011-03-23 07:15:01 +00:00
Daniel Juyung Seo 11033734f3 Elementary doxygen: Fixed for the consistency with the other widget's
document format.

Patch by Jihoon Kim <jihoon48.kim@samsung.com>


SVN revision: 58007
2011-03-23 00:40:47 +00:00
Daniel Juyung Seo 08bde06005 Elementary elm_widget.c: Used API_ENTRY, INTERNAL_ENTRY macros. Prevented segv.
SVN revision: 58001
2011-03-22 22:12:33 +00:00
Christopher Michael a0a33a0191 Elementary: Patch from Jihoon Kim to add missing window types.
Elementary was missing window types for dropdown_menu, popup_menu,
tooltip, notification, combo, and dnd. This patch adds the missing
types into the enum and elm_win code.



SVN revision: 57992
2011-03-22 15:46:52 +00:00
Daniel Juyung Seo af08009a99 Elementary elm_genlist.c: Formatting with ecrustify.
SVN revision: 57963
2011-03-22 07:54:24 +00:00
ChunEon Park 11365c7445 fixed white trailing
SVN revision: 57962
2011-03-22 07:51:17 +00:00
WooHyun Jung a180e3d30c From: WooHyun Jung <wh0705.jung@samsung.com>
Subject: [E-devel] [Patch] Small patch for elm_slider (scrolling pop +
push)

I made small patch for elm_slider. 

I think scrolling should be freezed (not held) when dragging is
started. 

This is because scrolling can go on with elm_widget_scroll_hold_push. 



SVN revision: 57959
2011-03-22 02:59:06 +00:00
Tristan Lelong 23b7dd8b8b From: Tristan Lelong <tristan.lelong@blunderer.org>
>>> Hello,
>>>
>>> I was using elementary on a target that only has a keyboard, and I add
>>> to do several modification on the elm_menu to handle keyboard
>>> navigation.
>>> - patch 2: add accessors for menu items and add the ability to handle
>>> selected item from C source code



SVN revision: 57957
2011-03-22 02:29:26 +00:00
Carsten Haitzler daff42bd02 warning--
SVN revision: 57955
2011-03-22 02:12:27 +00:00
Carsten Haitzler 551bbe375d menu api was the wrong name..
SVN revision: 57954
2011-03-22 02:08:38 +00:00
WooHyun Jung 52c6c2171d From: WooHyun Jung <wh0705.jung@samsung.com>
Subject: [E-devel] [Patch] Focus issue in elm_widget.c

I've checked there were some focus problems when an object is hidden. 

So I made patch for that ~ 



SVN revision: 57898
2011-03-19 15:13:14 +00:00
Carsten Haitzler d5fc6b467b new test for testing focus on deleted.. and hidden widgets
SVN revision: 57897
2011-03-19 15:11:45 +00:00
Daniel Juyung Seo bd65e03b1f Elementary genlist: Changed int calc to Eina_Bool calc.
calc decides whether this call is for calculation only or not.
So it's reasonable to change this to Eina_Bool.


SVN revision: 57851
2011-03-18 15:02:49 +00:00
Daniel Juyung Seo 3be327f239 Elementary genlist: Removed trailing white spaces and fixed indentation.
SVN revision: 57850
2011-03-18 14:29:48 +00:00
Carsten Haitzler 8e6e484440 revert version change 999 -> 99. also e17 didnt even need it as it
produced no versioned .so files.



SVN revision: 57844
2011-03-18 07:35:19 +00:00
ChunEon Park c7e693adb6 elementary/ctxpopup - fixed a minor error
added exception for the null icon set. 



SVN revision: 57842
2011-03-18 06:36:39 +00:00
Jihoon Kim 610284eab8 From: Jihoon Kim <jihoon48.kim@samsung.com>
Subject: [E-devel] [PATCH] elm_entry : use EINA_FALSE instead of 0 when calling edje_object_part_text_select_allow_set
Date: Fri, 18 Mar 2011 13:04:44 +0900

Hi,

This is simple patch to use EINA_FALSE instead of 0 when calling
edje_object_part_text_select_allow_set in elm_entry.c
Would you please apply in svn?


SVN revision: 57836
2011-03-18 04:50:36 +00:00
Christopher Michael 65041c6675 Patch from Jihoon Kim:
Fix typo in Elm API (rename elm_cache_flush_enmabled_get to
elm_cache_flush_enabled_get).



SVN revision: 57835
2011-03-18 00:20:29 +00:00
Sebastian Dransfeld cba5b045dc Set v_mic to 99 (less than 256) to please OS X
SVN revision: 57824
2011-03-17 13:12:50 +00:00
Tom Hacohen 42588f455d Elementary widget: Fixed NULL checking in elm_widget_show_region_set
Patch by WooHyun Jung.

SVN revision: 57823
2011-03-17 12:10:02 +00:00
Tom Hacohen befd5ae51e Elementary: Updated gitignore.
SVN revision: 57822
2011-03-17 12:03:20 +00:00
Tom Hacohen 9944e8a295 Elementary entry: Fix compilation warnings.
SVN revision: 57821
2011-03-17 11:11:27 +00:00
ChunEon Park d3c8d9fe03 elementary/elm_widget - fixed typo
SVN revision: 57820
2011-03-17 10:49:31 +00:00
ChunEon Park 8bbb43b901 [elementary/widget] fixed logic error which was caused by me.
SVN revision: 57817
2011-03-17 09:39:36 +00:00
Tom Hacohen 8c9f001fed Elementary entry: Save cursor position on theme changes
And fix redundancy in all of the theme changes while at it.
Patch by Jihoon Kim.

SVN revision: 57816
2011-03-17 08:18:16 +00:00
Daniel Juyung Seo 61a60002aa Elementary: Fixed indentation and white spaces. Patch by Jihoon Kim
(jihoon48.kim@samsung.com)


SVN revision: 57759
2011-03-15 02:01:42 +00:00
Tom Hacohen c5676e53f9 Elementary entry: Updated docs of elm_entry_markup_* functions.
Patch by Hyoyoung Chang.

SVN revision: 57735
2011-03-14 09:54:40 +00:00
Tom Hacohen c06525b332 Elementary entry: Added attributes to markup conversions functions.
Added EINA_MALLOC and EINA_WARN_UNUSED_RESULT.

SVN revision: 57734
2011-03-14 09:54:37 +00:00
ChunEon Park 3d570dd8d3 elementary/scrollers - added minor exceptios.
SVN revision: 57702
2011-03-12 06:36:21 +00:00
ChunEon Park 2f6a61ac06 elementary / els_pan - added minor exceptions.
SVN revision: 57700
2011-03-12 05:00:18 +00:00
ChunEon Park 7a7a2dd695 elementary/elm_widget - added minor exceptions.
SVN revision: 57688
2011-03-11 11:44:23 +00:00
ChunEon Park c3e3ebb3ac elementary/els_scroller - added one minor exception
SVN revision: 57687
2011-03-11 09:57:10 +00:00
ChunEon Park 8032a600c1 elementary/els_scroller - added exception handling
if user call any other APIs (ex, elm_smart_scroller_object_theme_object_set) before elm_smart_scroller_child_set?



SVN revision: 57686
2011-03-11 09:43:48 +00:00
ChunEon Park 9442bdd854 elementary/els_scroller - it will be better if compiler does not optimize maybe.
SVN revision: 57685
2011-03-11 09:15:38 +00:00