platform/upstream/elementary.git
11 years agonaviframe: always keep title centered
Gustavo Sverzut Barbieri [Thu, 26 Jul 2012 20:50:34 +0000 (20:50 +0000)]
naviframe: always keep title centered

if there is a button, consider the same amount on the other side, even
if there is no button in there, limited to the maximum button size
(100px). It's not optimal, but looks less ugly.

SVN revision: 74451

11 years agonaviframe: improve automatic previous button without breaking compatibility.
Gustavo Sverzut Barbieri [Thu, 26 Jul 2012 19:39:10 +0000 (19:39 +0000)]
naviframe: improve automatic previous button without breaking compatibility.

proper fix instead of r74428.

SVN revision: 74450

11 years agonaviframe: fix missing clips spotted by elementary_config.
Gustavo Sverzut Barbieri [Thu, 26 Jul 2012 19:21:27 +0000 (19:21 +0000)]
naviframe: fix missing clips spotted by elementary_config.

as Tasn reported elementary_config was broken as the naviframe title
was covering the toolbar. This was due its usage of
elm_naviframe_item_simple_push() that uses
elm_naviframe_item_title_visible_set(FALSE) and a missing clipper on
my part.

SVN revision: 74449

11 years agolets not break theme api :( sorry. :(
Carsten Haitzler [Thu, 26 Jul 2012 09:10:25 +0000 (09:10 +0000)]
lets not break theme api :( sorry. :(

SVN revision: 74428

11 years agosetitng min/max size hint on an elm obj actually should not be done
Carsten Haitzler [Thu, 26 Jul 2012 06:41:22 +0000 (06:41 +0000)]
setitng min/max size hint on an elm obj actually should not be done
because elm controls these itself. examples all wrong in thsi regard.
fix!

SVN revision: 74414

11 years agoelm genlist: Enhance genlist item unrealize performance by
Daniel Juyung Seo [Thu, 26 Jul 2012 05:50:31 +0000 (05:50 +0000)]
elm genlist: Enhance genlist item unrealize performance by
initializing text parts first. Patch by Bluezery <ohpowel@gmail.com>

On Thu, Jul 26, 2012 at 2:29 PM, Bluezery <ohpowel@gmail.com> wrote:
> Hello,
>
> This patch make genlist free their text parts when each item is
unrealized.
> Before this patch, the item is just cached when an item is unrealized
> and the text part is freed and set by other text when the cached item
> is realized.
> This improves scrolling performance with very long text because this
> can reduce needless edje size recalculation time.
>  Please review this patch.
>

SVN revision: 74413

11 years agoelm genlist: Fixed garbage item issue in decorate all mode.
Daniel Juyung Seo [Thu, 26 Jul 2012 05:50:21 +0000 (05:50 +0000)]
elm genlist: Fixed garbage item issue in decorate all mode.

This fixes "elm - genlist decorate all mode on and scroll - garbage
items left around."

Note: Do not manipulate swallowed items. Unswallow it first then
manipulate it.

SVN revision: 74412

11 years agoelementary/elm_toolbar : Toolbar didn't get key_down event because
WooHyun Jung [Thu, 26 Jul 2012 04:36:12 +0000 (04:36 +0000)]
elementary/elm_toolbar : Toolbar didn't get key_down event because
there was no evas focus. And add event_hook for JaeHwan :)

SVN revision: 74411

11 years agonaviframe - removed unnecessary line
ChunEon Park [Thu, 26 Jul 2012 04:26:31 +0000 (04:26 +0000)]
naviframe - removed unnecessary line

SVN revision: 74410

11 years agoFrom: Kim Shinwoo <kimcinoo.efl@gmail.com>
Kim Shinwoo [Thu, 26 Jul 2012 03:57:25 +0000 (03:57 +0000)]
From: Kim Shinwoo <kimcinoo.efl@gmail.com>
Subject: [E-devel] [patch][elementary] popup - getting proper geometry value]

current popup does not give proper geometry value,
evas_object_geometry_get(popup, &x, &y, &w, &h) gives 0, 0, 0, 0.
the patch resolves it, but it would be not a good way to get geometry
value. which is the best way to set obj->cur.geometry.x(y,w,h)?
please enlighten me. thanks.

SVN revision: 74409

11 years agosegment control: improve test, show broken theme.
Gustavo Sverzut Barbieri [Wed, 25 Jul 2012 22:42:21 +0000 (22:42 +0000)]
segment control: improve test, show broken theme.

segment control theme is broken and non-standard. It should be like a
button in internals.

SVN revision: 74407

11 years ago[elm] One more scrolling hook that must be there
Gustavo Lima Chaves [Wed, 25 Jul 2012 22:03:15 +0000 (22:03 +0000)]
[elm] One more scrolling hook that must be there
 till I address it.

SVN revision: 74406

11 years ago[elm] Some oopsies--.
Gustavo Lima Chaves [Wed, 25 Jul 2012 22:03:07 +0000 (22:03 +0000)]
[elm] Some oopsies--.

SVN revision: 74405

11 years agocheck: fix visual annoyances for toggle.
Gustavo Sverzut Barbieri [Wed, 25 Jul 2012 22:02:29 +0000 (22:02 +0000)]
check: fix visual annoyances for toggle.

toggle was clipping the drag knob and this always annoyed me. Now it's
on top of frame and makes me happy.

SVN revision: 74404

11 years agonaviframe improvements:
Gustavo Sverzut Barbieri [Wed, 25 Jul 2012 21:08:53 +0000 (21:08 +0000)]
naviframe improvements:

 - fixed theme to look less like an arse:
    - overlap theme is translucent
    - naviframe title visibility toggle is now animated
    - item pop/push animation now applies to title area as well
    - icon without title label is now centered (see Naviframe 2 test)
    - title label and subtitle are now centered among the free space, should not overlap buttons anymore.
    - title will use a font-size range, trying to not overlap buttons anymore.
    - title will use ellipsis, trying to not overlap buttons anymore.
    - prev/next buttons do not have a fixed min/max size anymore
 - emit signals elm,state,title_label,show and elm,state,title_label,hide
 - by default the previous button label is the title of the previous page

however by using a regular elm_button with an icon and long label
exposes a bug with button theme. And there is a conceptual issue: if
the previous button label is too big, it will look horrible. We should
have a maximum size that, if reached, should have ellipsis. This
should be a different elm_button style, with
elm/button/base/naviframe/back_btn/default being an alias to it.

SVN revision: 74403

11 years agoelm genlist.h: Added more description about elm_genlist_homogeneous_set.
Daniel Juyung Seo [Wed, 25 Jul 2012 21:07:54 +0000 (21:07 +0000)]
elm genlist.h: Added more description about elm_genlist_homogeneous_set.

SVN revision: 74402

11 years agonaviframe: back button text defaults to previous page title.
Gustavo Sverzut Barbieri [Wed, 25 Jul 2012 17:38:48 +0000 (17:38 +0000)]
naviframe: back button text defaults to previous page title.

SVN revision: 74401

11 years agotest_naviframe: use standard icons, recommended elm_layout_content_set().
Gustavo Sverzut Barbieri [Wed, 25 Jul 2012 17:29:17 +0000 (17:29 +0000)]
test_naviframe: use standard icons, recommended elm_layout_content_set().

SVN revision: 74400

11 years agonaviframe: improve default back button.
Gustavo Sverzut Barbieri [Wed, 25 Jul 2012 17:20:34 +0000 (17:20 +0000)]
naviframe: improve default back button.

back button now uses standard icon "arrow_left", and provides a "Back"
text that should be translated with the application.

Then we can define the elm/button/base/naviframe/back_btn/default as
an alias to the default button. If a theme wants it could still
provide an alternative button. IOW no breaks.

SVN revision: 74399

11 years agoelm: fix typos
Jihoon Kim [Wed, 25 Jul 2012 14:55:04 +0000 (14:55 +0000)]
elm: fix typos

SVN revision: 74397

11 years ago[elm] Apparently I missed part aliasing for the
Gustavo Lima Chaves [Wed, 25 Jul 2012 14:39:03 +0000 (14:39 +0000)]
[elm] Apparently I missed part aliasing for the
 alien naviframe case.

SVN revision: 74395

11 years agofix fileselctor to not display > next to files... in expand mode.
Carsten Haitzler [Wed, 25 Jul 2012 11:19:59 +0000 (11:19 +0000)]
fix fileselctor to not display > next to files... in expand mode.

SVN revision: 74386

11 years agofix player theme to work in both illume and standard and not be
Carsten Haitzler [Wed, 25 Jul 2012 11:11:51 +0000 (11:11 +0000)]
fix player theme to work in both illume and standard and not be
unusable/look like arse

SVN revision: 74385

11 years agoelementary / elc_popup : Add focus direction for popup.
WooHyun Jung [Wed, 25 Jul 2012 10:28:51 +0000 (10:28 +0000)]
elementary / elc_popup : Add focus direction for popup.

SVN revision: 74383

11 years agooops printf--
Carsten Haitzler [Wed, 25 Jul 2012 10:00:25 +0000 (10:00 +0000)]
oops printf--

SVN revision: 74381

11 years agofix auicklaunch to transport environment as well as args. fixes
Carsten Haitzler [Wed, 25 Jul 2012 09:56:00 +0000 (09:56 +0000)]
fix auicklaunch to transport environment as well as args. fixes
startup id tracking for e.

SVN revision: 74380

11 years agoelm test_genlist.c: Fix wrong callback name.
Daniel Juyung Seo [Wed, 25 Jul 2012 05:03:53 +0000 (05:03 +0000)]
elm test_genlist.c: Fix wrong callback name.

SVN revision: 74370

11 years agoelementary/elm_widget : focus_region function in elm_scroller was not
WooHyun Jung [Wed, 25 Jul 2012 02:43:32 +0000 (02:43 +0000)]
elementary/elm_widget : focus_region function in elm_scroller was not
executed because of _elm_legacy_is always returned EINA_FALSE. So I removed
it.

SVN revision: 74367

11 years agoelementary/elm_scroller : Focus direction failed on elm_scroller.
WooHyun Jung [Wed, 25 Jul 2012 02:39:33 +0000 (02:39 +0000)]
elementary/elm_scroller : Focus direction failed on elm_scroller.
So I fixed.

SVN revision: 74366

11 years ago[elm] fix typos in elementary_test
Jihoon Kim [Wed, 25 Jul 2012 01:52:43 +0000 (01:52 +0000)]
[elm] fix typos in elementary_test

SVN revision: 74362

11 years agoflip: proper api: elm_flip_go_to().
Gustavo Sverzut Barbieri [Tue, 24 Jul 2012 21:57:11 +0000 (21:57 +0000)]
flip: proper api: elm_flip_go_to().

In real world it's very likely you're flipping to something, back or
front, not randomly flipping around based on one button.

I'd say we should deprecate the elm_flip_go().

SVN revision: 74360

11 years agoflip: make quick sequence of "go" work.
Gustavo Sverzut Barbieri [Tue, 24 Jul 2012 21:39:12 +0000 (21:39 +0000)]
flip: make quick sequence of "go" work.

whenever we "go" flip while flipping, we'll enter an inconsitent
state. We should detect where to flip and flip back if required.

Test: go to "Flip" test, click "1" button twice, before the first
animation ends.

SVN revision: 74359

11 years ago[elm] Also don't advertise this type on our tree
Gustavo Lima Chaves [Tue, 24 Jul 2012 17:34:06 +0000 (17:34 +0000)]
[elm] Also don't advertise this type on our tree
 figures.

SVN revision: 74358

11 years ago[elm] This must be an internal object.
Gustavo Lima Chaves [Tue, 24 Jul 2012 17:33:58 +0000 (17:33 +0000)]
[elm] This must be an internal object.

SVN revision: 74357

11 years agoprintf--
Carsten Haitzler [Tue, 24 Jul 2012 09:35:27 +0000 (09:35 +0000)]
printf--

SVN revision: 74349

11 years agofix layer bug with floating popup object in slider i added just before
Carsten Haitzler [Tue, 24 Jul 2012 04:59:45 +0000 (04:59 +0000)]
fix layer bug with floating popup object in slider i added just before
freeze.

SVN revision: 74343

11 years agofix name of title/name of 3d test window
Carsten Haitzler [Tue, 24 Jul 2012 04:35:08 +0000 (04:35 +0000)]
fix name of title/name of 3d test window

SVN revision: 74341

11 years agoelm genlist.h: Added more description for elm_genlist_item_update.
Daniel Juyung Seo [Tue, 24 Jul 2012 03:08:10 +0000 (03:08 +0000)]
elm genlist.h: Added more description for elm_genlist_item_update.

SVN revision: 74335

11 years agoelementary/scroller - Fixed scroller to not have the hold flag which causes the edje...
ChunEon Park [Tue, 24 Jul 2012 02:35:25 +0000 (02:35 +0000)]
elementary/scroller - Fixed scroller to not have the hold flag which causes the edje object up event block.

Please review this patch I don't know the intention why did someone add this flags on mouse up in scroller.

Anyhow I tested and works fine.

SVN revision: 74334

12 years agofix segv on popup... with items. infinite stack blow. but oh my there
Carsten Haitzler [Mon, 23 Jul 2012 12:35:48 +0000 (12:35 +0000)]
fix segv on popup... with items. infinite stack blow. but oh my there
is so much more to fix.. i don't know where to begin.

SVN revision: 74324

12 years agoelementary - Updated Changelog
ChunEon Park [Mon, 23 Jul 2012 11:16:42 +0000 (11:16 +0000)]
elementary - Updated Changelog

SVN revision: 74320

12 years agoelementary/win - fixed invalid sd memory access catched by valgrind.
ChunEon Park [Mon, 23 Jul 2012 08:23:01 +0000 (08:23 +0000)]
elementary/win - fixed invalid sd memory access catched by valgrind.

now, more simple and clear!

SVN revision: 74310

12 years agoThe label should be inserted and the visible signal should be emitted, only when...
Jaehwan Kim [Mon, 23 Jul 2012 01:59:41 +0000 (01:59 +0000)]
The label should be inserted and the visible signal should be emitted, only when the text exists.

SVN revision: 74304

12 years ago[elm] Oopsie--.
Gustavo Lima Chaves [Fri, 20 Jul 2012 20:38:18 +0000 (20:38 +0000)]
[elm] Oopsie--.

SVN revision: 74259

12 years ago[elm] Fix changed API call for webkit.
Gustavo Lima Chaves [Fri, 20 Jul 2012 14:58:39 +0000 (14:58 +0000)]
[elm] Fix changed API call for webkit.

SVN revision: 74256

12 years ago[elm] Fix on focus handle on photocam.
Gustavo Lima Chaves [Fri, 20 Jul 2012 14:58:33 +0000 (14:58 +0000)]
[elm] Fix on focus handle on photocam.

SVN revision: 74255

12 years ago[elm] Removing unused var.
Gustavo Lima Chaves [Fri, 20 Jul 2012 14:58:21 +0000 (14:58 +0000)]
[elm] Removing unused var.

SVN revision: 74254

12 years agofix OTHER segv in colorselector! the one cedric didn't find!
Carsten Haitzler [Fri, 20 Jul 2012 10:08:08 +0000 (10:08 +0000)]
fix OTHER segv in colorselector! the one cedric didn't find!

SVN revision: 74228

12 years agolets not have the getsure layer 3 test us ea timer - bad bad bad style
Carsten Haitzler [Fri, 20 Jul 2012 08:42:52 +0000 (08:42 +0000)]
lets not have the getsure layer 3 test us ea timer - bad bad bad style
and jerky anim! :(

SVN revision: 74220

12 years agofix transit to expect elm_icon not icon due to internal type name changes.
Carsten Haitzler [Fri, 20 Jul 2012 08:10:44 +0000 (08:10 +0000)]
fix transit to expect elm_icon not icon due to internal type name changes.

SVN revision: 74216

12 years agofix diskselector if figner size small.
Carsten Haitzler [Fri, 20 Jul 2012 08:01:59 +0000 (08:01 +0000)]
fix diskselector if figner size small.

SVN revision: 74215

12 years agoelementary: fix erroneous memory access.
Cedric BAIL [Fri, 20 Jul 2012 04:20:06 +0000 (04:20 +0000)]
elementary: fix erroneous memory access.

One more pack of beer for the Valgrind developer !

SVN revision: 74202

12 years ago[elm] This file was not meant to exist.
Gustavo Lima Chaves [Thu, 19 Jul 2012 20:26:35 +0000 (20:26 +0000)]
[elm] This file was not meant to exist.

SVN revision: 74195

12 years ago[elm] Map now using the scrollable interface.
Gustavo Lima Chaves [Thu, 19 Jul 2012 20:26:09 +0000 (20:26 +0000)]
[elm] Map now using the scrollable interface.

SVN revision: 74194

12 years agoelementary: prevent the hook to mess with the event object property.
Cedric BAIL [Thu, 19 Jul 2012 09:25:04 +0000 (09:25 +0000)]
elementary: prevent the hook to mess with the event object property.

SVN revision: 74175

12 years agoelementary: call this on the samrt object.
Cedric BAIL [Thu, 19 Jul 2012 09:24:29 +0000 (09:24 +0000)]
elementary: call this on the samrt object.

SVN revision: 74174

12 years agoFrom: Seunggyun Kim <sgyun.kim@samsung.com>
Seunggyun Kim [Thu, 19 Jul 2012 08:10:02 +0000 (08:10 +0000)]
From: Seunggyun Kim <sgyun.kim@samsung.com>
Subject: [E-devel] [PATCH] elm_icon is disappeared when theme hook is
called.

[Current Issue]
 - The elm_icon can be disappeared when theme hook is called.
    You can see the problem in the below situation.
        a) elementary_test -> Layout select
            b) elementary_config -> Fonts(toolbar) -> select some font
class, font,
style, size
    c) Select "Apply" button
       then two icons in title layout are disappeared.

       [Main cause]
        - when theme hook is called, internally
_elm_image_smart_sizing_eval
function is called.
   The function calculates icon's min, max size.
      But min, max size is calculated  only in case no_scale is true or
      resize_down or resize_up is false.
         If application isn't set no_scale or resize_down/up, minw and
minh value
is just -1.
   So when theme hooks is called then sizing_eval is called, icon's
min size
is -1 and that is disappeared.

[Change Description]
 - I just added evas_object_size_hint_min_get(obj, &minw, minh) in
 _elm_image_smart_sizing_eval.
     Patch is working well, but I don't think this is right solution
because
that would break image(icon) min,max concept

SVN revision: 74163

12 years agocommit patch from:
Carsten Haitzler [Thu, 19 Jul 2012 07:37:48 +0000 (07:37 +0000)]
commit patch from:

http://trac.enlightenment.org/e/ticket/1174

SVN revision: 74161

12 years ago1. datetime font should be sanes, not slp, size 10, and
Carsten Haitzler [Thu, 19 Jul 2012 07:20:06 +0000 (07:20 +0000)]
1. datetime font should be sanes, not slp, size 10, and
2. diskselector belongs in diskselector, not datetime edc.

SVN revision: 74160

12 years agoadd missing bureaucracy.
Gustavo Sverzut Barbieri [Thu, 19 Jul 2012 04:47:20 +0000 (04:47 +0000)]
add missing bureaucracy.

thanks vtorri, our restless monitor of forgotten files, changelog,
news and @since.

SVN revision: 74158

12 years agoelm_win: support trapping ecore_evas calls (aka: e17 support)
Gustavo Sverzut Barbieri [Thu, 19 Jul 2012 04:35:50 +0000 (04:35 +0000)]
elm_win: support trapping ecore_evas calls (aka: e17 support)

Allows setting a trap in elm_win that intercepts calls to
ecore_evas. If there is a trap and the trap returns EINA_FALSE, then
the corresponding call is NOT issued. If it does not exist or returns
EINA_TRUE, then the call is executed.

Enlightenment window manager will set these traps and will call
e_border directly, allowing E17 to use Elementary! A major feature
given e_widgets painful usage.

This should also help integrating into Wayland or even debug.

SVN revision: 74156

12 years ago[elm] Fix bad timer usage on notify.
Gustavo Lima Chaves [Wed, 18 Jul 2012 21:03:58 +0000 (21:03 +0000)]
[elm] Fix bad timer usage on notify.

SVN revision: 74151

12 years ago[elm] Cosmetic.
Gustavo Lima Chaves [Wed, 18 Jul 2012 21:03:51 +0000 (21:03 +0000)]
[elm] Cosmetic.

SVN revision: 74150

12 years ago[elm] Fix bad gengrid porting on a function.
Gustavo Lima Chaves [Wed, 18 Jul 2012 21:03:46 +0000 (21:03 +0000)]
[elm] Fix bad gengrid porting on a function.

SVN revision: 74149

12 years ago[elm] New elm_widget_add() usage spread.
Gustavo Lima Chaves [Wed, 18 Jul 2012 21:03:39 +0000 (21:03 +0000)]
[elm] New elm_widget_add() usage spread.

SVN revision: 74148

12 years ago[elm] New infra to help factorize initting code for
Gustavo Lima Chaves [Wed, 18 Jul 2012 21:03:28 +0000 (21:03 +0000)]
[elm] New infra to help factorize initting code for
 widgets.

Some of them have initting code using the parent ptr for some logic.
Now there's a new idiom on instantiating widgets which adresses
that. It'll be used for all widgets from now on.

SVN revision: 74147

12 years ago[elm] Let's not depend on layout calls inside the
Gustavo Lima Chaves [Wed, 18 Jul 2012 17:09:51 +0000 (17:09 +0000)]
[elm] Let's not depend on layout calls inside the
 interface.

SVN revision: 74075

12 years agoelm elm_list.h: Fix typo pointed out by Goffi on irc.
Daniel Juyung Seo [Wed, 18 Jul 2012 13:24:45 +0000 (13:24 +0000)]
elm elm_list.h: Fix typo pointed out by Goffi on irc.

SVN revision: 74069

12 years agoelementary/mapbuf - Fix the mapbuf to resize the contents(smart obj) correctly.
ChunEon Park [Wed, 18 Jul 2012 12:36:09 +0000 (12:36 +0000)]
elementary/mapbuf - Fix the mapbuf to resize the contents(smart obj) correctly.

When smart obj was set as the contents the _configure would be called recursively.
In this process the lastest size could be reverted as the previous one.

SVN revision: 74064

12 years agoelementary/mapbuf - more proper size for test
ChunEon Park [Wed, 18 Jul 2012 11:43:02 +0000 (11:43 +0000)]
elementary/mapbuf - more proper size for test

SVN revision: 74059

12 years agofix flipselector theme to not lose chars. amazing it degraded so
Carsten Haitzler [Wed, 18 Jul 2012 11:06:25 +0000 (11:06 +0000)]
fix flipselector theme to not lose chars. amazing it degraded so
gracefully in the first place! :)

SVN revision: 74056

12 years agoFrom: yan.wang@linux.intel.com
yan.wang [Wed, 18 Jul 2012 08:27:52 +0000 (08:27 +0000)]
From: yan.wang@linux.intel.com
Subject: [E-devel] [PATCH] Add frame size when calculating minimized
elm_win size

Hi,
  I found frame size including width and height isn't counted in
  _elm_win_resize_objects_eval() when calculating minimized elm_window
  size.
    It is OK for X engine because elementary only draw client area and X
    provides widow frame. So both the width and height from
    evas_output_framespace_get are 0.
      But it cause bug for wayland engine because elementary need draw
window
frame by itself. So real client area size is smaller than window size.
If frame size isn't counted into minimized window size, there isn't
enough client area to layout widgets.
  So it is bug for any engine in which elementary draws window frame by
  itself. It is the reason of
http://trac.enlightenment.org/e/ticket/1064.
  Could you please my attached patch for this issue?
    Thanks.

SVN revision: 74049

12 years agoclean up default check/radio sizing.
Carsten Haitzler [Wed, 18 Jul 2012 08:23:15 +0000 (08:23 +0000)]
clean up default check/radio sizing.

SVN revision: 74048

12 years agofix evil scroller self-feeing loop scrollbar sizing issues.
Carsten Haitzler [Wed, 18 Jul 2012 06:59:16 +0000 (06:59 +0000)]
fix evil scroller self-feeing loop scrollbar sizing issues.

SVN revision: 74041

12 years agoclean up desktop scroller theme a bit.
Carsten Haitzler [Wed, 18 Jul 2012 06:57:52 +0000 (06:57 +0000)]
clean up desktop scroller theme a bit.

SVN revision: 74040

12 years agoelm image: Removed existing trailing whitespace while reading the
Daniel Juyung Seo [Wed, 18 Jul 2012 02:25:38 +0000 (02:25 +0000)]
elm image: Removed existing trailing whitespace while reading the
code.

SVN revision: 74031

12 years agoelm image: Renamed internal variable/function name to be less confusing. They could...
Daniel Juyung Seo [Wed, 18 Jul 2012 02:25:34 +0000 (02:25 +0000)]
elm image: Renamed internal variable/function name to be less confusing. They could be confused by no_scale option.

SVN revision: 74030

12 years ago[elm] Updating class images.
Gustavo Lima Chaves [Tue, 17 Jul 2012 22:34:26 +0000 (22:34 +0000)]
[elm] Updating class images.

SVN revision: 74029

12 years ago[elm] Fix image name on a script.
Gustavo Lima Chaves [Tue, 17 Jul 2012 22:27:01 +0000 (22:27 +0000)]
[elm] Fix image name on a script.

SVN revision: 74028

12 years ago[elm] Diskselector now a scrollable widget.
Gustavo Lima Chaves [Tue, 17 Jul 2012 22:09:07 +0000 (22:09 +0000)]
[elm] Diskselector now a scrollable widget.

Again, all bugs and features kept. Enjoy.

SVN revision: 74027

12 years ago[elm] Style fix.
Gustavo Lima Chaves [Tue, 17 Jul 2012 18:46:18 +0000 (18:46 +0000)]
[elm] Style fix.

SVN revision: 74025

12 years ago[elm] Init fix for frame.
Gustavo Lima Chaves [Tue, 17 Jul 2012 18:46:12 +0000 (18:46 +0000)]
[elm] Init fix for frame.

SVN revision: 74024

12 years ago[elm] Init fixes for slider.
Gustavo Lima Chaves [Tue, 17 Jul 2012 18:46:03 +0000 (18:46 +0000)]
[elm] Init fixes for slider.

SVN revision: 74023

12 years ago[elm] Style fixes.
Gustavo Lima Chaves [Tue, 17 Jul 2012 18:45:57 +0000 (18:45 +0000)]
[elm] Style fixes.

SVN revision: 74022

12 years ago[elm] Init fix for photo.
Gustavo Lima Chaves [Tue, 17 Jul 2012 18:45:51 +0000 (18:45 +0000)]
[elm] Init fix for photo.

SVN revision: 74021

12 years ago[elm] Repeated call now gone.
Gustavo Lima Chaves [Tue, 17 Jul 2012 18:45:39 +0000 (18:45 +0000)]
[elm] Repeated call now gone.

SVN revision: 74020

12 years ago[elm] Init PARTIAL fix for conform.
Gustavo Lima Chaves [Tue, 17 Jul 2012 18:45:33 +0000 (18:45 +0000)]
[elm] Init PARTIAL fix for conform.

Widgets dealing with parent widget on init are on my TODO, yet.
Ideas?

SVN revision: 74019

12 years ago[elm] Init fix for segment control.
Gustavo Lima Chaves [Tue, 17 Jul 2012 18:45:27 +0000 (18:45 +0000)]
[elm] Init fix for segment control.

SVN revision: 74018

12 years ago[elm] Init fix for plug.
Gustavo Lima Chaves [Tue, 17 Jul 2012 18:45:20 +0000 (18:45 +0000)]
[elm] Init fix for plug.

SVN revision: 74017

12 years ago[elm] Init fix for slideshow.
Gustavo Lima Chaves [Tue, 17 Jul 2012 18:45:16 +0000 (18:45 +0000)]
[elm] Init fix for slideshow.

SVN revision: 74016

12 years ago[elm] Fix init on image.
Gustavo Lima Chaves [Tue, 17 Jul 2012 18:45:09 +0000 (18:45 +0000)]
[elm] Fix init on image.

SVN revision: 74015

12 years ago[elm] Init fix for actionslider.
Gustavo Lima Chaves [Tue, 17 Jul 2012 18:45:04 +0000 (18:45 +0000)]
[elm] Init fix for actionslider.

SVN revision: 74014

12 years ago[elm] Init fix for bubble.
Gustavo Lima Chaves [Tue, 17 Jul 2012 18:44:55 +0000 (18:44 +0000)]
[elm] Init fix for bubble.

SVN revision: 74013

12 years ago[elm] Init code fix -- datetime.
Gustavo Lima Chaves [Tue, 17 Jul 2012 18:44:50 +0000 (18:44 +0000)]
[elm] Init code fix -- datetime.

SVN revision: 74012

12 years ago[elm] Init code fix -- glview.
Gustavo Lima Chaves [Tue, 17 Jul 2012 18:44:43 +0000 (18:44 +0000)]
[elm] Init code fix -- glview.

SVN revision: 74011

12 years ago[elm] Init code fix -- check.
Gustavo Lima Chaves [Tue, 17 Jul 2012 18:44:36 +0000 (18:44 +0000)]
[elm] Init code fix -- check.

SVN revision: 74010

12 years ago[elm] Init code fix -- label.
Gustavo Lima Chaves [Tue, 17 Jul 2012 18:44:28 +0000 (18:44 +0000)]
[elm] Init code fix -- label.

SVN revision: 74009

12 years ago[elm] Init code fix -- clock.
Gustavo Lima Chaves [Tue, 17 Jul 2012 18:44:23 +0000 (18:44 +0000)]
[elm] Init code fix -- clock.

SVN revision: 74008

12 years ago[elm] Init code fix -- calendar.
Gustavo Lima Chaves [Tue, 17 Jul 2012 18:44:16 +0000 (18:44 +0000)]
[elm] Init code fix -- calendar.

SVN revision: 74007

12 years ago[elm] Update class images.
Gustavo Lima Chaves [Tue, 17 Jul 2012 18:44:10 +0000 (18:44 +0000)]
[elm] Update class images.

SVN revision: 74006