platform/upstream/elementary.git
14 years agoDelete long press timer on item deletion
Iván Briano [Tue, 30 Mar 2010 05:03:57 +0000 (05:03 +0000)]
Delete long press timer on item deletion

SVN revision: 47576

14 years agoElm notepad on edje_externals.
Gustavo Lima Chaves [Mon, 29 Mar 2010 20:53:00 +0000 (20:53 +0000)]
Elm notepad on edje_externals.

Still lacking properties exported, will come with more powerful param. types, further.

SVN revision: 47569

14 years agoNew elm widget exported to edje: bubble.
Gustavo Lima Chaves [Mon, 29 Mar 2010 17:19:35 +0000 (17:19 +0000)]
New elm widget exported to edje: bubble.

SVN revision: 47559

14 years agoavoid norender when doing initial queued block - it's limited to 1 block
Carsten Haitzler [Mon, 29 Mar 2010 02:27:26 +0000 (02:27 +0000)]
avoid norender when doing initial queued block - it's limited to 1 block
anyway.

SVN revision: 47550

14 years agoadd test case for longpress and selected in genlist.
Carsten Haitzler [Sun, 28 Mar 2010 01:44:56 +0000 (01:44 +0000)]
add test case for longpress and selected in genlist.

SVN revision: 47522

14 years agoefreet_util_init gone
Sebastian Dransfeld [Sat, 27 Mar 2010 19:58:21 +0000 (19:58 +0000)]
efreet_util_init gone

SVN revision: 47512

14 years agofix unrealizesd dragging item issue.
Carsten Haitzler [Sat, 27 Mar 2010 04:17:01 +0000 (04:17 +0000)]
fix unrealizesd dragging item issue.

SVN revision: 47502

14 years agocall elm_init otherwise applications that still did not will fail.
Gustavo Sverzut Barbieri [Sat, 27 Mar 2010 01:24:40 +0000 (01:24 +0000)]
call elm_init otherwise applications that still did not will fail.

SVN revision: 47499

14 years agoallow init to be called multiple times.
Gustavo Sverzut Barbieri [Sat, 27 Mar 2010 01:24:21 +0000 (01:24 +0000)]
allow init to be called multiple times.

SVN revision: 47498

14 years agofix _elm_widget_type_check() to return FALSE on failure.
Gustavo Sverzut Barbieri [Sat, 27 Mar 2010 01:19:44 +0000 (01:19 +0000)]
fix _elm_widget_type_check() to return FALSE on failure.

SVN revision: 47497

14 years agoallow elm_init() being called with NULL argc/argv.
Gustavo Sverzut Barbieri [Sat, 27 Mar 2010 01:19:05 +0000 (01:19 +0000)]
allow elm_init() being called with NULL argc/argv.

SVN revision: 47496

14 years agoops, forgot some signals.
Gustavo Sverzut Barbieri [Fri, 26 Mar 2010 11:25:55 +0000 (11:25 +0000)]
ops, forgot some signals.

SVN revision: 47489

14 years agoDescribe more widgets callbacks.
Gustavo Sverzut Barbieri [Fri, 26 Mar 2010 10:59:56 +0000 (10:59 +0000)]
Describe more widgets callbacks.

These are all that Editje support now :-) Add others later as
required, but patches are welcome!

SVN revision: 47488

14 years agoAdding focus and unfocused smart callbacks for entry
Iván Briano [Fri, 26 Mar 2010 06:46:31 +0000 (06:46 +0000)]
Adding focus and unfocused smart callbacks for entry

SVN revision: 47481

14 years agoMake someone else assume responsibility when Elementary is not the father.
Iván Briano [Fri, 26 Mar 2010 05:44:30 +0000 (05:44 +0000)]
Make someone else assume responsibility when Elementary is not the father.

SVN revision: 47479

14 years agoSync with efreet and some cleanup
Sebastian Dransfeld [Fri, 26 Mar 2010 05:34:34 +0000 (05:34 +0000)]
Sync with efreet and some cleanup

SVN revision: 47478

14 years ago_elm_log_dom is not available outside of libelementary.so and EAPIfying it doesn...
Iván Briano [Fri, 26 Mar 2010 05:20:30 +0000 (05:20 +0000)]
_elm_log_dom is not available outside of libelementary.so and EAPIfying it doesn't sound like a good idea. So let's just have another variable named like it in the externals module so we can reuse the log macros defined in elm_priv.h

SVN revision: 47468

14 years agopassword mode - really dont allow selecting of passwords form password fields.
Carsten Haitzler [Fri, 26 Mar 2010 04:45:11 +0000 (04:45 +0000)]
password mode - really dont allow selecting of passwords form password fields.

SVN revision: 47467

14 years agoNULL pointer after deleting timer to avoid bitching later
Iván Briano [Fri, 26 Mar 2010 03:17:05 +0000 (03:17 +0000)]
NULL pointer after deleting timer to avoid bitching later

Patch by Brian Wang

SVN revision: 47462

14 years agoProxy Elementary widget signals to Edje.
Gustavo Sverzut Barbieri [Fri, 26 Mar 2010 00:58:14 +0000 (00:58 +0000)]
Proxy Elementary widget signals to Edje.

Add support to automatic proxy events from Elementary to Edje using
callbacks described with Evas_Smart_Cb_Description and set to
Evas_Smart_Class or per-instance with
evas_object_smart_callbacks_descriptions_set().

Right now elm_widget is not subclassable, so there is no way to define
class signals, just instance signals.

Just doing it for button, lots of widgets to do... If you can help,
please follow the process:

  * see example at src/lib/elm_button.c, copy it.

  * read your widget documentation at Elementary.h

  * grep for evas_object_smart_callback_call(), see if they are all
    documented in Elementary.h, or if there are some missing. Fix Elementary.h

  * paste and change based on fixed Elementary.h My recommendation is
    to create "static const char []" variables and replace all
    evas_object_smart_callback_call() with that, to force sync.

With callback descriptions pre-defined and using the same pointer with
a custom variation evas_object_smart_callback_call_ptr() we may later
optimize signal calling heavily, removing the requirement to call
eina_stringshare_add()/eina_stringshare_del() and also not mixing all
the callbacks in teh same list, instead having an array for defined
signals, and a list from there.  These optimizations are not in, but
they are easily added later without breaking the API/ABI.

SVN revision: 47461

14 years agoSimplify state_set and just apply values that were explicitly set.
Gustavo Sverzut Barbieri [Thu, 25 Mar 2010 20:17:34 +0000 (20:17 +0000)]
Simplify state_set and just apply values that were explicitly set.

SVN revision: 47458

14 years agoPort to new Edje EXTERNAL API goodies!
Gustavo Sverzut Barbieri [Thu, 25 Mar 2010 18:10:25 +0000 (18:10 +0000)]
Port to new Edje EXTERNAL API goodies!

Now it is possible to change labels and lots of other parameters
directly through Edje's API.

BIG FAT NOTE: this is a convenience that comes with a reasonable
    price. If you have hot paths, like loops, then avoid calling this
    and use the object directly. This functions add a cost to check
    edje, then find the part, then get the type, then get the
    param_set/param_get methods, then calling it, then finding the
    parameters using strcmp(), then checking the type and just then it
    will call the actual method. So whenever possible, just call the
    method directly.

Due the reasoning of the "big fat note" I'm adding this inside edje
externals only. The code would be almost the same to expose it in
Elementary.h as elm_widget_property_set/get, but then I know people
would misuse it... actually this kind of stuff could be easily ported
to Evas smart object, but then abuse and slowness will hunt us
foreveeeeer...

SVN revision: 47457

14 years ago * elementary: enable wheel in slider.
Cedric BAIL [Thu, 25 Mar 2010 17:47:48 +0000 (17:47 +0000)]
* elementary: enable wheel in slider.

SVN revision: 47454

14 years agoSome missing getters...
Gustavo Sverzut Barbieri [Thu, 25 Mar 2010 17:27:00 +0000 (17:27 +0000)]
Some missing getters...

I'm working on edje_externals param_get/param_set and they will need
these functions.

SVN revision: 47450

14 years agoreturn "" if conv is null anyway (as thats a "" src string)
Carsten Haitzler [Thu, 25 Mar 2010 05:13:59 +0000 (05:13 +0000)]
return "" if conv is null anyway (as thats a "" src string)

SVN revision: 47441

14 years agowhen adding items to genlist - if there is no block yet, or a block that is
Carsten Haitzler [Wed, 24 Mar 2010 10:00:50 +0000 (10:00 +0000)]
when adding items to genlist - if there is no block yet, or a block that is
incomplete - always calc a block worth immediately.

SVN revision: 47416

14 years agolongpress <- for dan!
Carsten Haitzler [Wed, 24 Mar 2010 08:54:59 +0000 (08:54 +0000)]
longpress <- for dan!

SVN revision: 47414

14 years agoconst and -Wextra, come on guys! :-/
Gustavo Sverzut Barbieri [Wed, 24 Mar 2010 03:06:00 +0000 (03:06 +0000)]
const and -Wextra, come on guys! :-/

SVN revision: 47409

14 years agoExternals Make Scrolled Entry Editable. By Kubo
Tiago Rezende Campos Falcao [Tue, 23 Mar 2010 19:48:40 +0000 (19:48 +0000)]
Externals Make Scrolled Entry Editable. By Kubo

Author:    Raphael Kubo da Costa <kubo at profusion.mobi>

SVN revision: 47400

14 years ago(remove useless edje_object_scale_sets's on objects that are not edje objects)
Carsten Haitzler [Tue, 23 Mar 2010 04:46:53 +0000 (04:46 +0000)]
(remove useless edje_object_scale_sets's on objects that are not edje objects)

but more importantly - fix list to actually have a specific theme/base for it

SVN revision: 47381

14 years agoAdd a theme hook to elm_scrolled_entry
Gustavo Sverzut Barbieri [Tue, 23 Mar 2010 00:06:32 +0000 (00:06 +0000)]
Add a theme hook to elm_scrolled_entry
This patch makes it possible to specify a different style to an
elm_scrolled_entry. Worked fine in ewebkit-demo.

By: Raphael Kubo da Costa <kubo@profusion.mobi>

SVN revision: 47376

14 years agoEdje EXTERNAL should use as parent the first elm_widget so focus chain
Gustavo Sverzut Barbieri [Mon, 22 Mar 2010 21:38:32 +0000 (21:38 +0000)]
Edje EXTERNAL should use as parent the first elm_widget so focus chain
is correct.

This patch should fix issues with multiple entries not being able to
focus, if not, let me know.

SVN revision: 47375

14 years agoEnable check of Elementary widgets and getting the first widget that
Gustavo Sverzut Barbieri [Mon, 22 Mar 2010 21:36:59 +0000 (21:36 +0000)]
Enable check of Elementary widgets and getting the first widget that
is parent of an Evas_Object.

With these in place, one can check if the given object is an elmentary
widget and query for the first widget that is parent, so we can add
them and keep focus chain correct, useful for Edje externals, patch to
follow.

SVN revision: 47374

14 years agotest elm_entry_markup_to_utf8
Carsten Haitzler [Mon, 22 Mar 2010 05:52:05 +0000 (05:52 +0000)]
test elm_entry_markup_to_utf8

SVN revision: 47363

14 years agosupport Windows file system
Vincent Torri [Fri, 19 Mar 2010 18:24:58 +0000 (18:24 +0000)]
support Windows file system

patch by Nicolas Aguirre

SVN revision: 47346

14 years agoexample of how to work around heirachy to go back up the tree - but wont work
Carsten Haitzler [Wed, 17 Mar 2010 01:08:39 +0000 (01:08 +0000)]
example of how to work around heirachy to go back up the tree - but wont work
for going bck down. i.e. - focus.

SVN revision: 47302

14 years agoreorganize genlist functions in header to make more sense.
Gustavo Sverzut Barbieri [Tue, 16 Mar 2010 15:43:49 +0000 (15:43 +0000)]
reorganize genlist functions in header to make more sense.

SVN revision: 47294

14 years agoTypedefs to help bindings, type less and make things easier to identify.
Gustavo Sverzut Barbieri [Tue, 16 Mar 2010 15:31:38 +0000 (15:31 +0000)]
Typedefs to help bindings, type less and make things easier to identify.

SVN revision: 47292

14 years agoadd new test.
Carsten Haitzler [Tue, 16 Mar 2010 12:42:24 +0000 (12:42 +0000)]
add new test.

SVN revision: 47289

14 years agotest entries in a layout - works just fine! so bug--
Carsten Haitzler [Tue, 16 Mar 2010 09:22:47 +0000 (09:22 +0000)]
test entries in a layout - works just fine! so bug--

SVN revision: 47283

14 years agobug-- and.. bug++
Carsten Haitzler [Tue, 16 Mar 2010 04:11:47 +0000 (04:11 +0000)]
bug-- and.. bug++

SVN revision: 47276

14 years agooff by 1 - just noticed now!
Carsten Haitzler [Tue, 16 Mar 2010 03:28:39 +0000 (03:28 +0000)]
off by 1 - just noticed now!

SVN revision: 47273

14 years agosort tests, add index.
Gustavo Sverzut Barbieri [Tue, 16 Mar 2010 02:15:37 +0000 (02:15 +0000)]
sort tests, add index.

Idea by Lucas de Marchi, implementation by myself.

It's not as fancy as it could be, since elm_list does not have an
animated "bring-in" as genlist... but I added a macro to make it easy
to migrate to genlist later without lots of changes...

SVN revision: 47272

14 years agobug change
Carsten Haitzler [Tue, 16 Mar 2010 01:36:29 +0000 (01:36 +0000)]
bug change

SVN revision: 47271

14 years agofix compile without ethumb...
Gustavo Sverzut Barbieri [Mon, 15 Mar 2010 19:30:24 +0000 (19:30 +0000)]
fix compile without ethumb...

SVN revision: 47246

14 years agopackaging ethumb support for elementary.
Gustavo Sverzut Barbieri [Mon, 15 Mar 2010 18:46:27 +0000 (18:46 +0000)]
packaging ethumb support for elementary.

SVN revision: 47241

14 years agoAdd elm_thumb object to Elementary.
Gustavo Sverzut Barbieri [Mon, 15 Mar 2010 18:34:04 +0000 (18:34 +0000)]
Add elm_thumb object to Elementary.
The elm_thumb object interacts with ethumb to create a thumbnail.

By: Rafael Fonseca <rfonseca@profusion.mobi>

SVN revision: 47240

14 years agobug++ :(
Carsten Haitzler [Mon, 15 Mar 2010 13:51:54 +0000 (13:51 +0000)]
bug++ :(

SVN revision: 47236

14 years agobug-- note
Carsten Haitzler [Mon, 15 Mar 2010 09:45:16 +0000 (09:45 +0000)]
bug-- note

SVN revision: 47233

14 years agobug -= 2;
Carsten Haitzler [Mon, 15 Mar 2010 02:34:27 +0000 (02:34 +0000)]
bug -= 2;

SVN revision: 47230

14 years agoaaah typo! fix from lupan.
Carsten Haitzler [Sun, 14 Mar 2010 22:33:52 +0000 (22:33 +0000)]
aaah typo! fix from lupan.

SVN revision: 47225

14 years agobug++ :(
Carsten Haitzler [Sun, 14 Mar 2010 13:02:00 +0000 (13:02 +0000)]
bug++ :(

SVN revision: 47206

14 years agobug--
Carsten Haitzler [Sun, 14 Mar 2010 12:59:12 +0000 (12:59 +0000)]
bug--

SVN revision: 47205

14 years agobug--.. and unfortunately.. bug++
Carsten Haitzler [Sun, 14 Mar 2010 12:27:21 +0000 (12:27 +0000)]
bug--.. and unfortunately.. bug++

SVN revision: 47203

14 years agonote some bugs i found... to be fixed. at least i know them. :) (and have a
Carsten Haitzler [Sun, 14 Mar 2010 08:21:22 +0000 (08:21 +0000)]
note some bugs i found... to be fixed. at least i know them. :) (and have a
test case).

SVN revision: 47199

14 years agofix more runtime wornings... added ELM_ERROR_ABORT! :)
Carsten Haitzler [Sun, 14 Mar 2010 03:48:22 +0000 (03:48 +0000)]
fix more runtime wornings... added ELM_ERROR_ABORT! :)

SVN revision: 47195

14 years agoUse eina_stringshare_replace to avoid crashes.
Gustavo Sverzut Barbieri [Sat, 13 Mar 2010 21:01:26 +0000 (21:01 +0000)]
Use eina_stringshare_replace to avoid crashes.

By: Rafael Fonseca <rfonseca@profusion.mobi>

SVN revision: 47187

14 years agoAdding space between icon and label in elementary list/slider.
Gustavo Sverzut Barbieri [Fri, 12 Mar 2010 22:04:23 +0000 (22:04 +0000)]
Adding space between icon and label in elementary list/slider.

By: Fabiano Fidêncio <fidencio@profusion.mobi>

NOTE: maybe it would be better to have a signal to say if it is
      with/without icon and add the space only if icon AND
      label... but label is pretty common, so it is fine.

SVN revision: 47170

14 years agoget rid of forced scrollbars in scroller.
Carsten Haitzler [Thu, 11 Mar 2010 08:13:20 +0000 (08:13 +0000)]
get rid of forced scrollbars in scroller.

SVN revision: 47131

14 years agoremove newline stuff.
Carsten Haitzler [Thu, 11 Mar 2010 08:08:15 +0000 (08:08 +0000)]
remove newline stuff.

SVN revision: 47130

14 years agoand make entry api's acutally work - and be tested.
Carsten Haitzler [Thu, 11 Mar 2010 06:35:07 +0000 (06:35 +0000)]
and make entry api's acutally work - and be tested.

SVN revision: 47127

14 years agoaaah eeek - wrong call. fixed.
Carsten Haitzler [Wed, 10 Mar 2010 14:08:47 +0000 (14:08 +0000)]
aaah eeek - wrong call. fixed.

SVN revision: 47107

14 years agomark brokenness for now - will fix.
Carsten Haitzler [Wed, 10 Mar 2010 13:40:15 +0000 (13:40 +0000)]
mark brokenness for now - will fix.

SVN revision: 47104

14 years agofix up test - set no allow focus and no propagate so buttons dont snarf focus
Carsten Haitzler [Wed, 10 Mar 2010 13:24:38 +0000 (13:24 +0000)]
fix up test - set no allow focus and no propagate so buttons dont snarf focus
form entries.

SVN revision: 47102

14 years agomore comprehensive test for entry - there are bugs, this will let me test and
Carsten Haitzler [Wed, 10 Mar 2010 07:58:29 +0000 (07:58 +0000)]
more comprehensive test for entry - there are bugs, this will let me test and
fix.

SVN revision: 47101

14 years agoremove deprecated calls (been deprecated for a while now)
Carsten Haitzler [Wed, 10 Mar 2010 07:21:10 +0000 (07:21 +0000)]
remove deprecated calls (been deprecated for a while now)

SVN revision: 47100

14 years agomore warning--
Carsten Haitzler [Wed, 10 Mar 2010 06:46:28 +0000 (06:46 +0000)]
more warning--

SVN revision: 47099

14 years agotake that - more warning--
Carsten Haitzler [Wed, 10 Mar 2010 04:13:34 +0000 (04:13 +0000)]
take that - more warning--

SVN revision: 47098

14 years agoand some more warning--
Carsten Haitzler [Wed, 10 Mar 2010 03:47:33 +0000 (03:47 +0000)]
and some more warning--

SVN revision: 47097

14 years agomore wanring-- and safety checks.
Carsten Haitzler [Wed, 10 Mar 2010 00:31:54 +0000 (00:31 +0000)]
more wanring-- and safety checks.

SVN revision: 47096

14 years agoremove unused parameter in the library.
Vincent Torri [Tue, 9 Mar 2010 17:51:30 +0000 (17:51 +0000)]
remove unused parameter in the library.

I won't do this everyday, and i won't touch the tests.

SVN revision: 47093

14 years agomore members for newer struct - init to null.
Carsten Haitzler [Tue, 9 Mar 2010 16:56:31 +0000 (16:56 +0000)]
more members for newer struct - init to null.

SVN revision: 47092

14 years agomore warnning fixes!
Carsten Haitzler [Tue, 9 Mar 2010 16:46:13 +0000 (16:46 +0000)]
more warnning fixes!

SVN revision: 47087

14 years agomore warning -- - and fix a lot of formatting in elm_map and some bugs lurking.
Carsten Haitzler [Tue, 9 Mar 2010 16:27:46 +0000 (16:27 +0000)]
more warning -- - and fix a lot of formatting in elm_map and some bugs lurking.

SVN revision: 47082

14 years agowarning-- more
Carsten Haitzler [Tue, 9 Mar 2010 14:42:41 +0000 (14:42 +0000)]
warning-- more

SVN revision: 47078

14 years agomore warning fixes!
Carsten Haitzler [Tue, 9 Mar 2010 11:42:53 +0000 (11:42 +0000)]
more warning fixes!

SVN revision: 47076

14 years agowarning fix 1. :)
Carsten Haitzler [Tue, 9 Mar 2010 07:30:48 +0000 (07:30 +0000)]
warning fix 1. :)

SVN revision: 47074

14 years agopatch from discomfitor <- check type of widget on api call and return if not
Carsten Haitzler [Tue, 9 Mar 2010 06:15:39 +0000 (06:15 +0000)]
patch from discomfitor <- check type of widget on api call and return if not
the right type

SVN revision: 47073

14 years agomore comprehensive flip test with multiple children etc.
Carsten Haitzler [Tue, 9 Mar 2010 04:00:08 +0000 (04:00 +0000)]
more comprehensive flip test with multiple children etc.

SVN revision: 47072

14 years agofix FALSE -> EINA_FALSE.
Gustavo Sverzut Barbieri [Mon, 8 Mar 2010 15:17:10 +0000 (15:17 +0000)]
fix FALSE -> EINA_FALSE.

SVN revision: 47001

14 years agofix compilation on mac os x
Vincent Torri [Sat, 6 Mar 2010 16:46:08 +0000 (16:46 +0000)]
fix compilation on mac os x

based on a patch by Leif Middelschulte

SVN revision: 46911

14 years agoenable forcing dependencies and ignoring auto-detect/automagic.
Gustavo Sverzut Barbieri [Wed, 3 Mar 2010 22:34:57 +0000 (22:34 +0000)]
enable forcing dependencies and ignoring auto-detect/automagic.

SVN revision: 46849

14 years agoFix position in notify widget
Gustavo Sverzut Barbieri [Wed, 3 Mar 2010 19:02:01 +0000 (19:02 +0000)]
Fix position in notify widget
Content was going outside of notify widget.

By: Lucas De Marchi <lucas.demarchi@profusion.mobi>

SVN revision: 46839

14 years agofix genlist delete item in callback bug
Carsten Haitzler [Tue, 2 Mar 2010 08:47:40 +0000 (08:47 +0000)]
fix genlist delete item in callback bug

SVN revision: 46781

14 years agoFrom: 김지훈 <jihoon48.kim@samsung.com>
김지훈 [Tue, 2 Mar 2010 08:17:13 +0000 (08:17 +0000)]
From: 김지훈 <jihoon48.kim@samsung.com>
Subject: elc_scrolled_entry.c patch for adding callback

elm_scrolled_entry is consists of a scroller and entry, but it does not trasmit
the below signals:

 - cursor,changed
 - anchor,clicked
 - selection,start
 - selection,changed
 - selection,cleared
 - selection,paste
 - selection,copy
 - selection,cut
 - longpressed

SVN revision: 46780

14 years agofix most llvm/gcc real bugs.
Gustavo Sverzut Barbieri [Tue, 2 Mar 2010 01:27:08 +0000 (01:27 +0000)]
fix most llvm/gcc real bugs.

SVN revision: 46762

14 years agohmm that should have been argv i think
Carsten Haitzler [Tue, 2 Mar 2010 01:14:36 +0000 (01:14 +0000)]
hmm that should have been argv i think

SVN revision: 46759

14 years agollvm shhhhhh! (not a real fix)
Carsten Haitzler [Tue, 2 Mar 2010 01:04:38 +0000 (01:04 +0000)]
llvm shhhhhh! (not a real fix)

SVN revision: 46757

14 years agobeing extra careful and verbose on elm_entry_entry_get().
Gustavo Sverzut Barbieri [Mon, 1 Mar 2010 23:23:53 +0000 (23:23 +0000)]
being extra careful and verbose on elm_entry_entry_get().

For some reason, we're getting text without the <br> and it is
crashing. Instead of crashing, be loud about that error and bail.

The source of the real bug is still unknown :-(

SVN revision: 46747

14 years agoFix doxy typo.
Christopher Michael [Mon, 1 Mar 2010 16:20:39 +0000 (16:20 +0000)]
Fix doxy typo.

SVN revision: 46704

14 years agoallow icon window to resize for testing.
Carsten Haitzler [Mon, 1 Mar 2010 02:20:41 +0000 (02:20 +0000)]
allow icon window to resize for testing.

SVN revision: 46676

14 years ago1. fix child stuff .. smart object members.. that was just bad of me.. oops.
Carsten Haitzler [Sat, 27 Feb 2010 15:14:34 +0000 (15:14 +0000)]
1. fix child stuff .. smart object members.. that was just bad of me.. oops.
swapped params. i should have known better. *spank* and .. add visible "u
clikced here" tests to launcher test.

SVN revision: 46582

14 years agostop using round - no need
Carsten Haitzler [Sat, 27 Feb 2010 05:20:28 +0000 (05:20 +0000)]
stop using round - no need

SVN revision: 46553

14 years agoslight change in drag events vs scrolling on_hold to fix small "distance
Carsten Haitzler [Fri, 26 Feb 2010 06:30:17 +0000 (06:30 +0000)]
slight change in drag events vs scrolling on_hold to fix small "distance
race" issue.

SVN revision: 46505

14 years agoallow disabling automagic to discover efreet, eweather and edbus
Gustavo Sverzut Barbieri [Thu, 25 Feb 2010 21:36:12 +0000 (21:36 +0000)]
allow disabling automagic to discover efreet, eweather and edbus

SVN revision: 46489

14 years agoRemove unused variables and use correct functions for objects. Now that scrolled_entr...
Iván Briano [Wed, 24 Feb 2010 21:53:51 +0000 (21:53 +0000)]
Remove unused variables and use correct functions for objects. Now that scrolled_entry is used for the Entry scrolled test, the button callbacks can't be reused.

SVN revision: 46444

14 years agoAdd case for keyboard geometry changing. (not completely handled yet, but
Christopher Michael [Tue, 23 Feb 2010 20:54:39 +0000 (20:54 +0000)]
Add case for keyboard geometry changing. (not completely handled yet, but
conformant widget does get notified now).

SVN revision: 46403

14 years agoFrom: 김재환 <jae.hwan.kim@samsung.com>
김재환 [Mon, 22 Feb 2010 09:48:21 +0000 (09:48 +0000)]
From: 김재환 <jae.hwan.kim@samsung.com>
Subject: Request for "block,clicked" callback event of elm_notify

SVN revision: 46354

14 years agoBetter values fro url and source.
Rui Seabra [Sun, 21 Feb 2010 19:40:32 +0000 (19:40 +0000)]
Better values fro url and source.

SVN revision: 46350

14 years agoRPM spec for elementary.
Rui Seabra [Sun, 21 Feb 2010 19:18:26 +0000 (19:18 +0000)]
RPM spec for elementary.

SVN revision: 46349