Commit Graph

91 Commits

Author SHA1 Message Date
Daniel Juyung Seo 350c6c3235 elm cache: elm_all_flush() -> elm_cache_all_flush()
Signed-off-by: Daniel Juyung Seo <juyung.seo@samsung.com>

SVN revision: 68051
2012-02-17 05:12:56 +00:00
ChunEon Park 79d3a3bef4 elementary/config - add elm_config_all_flush
SVN revision: 67969
2012-02-15 09:09:21 +00:00
Iván Briano 2d5761d30b Whine if the engine in ELM_ENGINE is not known so users are aware of it
SVN revision: 67540
2012-01-25 17:15:43 +00:00
Cedric BAIL 2b7a2bfba5 elementary: be able to specify elementary private data subdirectory.
SVN revision: 67356
2012-01-19 17:12:15 +00:00
Christopher Michael 3e83e40a23 Elementary: Added Wayland_Egl backend support.
Modified elm_win to use generic wayland_resize function (for
ecore_evas).



SVN revision: 67134
2012-01-12 09:10:27 +00:00
Christopher Michael 59e83e370e Elm: Add wayland_shm engine for Elm. Add config entries for the
Wayland Engine. Give elm window some 'framespace' and borders for
wayland_shm.

NB: This means that you can now build & run elm apps for Wayland :)



SVN revision: 66767
2012-01-03 01:45:22 +00:00
Tom Hacohen 92b36f67a4 Elm glayer: Changed config to enable zoom/rotate finger by default.
SVN revision: 66433
2011-12-21 08:48:29 +00:00
Aharon Hillel 472f1a3f0f glayer: Fixed angle computation 1. Angles now are given in DEG, not RAD 2. ZERO angle at 12-oclock, growing clockwise. 3. TODO: Fixe rotation Momentum computation.
Signed-off-by: Aharon Hillel <a.hillel@partner.samsung.com>

SVN revision: 66427
2011-12-21 08:48:08 +00:00
Tom Hacohen b1f771a890 Elm glayer: Added config value to multi-touch rotation.
Patch by Bluezery.

SVN revision: 66368
2011-12-20 08:39:30 +00:00
Tom Hacohen 0fac1e15ff Elementary glayer: Added a config value to disable multitouch zoom.
Patch by Bluezery.

SVN revision: 66310
2011-12-18 08:45:59 +00:00
Carsten Haitzler 15468ff4d1 it's time we dont auto-scale finger size with scale .. set finger size
to what u need/want.



SVN revision: 65569
2011-11-24 10:31:42 +00:00
Aharon Hillel 9bd9f39c4d Elm glayer: Changed Flick time limit default to 120 ms
Signed-off-by: Aharon Hillel <a.hillel@partner.samsung.com>

SVN revision: 64987
2011-11-09 15:10:13 +00:00
Youness Alaoui 6d00462910 Elementary: Add support for the PSL1GHT engine
SVN revision: 64784
2011-11-05 17:50:09 +00:00
Nicolas Aguirre ec32ba1369 elementary: Add ecore_cocoa backend to elementary
SVN revision: 64657
2011-11-02 19:26:29 +00:00
Mike Blumenkrantz 5c081c834d whitespace--
SVN revision: 64216
2011-10-21 00:24:15 +00:00
Carsten Haitzler 6d77357cec make elm config all stored in blobs ion properties (as well as disk)
only not multiple properties and fix up elm config tool so it works
well with the better scheme. all internal changes so nothing app-wise
is affected except for also exposing an event to tell you config was
changed



SVN revision: 64178
2011-10-19 12:46:56 +00:00
Jaehwan Kim 2fd30a5890 From: Jaehwan Kim <jae.hwan.kim@samsung.com>
Subject: [E-devel] [Patch] ELM_THUMBSCROLL_SENSITIVITY_FRICTION

I talked with you about 4.0, magic number.
I want to change the part that the length of mouse dragging multiply 4.0
to _elm_config->thumbscroll_sensitivity_friction.
4.0 is nice. But some device may want to change the value. It is a kind
of sensitivity. So I added the config "ELM_THUMBSCROLL_SENESITIVITY
_FRICTION". And I change the value mean. If the value is high, it is
more sensitive. The range of the value is from 0.1 to 1.0. It cannot be 0.0.
4.0 changed to 0.25. 
Please check this patch.



SVN revision: 64051
2011-10-13 12:07:39 +00:00
Gustavo Sverzut Barbieri ab188c657c Elementary support for EWS, with simplistic window manager.
This contains a very simple and stupid window manager to be used in
FB, PS3 or similar single-window engines. Everybody is welcome to
improve it, particularly:
 * Edje: better border decoration theme
 * Edje: nice background
 * C + Edje: taskbar with minimized items.
 * C + Edje: find a better protocol to determine window size,
   accounting border decoration without account shadow! Right now I'm
   taking everything :-P
 * C: window management keys (Alt+F4 and like)

How to use: export ELM_ENGINE=ews
How to configure backing store: export ECORE_EVAS_EWS=enginey:w:h:options
Example:
{{{
export ECORE_EVAS_EWS=software_x11:0:0:1024:768
export ELM_ENGINE=ews
elementary_test
}}}

Bugs: maybe many, but so far seems it wouldn't take mouse events for
secondary windows. Will check it later.





SVN revision: 63849
2011-10-05 22:18:22 +00:00
ChunEon Park 44c0da0902 elementary/main - elm_config_sub_shutdown is more sensible and removed duplicated codes
SVN revision: 63649
2011-09-29 02:00:20 +00:00
ChunEon Park 009d533645 elementary - fixed some logic errors patched by rajeev.r@samsung.com
Hi all,
I found few memory related issues in elementary package when performed static analysis on it.

These issues include:
Array indices getting out of bounds, freed memory address being passed to a function as parameter, memory not getting cleaned up because of earlier return statement.

Issues details:
1. In elm_widget.c inside function elm_widget_signal_callback_del(), it is possible that freed memory address esd is passed to the sd->callback_del_func(). I think it should be data, not esd.
Moreover what if the callback frees memory for data, then the other problem is that the return value is data from the function elm_widget_signal_callback_del() which in my opinion can be a problem.

2. Inside directory src/edje_externals for files elm_genlist.c, elm_notify.c, elm_list.c, elm_thumb.c and elm_map.c, array indices can go beyound bounary.
sizeof() operator for an array of character pointers will return [number of elements in the array * size of (char*)], basically 4 times the number of elements which has been taken care in assertion inside src/edje_extenarnals
while performing assertion but has been missed in the next statement in the loop condition.

3. In file src/lib/elm_config.c inside function _elm_config_profiles_list, freeing of file iterator has been missed out.

Please review the attached patch and let me know your opinion.

Thanks.
Regards,
Rajeev



SVN revision: 63550
2011-09-23 00:02:13 +00:00
Tom Hacohen 80b062cf07 Elm gettext: Only translate if the app using elm is translatable.
It assumes gettext is initialized before the call to elm_init.

SVN revision: 63452
2011-09-18 07:53:41 +00:00
Aharon Hillel 429c050b46 Elm glayer: Added glayer_continues_enable setting to elm-config-file.
Signed-off-by: Aharon Hillel <a.hillel@partner.samsung.com>

SVN revision: 63287
2011-09-08 10:10:34 +00:00
Carsten Haitzler 3d52581f0e and start on allowing modified behavior when in access mode. ie turn
it on and off. just settable by env var and config file for now.



SVN revision: 62591
2011-08-19 14:39:27 +00:00
Gustavo Lima Chaves 31a3e6180a [elementary] All docs to elm's header, as Raster wishes.
Discomfitor, now it's time to split the header and/or write another novel.



SVN revision: 62315
2011-08-10 21:03:21 +00:00
Aharon Hillel 06a87f2348 Elm glayer: Added n-long-tap gesture
Signed-off-by: Aharon Hillel <a.hillel@partner.samsung.com>

SVN revision: 61953
2011-08-01 13:09:05 +00:00
Tom Hacohen 7db652a383 Elm engines: Added "buffer" engine.
This engine just creates a buffer and renders everything to that buffer.
It's really useful for creating emulations of input/output and taking
window captures from them.

SVN revision: 61688
2011-07-25 12:02:52 +00:00
Tom Hacohen 948ab809c1 Elm glayer: Added glayer values to elm config.
Added tolerance related values.

Patch by Aharon Hillel.

SVN revision: 61465
2011-07-18 06:24:34 +00:00
WooHyun Jung 48934aeece elementary : Password's last char show feature can be shown by setting
envs (or modifiying base.src). This patch is made by Shilpa :)


SVN revision: 60859
2011-06-30 05:38:57 +00:00
Carsten Haitzler d13bbc2064 make sure defaults all match with code built in, and profiles etc.
SVN revision: 60182
2011-06-10 08:05:39 +00:00
Carsten Haitzler b01978ac93 forgot to make window of smoothing configurable. fix minor macro
oopsie too.



SVN revision: 60165
2011-06-10 05:07:21 +00:00
Carsten Haitzler 5b2f1b7956 scroller smoothing stuff.
SVN revision: 60126
2011-06-09 10:14:16 +00:00
Carsten Haitzler 59c203323a aaargh. thumbscroll border friction not quite right.. 0 is valid. :)
also... 0 are valid values of these config vars when getting props



SVN revision: 60072
2011-06-08 06:54:02 +00:00
Daniel Juyung Seo c94f5ac6a6 Elementary: Removed trailing whitespaces.
/me spanks raster. Raster has begun to like whitespaces recently.


SVN revision: 59544
2011-05-20 00:43:05 +00:00
Carsten Haitzler 4bf9689385 disable xrender engine and fix string type for 8bit x11 software
rendering



SVN revision: 59433
2011-05-16 02:26:16 +00:00
Daniel Juyung Seo fa6b6ca83b Elementary elm_config.c: Removed trailing whitespaces.
SVN revision: 59370
2011-05-13 16:55:24 +00:00
Carsten Haitzler 4d8465f5f1 elm can now set vsync for gl windows/clients
SVN revision: 59321
2011-05-11 09:06:59 +00:00
Carsten Haitzler 6fe1fd61a7 allow elm to auto-screenshot and save windows all by itself just with
a special elm_engine var - great way to auto-generate screenies from
apps and change config/theme and everything automatically (via scripts
etc.)



SVN revision: 59185
2011-05-04 10:09:59 +00:00
Tom Hacohen 5dc8b2be5e Elementary gettext: Don't set default textdomain, elm is a lib...
SVN revision: 58949
2011-04-27 07:41:06 +00:00
Michael BOUCHAUD 11e6a2ea75 elementary: correct the homepath on windows from vtorri
SVN revision: 58390
2011-04-06 13:57:42 +00:00
ChunEon Park 5176a3f867 elementary / entry, list, scroller, fileselector_button, config, photocam, map, pan, bg, store, priv, pager, conform, box, clock, flipselector
fixed indentation, removed white spaces.



SVN revision: 58267
2011-04-01 19:08:56 +00:00
Carsten Haitzler 4febdc8e0c start a desktop entry mode. shift arrows start/mod selection. can just
click and drag to select.



SVN revision: 58258
2011-04-01 13:20:40 +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
Tom Hacohen 5028537bc3 Elementary: define the gettext macro in a place that's visible to all widgets.
Patch by Govindaraju SM

SVN revision: 56980
2011-02-13 08:22:06 +00:00
Carsten Haitzler 6eabf29744 ok - lets set cache to tyhe RIGHT value eh?
SVN revision: 56948
2011-02-11 06:16:23 +00:00
Tom Hacohen f5cad764e6 Elementary ui-mirroring: Added on-the-fly ui-mirroring infrastructure
SVN revision: 56845
2011-02-09 16:13:58 +00:00
Tom Hacohen 689ff9abd5 Elementary: Added the infrastructure for ui-mirroring support.
* Added elm_mirrored_get/set to set the system mirrored mode
* Added elm_widget_mirrored/get/set to set each widget's mirrored mode.
* Added code to set the system mirrored mode from translations to elementary and added translations for all the rtl languages. (a trick to load according to locale).
* Future commits will include specific widgets mirrored mode handling.
Work by Aharon Hillel and Tom Hacohen.

SVN revision: 56673
2011-02-03 15:52:49 +00:00
Jae Hwan Kim efaf969d30 From: Jae Hwan Kim <jae.hwan.kim@samsung.com>
Subject: [E-devel]  [Patch] environment parameter - ELM_EFFECT_ENABLE

I want to add the environment parameter "ELM_EFFECT_ENABLE".
It will play a role as the enablement for the effect of all widget.



SVN revision: 56572
2011-01-31 08:18:58 +00:00
Carsten Haitzler e125443cf8 now there's a good idea! let's actually USE thew config value eh?
*spank myself*



SVN revision: 56279
2011-01-24 10:21:58 +00:00
Christopher Michael 34e18ed4e4 If you add new atom names, be sure to bump the atom count. (This
removes more nasty compiler messages about excess elements in array
initializer, etc, etc).



SVN revision: 55784
2010-12-31 01:08:41 +00:00
Carsten Haitzler 12add1f6ef make flush config have a master boolean enable/disable
SVN revision: 55744
2010-12-24 16:02:30 +00:00