platform/upstream/elementary.git
11 years agoelementary: Simplifies code and removes redundant duplicated code.
Cedric BAIL [Thu, 4 Oct 2012 02:43:57 +0000 (02:43 +0000)]
elementary: Simplifies code and removes redundant duplicated code.

Patch by Igor Murzov <e-mail@date.by>

SVN revision: 77396

11 years agoelementary: Fixes bad format strings in *printf() calls.
Cedric BAIL [Thu, 4 Oct 2012 02:42:26 +0000 (02:42 +0000)]
elementary: Fixes bad format strings in *printf() calls.

Patch by Igor Murzov <e-mail@date.by>

SVN revision: 77395

11 years agoelementary: Removes unused variable.
Cedric BAIL [Thu, 4 Oct 2012 02:40:59 +0000 (02:40 +0000)]
elementary: Removes unused variable.

Patch by Igor Murzov <e-mail@date.by>

SVN revision: 77394

11 years agoelementary: correctly balance init counts
Bruno Dilly [Wed, 3 Oct 2012 16:41:46 +0000 (16:41 +0000)]
elementary: correctly balance init counts

It was always increasing quicklaunch count on init, but
only reducing on shutdown when _elm_init_count is zeroed,
i.e., the quicklaunc_shutdown rountine wasn't being executed.

SVN revision: 77378

11 years agoelementary: on external widgets del just call shutdown
Bruno Dilly [Wed, 3 Oct 2012 16:41:30 +0000 (16:41 +0000)]
elementary: on external widgets del just call shutdown

Instead of adding it to an idler.
If the main loop is already dead it won't shutdown correctly.

SVN revision: 77377

11 years agoelementary: add elm_calendar_displayed_time_get to know which month is displayed...
Michael BOUCHAUD [Wed, 3 Oct 2012 10:02:27 +0000 (10:02 +0000)]
elementary: add elm_calendar_displayed_time_get to know which month is displayed. And add a signal display,changed

SVN revision: 77362

11 years agoupdating galician translations
Massimo Maiurana [Tue, 2 Oct 2012 21:11:31 +0000 (21:11 +0000)]
updating galician translations

SVN revision: 77336

11 years agoelementary_codegen: Fixing a small problem with programs
Flavio Vinicius Alvares Ceolin [Tue, 2 Oct 2012 19:09:10 +0000 (19:09 +0000)]
elementary_codegen: Fixing a small problem with programs

Generating code even when there is no signal and/or source
in a program with SIGNAL_EMIT action.

SVN revision: 77332

11 years agoelementary: fix enum docs on elm_general
Bruno Dilly [Tue, 2 Oct 2012 17:06:20 +0000 (17:06 +0000)]
elementary: fix enum docs on elm_general

SVN revision: 77329

11 years agoelementary: add policy for elm exit
Bruno Dilly [Tue, 2 Oct 2012 17:06:11 +0000 (17:06 +0000)]
elementary: add policy for elm exit

With ELM_POLICY_EXIT it's possible to request elementary
to delete all the windows before shutdown instead of just
quitting the main loop.

SVN revision: 77328

11 years agoelementary/genlist: Init itc to NULL before using it.
Stefan Schmidt [Tue, 2 Oct 2012 12:53:58 +0000 (12:53 +0000)]
elementary/genlist: Init itc to NULL before using it.

SVN revision: 77320

11 years agoelementary: fix spinner wrap
Bruno Dilly [Mon, 1 Oct 2012 20:44:19 +0000 (20:44 +0000)]
elementary: fix spinner wrap

It's weird, but looks like wrap mode of the spinner is broken at least
since the move of elm to trunk.

The current code:

  if (sd->wrap)
     {
        while (new_val < sd->val_min)
          new_val = sd->val_max + new_val + 1 - sd->val_min;
        while (new_val > sd->val_max)
          new_val = sd->val_min + new_val - sd->val_max - 1;
     }

doesn't seems correct. Since even the documented example would fails:

 * E.g.:
 * @li min value = 10
 * @li max value = 50
 * @li step value = 20
 * @li displayed value = 20
 *
 * When the user decrement value (using left or bottom arrow), it will
 * displays @c 40, because max - (min - (displayed - step)) is
 * @c 50 - (@c 10 - (@c 20 - @c 20)) = @c 40.

With the current code the value will be 41.

It also could lead to values above min, like happens on the first spinner test,
when you could go to -50.5 because new value will become:
 250 + (-50.5) + 1 - (-50) in the first while() and later since these value
 is bigger then 250, would go back to -50.5 ...

So, a reasonable algorithm would be

  if (sd->wrap)
     {
        if (new_val < sd->val_min)
          new_val = sd->val_max + new_val - sd->val_min;
        else if (new_val > sd->val_max)
          new_val = sd->val_min + new_val - sd->val_max;
     }

But it doesn't works fine for cases like the months spinners test, when you
have min = 1, max = 12, step = 1 and each option should be displayed with
wrap. This algorithm would wraps from 1 to 11, so would skip December...

So, I think just going to the max value when min is reached is the better
choice.

   if (sd->wrap)
     {
        if (new_val < sd->val_min)
          new_val = sd->val_max;
        else if (new_val > sd->val_max)
          new_val = sd->val_min;
     }

SVN revision: 77278

11 years agoelm genlist: Fixed reorder mode to scroll the pan when reorder item approaches to...
Daniel Juyung Seo [Mon, 1 Oct 2012 08:55:46 +0000 (08:55 +0000)]
elm genlist: Fixed reorder mode to scroll the pan when reorder item approaches to the edges. Patch by Bluezery <ohpowel@gmail.com>

On Fri, Sep 28, 2012 at 10:04 PM, Bluezery <ohpowel@gmail.com> wrote:
> Dear EFL developers,
>
> In current genlist reorder mode, reordering is not moved when
> reordering item is on top or in bottom of within genlist objec because
> of scroller's hold mode.
> After mouse point is moved out of genlist object, then reordering item
> can be moved.
> But in mobile, mouse point can not be moved out of window (if genlist
> item is expanded in window).
> So I add some tweaks to reordering item can be moved when reordering
> item is moved on top item or bottom item.
>
> Please review this patch.
>
> BRs
> Kim.

SVN revision: 77255

11 years agoelementary/flip - not inteded this line..
ChunEon Park [Mon, 1 Oct 2012 08:22:49 +0000 (08:22 +0000)]
elementary/flip - not inteded this line..

SVN revision: 77251

11 years agoelm: Fixed indentations for EINA_LIST/INLIST_FOREACH(_SAFE).
Daniel Juyung Seo [Mon, 1 Oct 2012 07:36:27 +0000 (07:36 +0000)]
elm: Fixed indentations for EINA_LIST/INLIST_FOREACH(_SAFE).

SVN revision: 77244

11 years agoelementary/flip - reverted 77229. actually clo.png is used.
ChunEon Park [Mon, 1 Oct 2012 06:35:08 +0000 (06:35 +0000)]
elementary/flip - reverted 77229. actually clo.png is used.

SVN revision: 77236

11 years agoelementary/flip - removed unnecessay line
ChunEon Park [Sun, 30 Sep 2012 13:39:37 +0000 (13:39 +0000)]
elementary/flip - removed unnecessay line

SVN revision: 77229

11 years agoElm: fix compilation of codegen on Mac and formatting in elm_priv.h
Vincent Torri [Sun, 30 Sep 2012 07:15:30 +0000 (07:15 +0000)]
Elm: fix compilation of codegen on Mac and formatting in elm_priv.h

SVN revision: 77220

11 years agoelementary/genlist - my fault. fixed build error :1
ChunEon Park [Sat, 29 Sep 2012 18:45:15 +0000 (18:45 +0000)]
elementary/genlist - my fault. fixed build error :1

SVN revision: 77219

11 years agoelementary/genlist - remove it safely.
ChunEon Park [Sat, 29 Sep 2012 18:40:43 +0000 (18:40 +0000)]
elementary/genlist - remove it safely.

SVN revision: 77218

11 years agoelementary: remove wrap from one of spinner tests
Bruno Dilly [Fri, 28 Sep 2012 21:07:28 +0000 (21:07 +0000)]
elementary: remove wrap from one of spinner tests

Since all the spinners have wrap set we don't test if min / max
are working fine without it.
Also, using EINA_TRUE instead of ELM_WRAP_CHAR makes more sense.

Anyway I couldn't reproduce the bug Ricardo reported to me =/

SVN revision: 77213

11 years agoelm: add bg external
Bruno Dilly [Fri, 28 Sep 2012 21:07:23 +0000 (21:07 +0000)]
elm: add bg external

I know some guys insinuated it's useless, since if you want to
put a image in your theme you can just place a image part.

But there are some cool things:
 - You can add a background that fits the theme (default bg theme)
 - You can use background options (tile, stretch...)

SVN revision: 77212

11 years ago[elm] Let's check for an elm widget before recursing on elm_widget_theme().
Gustavo Lima Chaves [Fri, 28 Sep 2012 14:08:00 +0000 (14:08 +0000)]
[elm] Let's check for an elm widget before recursing on elm_widget_theme().

SVN revision: 77207

11 years agoWe don't want to get err messages on !win objects on entry focus.
Gustavo Lima Chaves [Fri, 28 Sep 2012 14:07:16 +0000 (14:07 +0000)]
We don't want to get err messages on !win objects on entry focus.

This can happen on window deletion scenario:

the parent object is elm_widget_sub_object_del()ed BEFORE it gets
evas_object_del()ed, so its children won't reach the window anymore.

SVN revision: 77206

11 years agoFrom: Jihyeon Seol <jihyeon.seol@samsung.com>
Jihyeon Seol [Fri, 28 Sep 2012 09:28:18 +0000 (09:28 +0000)]
From: Jihyeon Seol <jihyeon.seol@samsung.com>
Subject: [E-devel] [Patch] multibuttonentry - data corruption issue of
the box list

here is a problem in the data corruption of the box list in
_box_layout_cb() of the multibuttonentry.

EINA_LIST_FOREACH is used to move and resize the objects.
but if box unpack/pack is called in the EINA_LIST_FOREACH loop,
the data of the box list will be corrupted.

This problem can not be solved immediately due to the structural
problems of
the MBE.
So the attached patch, a workaround, avoids calling unpack/pack in the
EINA_LIST_FOREACH loop.

I am in the process of refactoring MBE but in the mean time,
this patch will resolve the above issue.

SVN revision: 77192

11 years agotypo--
Carsten Haitzler [Fri, 28 Sep 2012 08:50:19 +0000 (08:50 +0000)]
typo--

SVN revision: 77183

11 years agoFrom: Kim Shinwoo <kimcinoo.efl@gmail.com>
Kim Shinwoo [Fri, 28 Sep 2012 08:48:48 +0000 (08:48 +0000)]
From: Kim Shinwoo <kimcinoo.efl@gmail.com>
Subject: [E-devel] [patch][elementary] diskselector - checking middle
item

the diskselector object x-coordinate would not be 0.
but the _scroll_animate_stop_cb() calculates selected item with assumption
that the diskselector object x-coordinate is 0.
so different item which is not in middle of diskselector is selected.

SVN revision: 77182

11 years agofix indentation
Jaehwan Kim [Fri, 28 Sep 2012 04:23:29 +0000 (04:23 +0000)]
fix indentation

SVN revision: 77177

11 years agoAdd the toolbar API which expand the transverse length
Jaehwan Kim [Thu, 27 Sep 2012 03:05:50 +0000 (03:05 +0000)]
Add the toolbar API which expand the transverse length

SVN revision: 77107

11 years agoelementary: Fix uninitialized variable warning
Mike McCormack [Wed, 26 Sep 2012 19:53:53 +0000 (19:53 +0000)]
elementary: Fix uninitialized variable warning

Signed-off-by: Mike McCormack <mikem@atratus.org>
SVN revision: 77101

11 years agoelementary/transit - removed unnecessary line
ChunEon Park [Wed, 26 Sep 2012 09:15:34 +0000 (09:15 +0000)]
elementary/transit - removed unnecessary line

SVN revision: 77077

11 years agoupdating portuguese translations
Massimo Maiurana [Tue, 25 Sep 2012 10:53:34 +0000 (10:53 +0000)]
updating portuguese translations

SVN revision: 77052

11 years agoelementary: fix ChangeLog spacing.
Cedric BAIL [Tue, 25 Sep 2012 08:05:25 +0000 (08:05 +0000)]
elementary: fix ChangeLog spacing.

SVN revision: 77048

11 years agoelementary: escape theme filename correctly.
Cedric BAIL [Tue, 25 Sep 2012 08:04:17 +0000 (08:04 +0000)]
elementary: escape theme filename correctly.

SVN revision: 77046

11 years agoelementary_codegen: Improving the example
Flavio Vinicius Alvares Ceolin [Mon, 24 Sep 2012 19:52:44 +0000 (19:52 +0000)]
elementary_codegen: Improving the example

Adding a table to example to test the new set
of generated functions.

SVN revision: 77040

11 years agoelementary_codegen: Adding support for box and table
Flavio Vinicius Alvares Ceolin [Mon, 24 Sep 2012 19:52:22 +0000 (19:52 +0000)]
elementary_codegen: Adding support for box and table

Adding the follow functions if the part is a BOX:

   - elm_layout_box_append
   - elm_layout_box_prepend
   - elm_layout_box_insert_before
   - elm_layout_box_insert_at
   - elm_layout_box_remove
   - elm_layout_box_remove_all

or if the part is a TABLE:

   - elm_layout_table_pack
   - elm_layout_table_unpack
   - elm_layout_table_clear

SVN revision: 77039

11 years agodont blink curosr while not focused in elm and... make cursor a blink
Carsten Haitzler [Mon, 24 Sep 2012 14:45:54 +0000 (14:45 +0000)]
dont blink curosr while not focused in elm and... make cursor a blink
not fade - less wakeups :)

SVN revision: 77037

11 years agoelementary: build elm map correctly without Ecore_Con.
Cedric BAIL [Fri, 21 Sep 2012 13:12:02 +0000 (13:12 +0000)]
elementary: build elm map correctly without Ecore_Con.

SVN revision: 76968

11 years agoelementry/naviframe - [E-devel] Elc_Naviframe: Animation optimization patch
ChunEon Park [Fri, 21 Sep 2012 05:28:55 +0000 (05:28 +0000)]
elementry/naviframe - [E-devel] Elc_Naviframe: Animation optimization patch

Hi All,

Please find attached patch for naviframe animation optimization.
This patch makes sure animation happens smoothly even if content is heavy.
i.e, this patch makes sure animation is deferred so that it is visible(showing full transition time)
even if content takes more time in creation.

Change description:
Naviframe Animation optimization for smoother animation.

Signed-off by: Shilpa Singh<shilpa.singh@samsung.com>

Thanks & Regards
Shilpa Singh

SVN revision: 76929

11 years agoelementary - updated po
ChunEon Park [Fri, 21 Sep 2012 05:26:53 +0000 (05:26 +0000)]
elementary - updated po

SVN revision: 76928

11 years agoelm popup.edc: Fixed broken popup item. Spotted by Amit S <amit@smargav.com>. Special...
Daniel Juyung Seo [Fri, 21 Sep 2012 02:01:56 +0000 (02:01 +0000)]
elm popup.edc: Fixed broken popup item. Spotted by Amit S <amit@smargav.com>. Special thanks to Hermet as well.

SVN revision: 76926

11 years agoelm popup_example_03.c: Fixed wrong string.
Daniel Juyung Seo [Fri, 21 Sep 2012 00:18:03 +0000 (00:18 +0000)]
elm popup_example_03.c: Fixed wrong string.

SVN revision: 76925

11 years agoedje_codegen: Fixing a bug in the build system
Flavio Vinicius Alvares Ceolin [Thu, 20 Sep 2012 22:39:07 +0000 (22:39 +0000)]
edje_codegen: Fixing a bug in the build system

The name of the edc's example is codegen_example.edc and not
codegen.edc

Problem spotted by Sleep_Walker.

SVN revision: 76920

11 years agoelementary: Changelog
Michael BOUCHAUD [Thu, 20 Sep 2012 09:18:49 +0000 (09:18 +0000)]
elementary: Changelog

SVN revision: 76900

11 years agoelementary: fix wrong size calc when an item have setted tittle_visible_set to false
Michael BOUCHAUD [Thu, 20 Sep 2012 09:16:55 +0000 (09:16 +0000)]
elementary: fix wrong size calc when an item have setted tittle_visible_set to false

SVN revision: 76897

11 years agoelementary: Fixed show/hide direction for ctx-popup ui-mirroring
Aharon Hillel [Thu, 20 Sep 2012 08:13:28 +0000 (08:13 +0000)]
elementary: Fixed show/hide direction for ctx-popup ui-mirroring

Signed-off-by: Aharon Hillel <a.hillel@samsung.com>
SVN revision: 76892

11 years agoelm index: Fixed unused variable warnings.
Daniel Juyung Seo [Thu, 20 Sep 2012 00:49:07 +0000 (00:49 +0000)]
elm index: Fixed unused variable warnings.

SVN revision: 76879

11 years agoelementary: Fix unused variable warnings
Mike McCormack [Wed, 19 Sep 2012 21:01:01 +0000 (21:01 +0000)]
elementary: Fix unused variable warnings

Signed-off-by: Mike McCormack <mikem@atratus.org>
SVN revision: 76876

11 years agoelementary: fix resizing on naviframe when an item is poped (typo)
Michael BOUCHAUD [Wed, 19 Sep 2012 14:34:03 +0000 (14:34 +0000)]
elementary: fix resizing on naviframe when an item is poped (typo)

SVN revision: 76870

11 years agoelementary: Fixed elc_ctxpopup arrow for ui-mirroring
Aharon Hillel [Wed, 19 Sep 2012 13:00:00 +0000 (13:00 +0000)]
elementary: Fixed elc_ctxpopup arrow for ui-mirroring

Signed-off-by: Aharon Hillel <a.hillel@samsung.com>
SVN revision: 76861

11 years agoAdd reorder mode set/get API in Toolbar.
Jaehwan Kim [Wed, 19 Sep 2012 05:23:22 +0000 (05:23 +0000)]
Add reorder mode set/get API in Toolbar.

SVN revision: 76841

11 years agoelementary_config: Fix typo
Leandro Pereira [Tue, 18 Sep 2012 21:59:25 +0000 (21:59 +0000)]
elementary_config: Fix typo

SVN revision: 76839

11 years agoadding gl translations and updating it and pt
Massimo Maiurana [Tue, 18 Sep 2012 21:51:43 +0000 (21:51 +0000)]
adding gl translations and updating it and pt

SVN revision: 76838

11 years agoFrom: Kim Shinwoo <kimcinoo.efl@gmail.com>
Kim Shinwoo [Tue, 18 Sep 2012 10:56:19 +0000 (10:56 +0000)]
From: Kim Shinwoo <kimcinoo.efl@gmail.com>
Subject: [E-devel] [patch][access] bubble - access feature

the attached has access feature for bubble widget.
please review it and give some feedback. thanks.

SVN revision: 76798

11 years agomatching chlog
Carsten Haitzler [Mon, 17 Sep 2012 03:02:02 +0000 (03:02 +0000)]
matching chlog

SVN revision: 76718

11 years agoFrom: Kim Shinwoo <kimcinoo.efl@gmail.com>
Kim Shinwoo [Mon, 17 Sep 2012 03:01:46 +0000 (03:01 +0000)]
From: Kim Shinwoo <kimcinoo.efl@gmail.com>
Subject: [E-devel] [patch][elementary] access - activate widget
Subject: [E-devel] [Patch][elementary] scroller, slider - access
activate feature

the previous activate function just get object only. to activate scroller
or slider etc.. it needs more information. so the patch changed previous
activate(Evas_Object *obj) to activate(Evas_Object *obj, Elm_Activate act);
the Elm_Activate can be one of ELM_ACTIVATE_DEFAULT, UP, DOWN, RIGHT, and
LEFT.. you can add more if it is necessary.

I have attached two patches. one is for the slider and the other is for the
scoller.
this patch would support those who wants change value of slider or content
position of scroller on remote side.
this would be useful to the access side or voice control side also.

SVN revision: 76717

11 years agowhitespaces--
Vincent Torri [Sat, 15 Sep 2012 23:14:11 +0000 (23:14 +0000)]
whitespaces--

SVN revision: 76707

11 years agoupdating russian translation
Massimo Maiurana [Sat, 15 Sep 2012 19:43:25 +0000 (19:43 +0000)]
updating russian translation

SVN revision: 76705

11 years agoelm .gitignore: Updated .gitignore.
Daniel Juyung Seo [Fri, 14 Sep 2012 14:37:59 +0000 (14:37 +0000)]
elm .gitignore: Updated .gitignore.

SVN revision: 76673

11 years agoelm test_toolbar.c: Use more explicit variable name and function name.
Daniel Juyung Seo [Fri, 14 Sep 2012 14:37:54 +0000 (14:37 +0000)]
elm test_toolbar.c: Use more explicit variable name and function name.

SVN revision: 76672

11 years agoelm test: Removed unused variables. Fixed shadow warning.
Daniel Juyung Seo [Fri, 14 Sep 2012 14:37:46 +0000 (14:37 +0000)]
elm test: Removed unused variables. Fixed shadow warning.

SVN revision: 76671

11 years agoFrom: Kim Shinwoo <kimcinoo.efl@gmail.com>
Kim Shinwoo [Fri, 14 Sep 2012 13:30:18 +0000 (13:30 +0000)]
From: Kim Shinwoo <kimcinoo.efl@gmail.com>
Subject: [E-devel] [patch][elementary] bubble - text set does not
display info text part

current bubble dose not display 'info' which is TEXT part.
i have learned that the following commit would be reverted.
http://trac.enlightenment.org/e/changeset/71516/trunk/elementary/src/lib/elm_bubble.c
or remove 'else' from 'else if' on current
_elm_bubble_smart_text_set();.

anyhow i made a diff and attached. please find it and give feedback.
thanks.

SVN revision: 76669

11 years agoFrom: Doyoun Kang <doyoun.kang@samsung.com>
Doyoun Kang [Fri, 14 Sep 2012 13:06:57 +0000 (13:06 +0000)]
From: Doyoun Kang <doyoun.kang@samsung.com>
Subject: [E-devel] [patch] Add APIs for floating mode

I added APIs for supporting the floating mode -
elm_win_floating_mode_set, elm_win_floating_mode_get.
The floating mode will be used on mobile environment. For example, if
the video-player window set the floating mode, then e (enlightenment
window manager) changes it's geometry and handles it like a popup.
Please check these APIs and give an advice for me.

SVN revision: 76667

11 years agofix chglog person
Carsten Haitzler [Fri, 14 Sep 2012 03:04:07 +0000 (03:04 +0000)]
fix chglog person

SVN revision: 76636

11 years agoerrr elm codegen - lets link like the rest of elm bins eh?
Carsten Haitzler [Thu, 13 Sep 2012 23:15:49 +0000 (23:15 +0000)]
errr elm codegen - lets link like the rest of elm bins eh?

SVN revision: 76630

11 years agoelementary_codegen: Adding a basic example
Flavio Vinicius Alvares Ceolin [Thu, 13 Sep 2012 14:06:45 +0000 (14:06 +0000)]
elementary_codegen: Adding a basic example

Just adding an example showing how to using the codegen.

SVN revision: 76615

11 years agoelementary_codegen: generating source code from edj
Flavio Vinicius Alvares Ceolin [Thu, 13 Sep 2012 14:06:07 +0000 (14:06 +0000)]
elementary_codegen: generating source code from edj

Parsing the parts and programs of the specified group and generating
the header/source. Usage:
elementary_codegen --prefix myapp_myobj input.edj a_group source.c header.h

SVN revision: 76614

11 years agoFrom: PRINCE KUMAR DUBEY <prince.dubey@samsung.com>
PRINCE KUMAR DUBEY [Thu, 13 Sep 2012 11:55:24 +0000 (11:55 +0000)]
From: PRINCE KUMAR DUBEY <prince.dubey@samsung.com>
Subject: [E-devel] [Patch] [Elementary] Support for circular effect in
elm_diskselector, in case scroller's bounce effect is disabled.

Can someone please review the attached patch created by Sumanth.

[Issue Details] :
elm_diskselector_round_enable_set() API is not working, if
elm_scroller's bounce effect is disabled.

[Root cause] :
For diskselector circular effect, the boundary checking is done based
on scroller's geometry.
If bouncing effect is disabled in elm_scroller, its geometry can lie
between 0 on left and CHILD_SIZE on right but it can never go beyond
that point.
Unless the scroller's geometry goes beyond its child (here, elm_box)
size, diskselector cann't trigger the circular effect.

[Change Description] :
For diskselector items circular effect, the boundary checking is
performed at the left/right edges of its child, elm_box.
Once the scroller reaches to the left/right edge of box or goes beyond
that point, circular effect will be triggered.

SVN revision: 76606

11 years agounknonw direction actually should just be handled in default - skip
Carsten Haitzler [Thu, 13 Sep 2012 08:31:29 +0000 (08:31 +0000)]
unknonw direction actually should just be handled in default - skip
that direction and go to the next one.

SVN revision: 76589

11 years agofix plug's min/max value reset
Jiyoun Park [Thu, 13 Sep 2012 06:15:11 +0000 (06:15 +0000)]
fix plug's min/max value reset

SVN revision: 76575

11 years agoyes with embryo :D
Davide Andreoli [Wed, 12 Sep 2012 20:51:06 +0000 (20:51 +0000)]
yes with embryo :D

SVN revision: 76559

11 years ago* Add external property "play length" to Video widget and fix the test accordingly
Davide Andreoli [Wed, 12 Sep 2012 20:30:17 +0000 (20:30 +0000)]
* Add external property "play length" to Video widget and fix the test accordingly

also fix ChangeLog whitespacing: every news need a single tab

SVN revision: 76557

11 years agoNew external test: video player in pure edje
Davide Andreoli [Wed, 12 Sep 2012 19:26:50 +0000 (19:26 +0000)]
New external test: video player in pure edje

SVN revision: 76554

11 years ago[elm] Fix missing icon on Genlist 'double_label' theme for consistency.
Gustavo Lima Chaves [Wed, 12 Sep 2012 17:01:34 +0000 (17:01 +0000)]
[elm] Fix missing icon on Genlist 'double_label' theme for consistency.

Patch by João Paulo Fernandes Ventura.

SVN revision: 76549

11 years agofix bug. plug can retry several times
Jiyoun Park [Wed, 12 Sep 2012 16:11:40 +0000 (16:11 +0000)]
fix bug. plug can retry several times

SVN revision: 76541

11 years agoAdd image deleted signal into plug. it help user notice socket service
Jiyoun Park [Wed, 12 Sep 2012 16:03:03 +0000 (16:03 +0000)]
Add image deleted signal into plug. it help user notice socket service
ail and they can retry service connection. and add test code deal with this signal.

SVN revision: 76539

11 years agosupport indicator service using elm config.
Jiyoun Park [Wed, 12 Sep 2012 14:08:26 +0000 (14:08 +0000)]
support indicator service using elm config.
using this, we can establish indicator service.
I'll implement more indicator service feature using elm_plug and elm_compoment.
after finishing all indicator and compoment feature I will add change log and news

SVN revision: 76533

11 years agoFrom: Kim Shinwoo <kimcinoo.efl@gmail.com>
Kim Shinwoo [Wed, 12 Sep 2012 13:44:27 +0000 (13:44 +0000)]
From: Kim Shinwoo <kimcinoo.efl@gmail.com>
Subject: [E-devel] [patch][elementary] index - add access feature

the attachment has access features for the index. and this patch is
depends
on the previous patch which has
_elm_access_edje_object_part_object_unregister();
to find the previous patch, please refer to the following

http://sourceforge.net/mailarchive/forum.php?thread_name=CAP-c0nG8NkMx3J-YkSJnWdB23cWOPrtk1Rx10Lae0Zwxst1eeQ%40mail.gmail.com&forum_name=enlightenment-devel

the index could have two levels, one is level 0, the other is level 1.
the
patch supports only level 0 because we have no style for the level 1..
(just a cowardly excuse, i will keep up with this.. and update..)

SVN revision: 76532

11 years agoElm datetime-module: Fixed Makefile.am to work with emap.
Tom Hacohen [Wed, 12 Sep 2012 13:34:05 +0000 (13:34 +0000)]
Elm datetime-module: Fixed Makefile.am to work with emap.

Patch by Yakov Goldberg.

SVN revision: 76528

11 years agoFrom: Kim Shinwoo <kimcinoo.efl@gmail.com>
Kim Shinwoo [Wed, 12 Sep 2012 08:46:10 +0000 (08:46 +0000)]
From: Kim Shinwoo <kimcinoo.efl@gmail.com>
Subject: [E-devel] [patch][elementary] diskselector - text align issue

by default diskselector item has space for icon even though the item does
not have icon.
so in some cases, the text is not located in the center of item and
diskselector.
the attachment would resolve this issue. please look into it and give
feedback. thanks.

SVN revision: 76507

11 years agoFrom: thiep ha <thiep.ha@samsung.com>
thiep ha [Wed, 12 Sep 2012 08:35:42 +0000 (08:35 +0000)]
From: thiep ha <thiep.ha@samsung.com>
Subject: [E-devel] [Patch] [Elementary] ctxpopup - correct position
and size of ctxpopup

With ctxpopup, if it has many items and user uses -1 as parameter in
set direction priority function,
the ctxpopup position and size are calculated incorrectly.
Ex:
elm_ctxpopup_direction_priority_set(ctxpopup,
ELM_CTXPOPUP_DIRECTION_DOWN, ELM_CTXPOPUP_DIRECTION_UP, -1, -1);

SVN revision: 76505

11 years agoFrom: Kim Shinwoo <kimcinoo.efl@gmail.com>
Kim Shinwoo [Wed, 12 Sep 2012 08:25:10 +0000 (08:25 +0000)]
From: Kim Shinwoo <kimcinoo.efl@gmail.com>
Subject: [E-devel] [patch][elementary] calendar - add access feature,
access - add _elm_access_edje_object_part_object_unregister();

the attachment has accessibility feature which is for the
elm_calendar. and
moreover..
it would be better to keep one more api for the access which name is
_elm_access_edje_object_part_object_unregister();
in the case of calendar item, its text part could be set with empty
value
in run time(dynamically), even though it had a value (1~31) previously.
so if there is an empty field(item), then previously registered item
should
be unregistered. the api would be useful not only this case but also
others.
then, please review the patch and give feedback. thanks.

SVN revision: 76502

11 years agofix fmting :)
Carsten Haitzler [Wed, 12 Sep 2012 08:23:11 +0000 (08:23 +0000)]
fix fmting :)

SVN revision: 76501

11 years agoelementary/datetime : Ctxpopup should be hidden when datetime is
WooHyun Jung [Wed, 12 Sep 2012 06:18:43 +0000 (06:18 +0000)]
elementary/datetime : Ctxpopup should be hidden when datetime is
unfocused.

SVN revision: 76489

11 years agoThe hidden signal is emitted when the icon or text is hidden.
Jaehwan Kim [Wed, 12 Sep 2012 05:30:35 +0000 (05:30 +0000)]
The hidden signal is emitted when the icon or text is hidden.

SVN revision: 76488

11 years agoWhen the number of item is changed, the toolbar emits the signal to theme.
Jaehwan Kim [Wed, 12 Sep 2012 05:15:43 +0000 (05:15 +0000)]
When the number of item is changed, the toolbar emits the signal to theme.
The theme can be changed something according the number of item.

SVN revision: 76487

11 years agoelementary/ctxpopup : Rollback 76452. Ctxpopup seemed to be bad with
WooHyun Jung [Wed, 12 Sep 2012 04:34:08 +0000 (04:34 +0000)]
elementary/ctxpopup : Rollback 76452. Ctxpopup seemed to be bad with
this modification. (please see the datetime in elementary_test)

SVN revision: 76486

11 years agoelementary: add elm_calendar_selectable_set
Michael BOUCHAUD [Tue, 11 Sep 2012 21:33:54 +0000 (21:33 +0000)]
elementary: add elm_calendar_selectable_set

SVN revision: 76478

11 years agoElm layout: remove !obj check from ELM_LAYOUT_CHECK.
Tom Hacohen [Tue, 11 Sep 2012 14:25:30 +0000 (14:25 +0000)]
Elm layout: remove !obj check from ELM_LAYOUT_CHECK.

This is already handled in elm_widget_type_check, and there it actually
prints an error message, like it should.
Patch by Daniel Zaoui.

SVN revision: 76461

11 years agoelementary/ctxpopup - correct position and size of ctxpopup
ChunEon Park [Tue, 11 Sep 2012 10:29:48 +0000 (10:29 +0000)]
elementary/ctxpopup - correct position and size of ctxpopup

Dear all,

With ctxpopup, if it has many items and user uses -1 as parameter in set direction priority function,
the ctxpopup position and size are calculated incorrectly.
Ex:
elm_ctxpopup_direction_priority_set(ctxpopup, ELM_CTXPOPUP_DIRECTION_DOWN, ELM_CTXPOPUP_DIRECTION_UP, -1, -1);

I would like to send a small patch to fix this issue.
Please take a look on it.

Thanks & Regards,
Thiep Ha

Signed-Off-By: Thiep ha<thiep.ha@samsung.com>
SVN revision: 76452

11 years agoelementary/colorselector - removed unnecessary lines
ChunEon Park [Tue, 11 Sep 2012 05:17:06 +0000 (05:17 +0000)]
elementary/colorselector - removed unnecessary lines

SVN revision: 76437

11 years agoelementary/colorselector - inherit colorselector right button
ChunEon Park [Tue, 11 Sep 2012 05:11:36 +0000 (05:11 +0000)]
elementary/colorselector - inherit colorselector right button

SVN revision: 76436

11 years agoelementary/naviframe - some modification on test
ChunEon Park [Tue, 11 Sep 2012 01:48:53 +0000 (01:48 +0000)]
elementary/naviframe - some modification on test

SVN revision: 76424

11 years agonaviframe - Even if the top item is inserted into Naviframe, any transition wouldn...
ChunEon Park [Tue, 11 Sep 2012 01:48:00 +0000 (01:48 +0000)]
naviframe - Even if the top item is inserted into Naviframe, any transition wouldn't be launched as before it did.

SVN revision: 76423

11 years agoAnother external test: progress bar.
Davide Andreoli [Mon, 10 Sep 2012 21:48:56 +0000 (21:48 +0000)]
Another external test: progress bar.
This test also show how to access the external widgets from C code and also directly from embryo :)

SVN revision: 76422

11 years agojust indentation
Davide Andreoli [Mon, 10 Sep 2012 19:21:56 +0000 (19:21 +0000)]
just indentation

SVN revision: 76421

11 years agoNew test for external widget: scroller.
Davide Andreoli [Mon, 10 Sep 2012 19:17:19 +0000 (19:17 +0000)]
New test for external widget: scroller.
Lots of bug here, but it's probably a corner-case-test

SVN revision: 76420

11 years ago[elm] Properly fix the scroller API entry issue.
Gustavo Lima Chaves [Mon, 10 Sep 2012 14:06:53 +0000 (14:06 +0000)]
[elm] Properly fix the scroller API entry issue.

SVN revision: 76408

11 years ago[elm] Check for scrollable, not scroller, on these elm_scroller.c calls.
Gustavo Lima Chaves [Mon, 10 Sep 2012 13:52:36 +0000 (13:52 +0000)]
[elm] Check for scrollable, not scroller, on these elm_scroller.c calls.

SVN revision: 76406

11 years agoelementary/naviframe - modified some test case
ChunEon Park [Mon, 10 Sep 2012 11:39:46 +0000 (11:39 +0000)]
elementary/naviframe - modified some test case

SVN revision: 76395