Tom Hacohen [Mon, 11 Apr 2016 16:51:15 +0000 (17:51 +0100)]
Elm widget: rename parent to widget_parent and mark as protected.
This removes the conflicts between the different parents and also
indicates that this is to be used internally by widgets and should
not be confused with the normal user visible parent.
It is an internal attribute that should not be used by people
not implementing widgets. Marking it as protected signifies it
as such.
Tom Hacohen [Thu, 7 Apr 2016 13:50:32 +0000 (14:50 +0100)]
Elm: Reparent when swallowing an object.
Make the layout the parent on swallow, and the canvas the parent on
unswallow.
Tom Hacohen [Thu, 7 Apr 2016 13:56:57 +0000 (14:56 +0100)]
Edje: Reparent when swallowing/unswallowing.
On swallow make the edje object the parent, on unswallow the canvas.
Tom Hacohen [Thu, 14 Apr 2016 17:33:25 +0000 (18:33 +0100)]
Evas object: rename smart_parent to render_parent and mark as protected.
Jihoon Kim [Mon, 18 Apr 2016 05:51:46 +0000 (14:51 +0900)]
ecore_imf/wayland: Fix bug language changed event is always called
Carsten Haitzler (Rasterman) [Sun, 17 Apr 2016 03:13:25 +0000 (12:13 +0900)]
eina mempool: don't allow 0 sized mempools
there is no point in having a mempool with a max 0 size. this leads to
us mallocing 0 bytes for the base. not good. make minimim size 1. :)
@fix
Felipe Magno de Almeida [Sun, 17 Apr 2016 17:53:23 +0000 (14:53 -0300)]
Eo: Silence warning about no side-effect in _eo_add_common
Added a cast to void to silence the warning about no side-effect on
GCC.
Stefan Schmidt [Fri, 15 Apr 2016 13:45:15 +0000 (15:45 +0200)]
docs: document ecore_mainloop class, functions and events.
Stefan Schmidt [Fri, 15 Apr 2016 12:37:02 +0000 (14:37 +0200)]
docs: add description for ecore_poller class and cleanup some other parts
Stefan Schmidt [Fri, 15 Apr 2016 12:19:54 +0000 (14:19 +0200)]
docs: fix some typos in ecore_timer EO docs
Daniel Kolesa [Sat, 16 Apr 2016 17:15:35 +0000 (18:15 +0100)]
elua: more file utilities in clib
WooHyun Jung [Sat, 16 Apr 2016 04:47:13 +0000 (13:47 +0900)]
elm_focus: keep all focused states to be consistent when win loses and gets focus
Since focus_clear removed all the focused traces, focus was not reverted well
whenever win lost and got focus repeatedly.
For instance,
1. set focus to button1
2. set focus to button2
3. win focus out and in
4. remove button2
5. focus is on win not on button1
So, focus logic changes to not clear focused states when win loses focus.
@fix
WooHyun Jung [Sat, 16 Apr 2016 01:37:34 +0000 (10:37 +0900)]
elm_win: remove duplicated focused/unfocused event call
These are already called in elm_widget's on_focus.
@fix
Oleksandr Shcherbina [Fri, 15 Apr 2016 18:19:20 +0000 (11:19 -0700)]
evas: update evas-3d-shadow example
Summary: Add possibility turn on/off rendering scene with/without post processing
Reviewers: cedric, raster, Hermet
Subscribers: jpeg
Differential Revision: https://phab.enlightenment.org/D3881
Signed-off-by: Cedric Bail <cedric@osg.samsung.com>
Jee-Yong Um [Fri, 15 Apr 2016 18:14:31 +0000 (11:14 -0700)]
edje_cc: delete anonymous lookup during program removal
Summary:
program_remove attribute allows to remove program inherited from
parent group, but if its action is EDJE_ACTION_TYPE_SCRIPT,
anonymous lookup also should be deleted.
@fix
Reviewers: cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D3875
Signed-off-by: Cedric Bail <cedric@osg.samsung.com>
Cedric Bail [Fri, 15 Apr 2016 18:06:13 +0000 (11:06 -0700)]
autotools: fix make distcheck.
Tom Hacohen [Fri, 15 Apr 2016 17:18:03 +0000 (18:18 +0100)]
Edje tests: Don't ship test edje files and clean up their generation.
This was duplication hell and also quite stupid. This commit should fix
this mess (to an extent).
Tom Hacohen [Fri, 15 Apr 2016 16:54:32 +0000 (17:54 +0100)]
Edje tests: Fix tests when running out of source and remove hack.
There was a seriously horrible hack here to workaround this issue. This
hacks goes all the way back to 3e07236. The essence of the hack was to
try the system files for the tests (and I guess that's why we were
shipping them although we really shouldn't).
This change fixes the file lookup for out of source files.
Hat-tip to zmike for pointing me to abs_top_buildir.
Tom Hacohen [Fri, 15 Apr 2016 13:10:35 +0000 (14:10 +0100)]
Elm test layout: Fix indentation.
Tom Hacohen [Fri, 15 Apr 2016 13:39:11 +0000 (14:39 +0100)]
Elementary tests: Migrate the suite to the efl test infra.
Tom Hacohen [Fri, 15 Apr 2016 12:52:32 +0000 (13:52 +0100)]
Eo: Make sure semi-colons and other directives aren't used in eo_add.
This was already enforced in the legacy version but was not enforced in
the GCC extension version. This change makes sure it's disallowed in
both.
Tom Hacohen [Fri, 15 Apr 2016 12:40:23 +0000 (13:40 +0100)]
Elm ctxpopup: Remove useless implementation of sub_object_add.
Was just calling super and nothing more.
Chris Michael [Fri, 15 Apr 2016 12:13:47 +0000 (08:13 -0400)]
elput: Adjust EAPI for windows build
Small patch to fix definition of EAPI on Windows. Thanks to vtorri for
reporting.
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
Youngbok Shin [Fri, 15 Apr 2016 06:10:49 +0000 (15:10 +0900)]
Elementary Toolbar: Send order signals when a item is added/removed
Summary:
Send order signals for changing item's state according to its order.
It does not affect to existing themes. It sends the following signals.
elm,order,first,item
elm,order,default,item
elm,order,last,item
@feature
Test Plan: N/A
Reviewers: woohyun, jaehwan, eagleeye, cedric
Subscribers: cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D3883
Cedric BAIL [Fri, 15 Apr 2016 00:05:35 +0000 (17:05 -0700)]
autotools: fix build after hungry rebase.
Cedric BAIL [Fri, 15 Apr 2016 00:00:08 +0000 (17:00 -0700)]
examples: add DESTDIR support for install.
Cedric BAIL [Thu, 14 Apr 2016 23:22:23 +0000 (16:22 -0700)]
elementary: make it possible to build the library alone.
Cedric BAIL [Thu, 14 Apr 2016 23:18:19 +0000 (16:18 -0700)]
eio: make it possible to build the library alone.
Cedric BAIL [Thu, 14 Apr 2016 22:41:40 +0000 (15:41 -0700)]
ector: make it possible to build the library alone.
Cedric BAIL [Thu, 14 Apr 2016 22:38:22 +0000 (15:38 -0700)]
ecore: make it possible to build the library alone.
Cedric BAIL [Thu, 14 Apr 2016 22:35:34 +0000 (15:35 -0700)]
edje: make it possible to build the library alone.
Cedric BAIL [Thu, 14 Apr 2016 22:26:50 +0000 (15:26 -0700)]
efl: make it possible to build the library alone.
Cedric BAIL [Wed, 13 Apr 2016 23:23:45 +0000 (16:23 -0700)]
eo: make it possible to build the library alone.
Cedric BAIL [Thu, 14 Apr 2016 00:28:31 +0000 (17:28 -0700)]
autotools: allow reuse of some macro for subdirectory Eolian build.
Cedric BAIL [Wed, 13 Apr 2016 23:16:46 +0000 (16:16 -0700)]
eet: make it possible to build the library alone.
Cedric BAIL [Wed, 13 Apr 2016 23:11:44 +0000 (16:11 -0700)]
emile: make it possible to build the library alone.
Cedric BAIL [Wed, 13 Apr 2016 23:07:33 +0000 (16:07 -0700)]
eina: make it possible to build the library alone.
Cedric BAIL [Wed, 13 Apr 2016 22:55:31 +0000 (15:55 -0700)]
evil: make it possible to build the library alone.
So I have been battling with autotools on this for a full week now,
and what we want is basically impossible. A.k.a. one file definition
and possibility to do a full build or just a partial build of efl.
Even moving to just partial build require to land a massive patch that
change everything in our build system and this is just not a road I
want to take.
For reference, if one day automake allow the use of any kind of variable
(autoconf AC_SUBST expansion or $()) in the _SOURCES parameter, it will
be possible to fix. Alternatively if they allow to build subdirectory
before they do BUILT_SOURCE, it would make it possible to incrementaly
move to only partial build. In the mean time, a less problematic solution
is to duplicate source code.
Cedric BAIL [Thu, 14 Apr 2016 00:27:31 +0000 (17:27 -0700)]
autotools: track dependencies for partial sub build.
Tom Hacohen [Thu, 14 Apr 2016 17:32:45 +0000 (18:32 +0100)]
Eo base: Improve documentation.
Stefan Schmidt [Thu, 14 Apr 2016 16:17:01 +0000 (18:17 +0200)]
docs: add description for class and method parameters
Stefan Schmidt [Thu, 14 Apr 2016 15:10:49 +0000 (17:10 +0200)]
docs: add method parameter descriptions for ecore_idle_*
Now that we support these in docgen catch up in some example EO files.
Stefan Schmidt [Thu, 14 Apr 2016 15:10:05 +0000 (17:10 +0200)]
docs: add class and method parameter descriptions to ecore_idler class
Tom Hacohen [Mon, 11 Apr 2016 16:29:15 +0000 (17:29 +0100)]
Eo base: Make parent nullable.
It's allowed to be null, so mark it as such. This is useful
for languages that support nullable vs non-nullable types.
Shinwoo Kim [Thu, 14 Apr 2016 12:55:14 +0000 (21:55 +0900)]
edje: fix invalid calculation to get a circular dependency
Vitalii Vorobiov [Thu, 14 Apr 2016 11:35:42 +0000 (20:35 +0900)]
datetime_input_ctxpopup: delete previously created ctxpopup if theme is broken
Summary:
Or else it will create dozens of ctxpopup's if user applied wrong or broken
theme that do not remove ctxpopups at all (lack of programs/signals or whatever
brokes ctxpopup behaviour)
@fix
Reviewers: cedric, reutskiy.v.v, NikaWhite, raster, an.kroitor, wc, Hermet
Reviewed By: Hermet
Subscribers: jpeg
Differential Revision: https://phab.enlightenment.org/D3885
Oleksandr Shcherbina [Thu, 14 Apr 2016 11:28:20 +0000 (20:28 +0900)]
evas.canvas3d: Change shade_mode to shader_mode
Summary:
enum Evas.Canvas3D.Shade_Mode are using for choose relevant shader source code.
So renaming have a sence.
Rename evas_canvas3d_shade_mode_set/get property to evas_canvas3d_shader_mode_set/get
Rename internal fields and functions
Reviewers: cedric, Hermet, raster
Subscribers: jpeg
Differential Revision: https://phab.enlightenment.org/D3882
YOhoho [Thu, 14 Apr 2016 11:06:46 +0000 (20:06 +0900)]
Elementary: fix PACKAGE_DATA_DIR value
Summary:
when run elementary_config, It can't find 'font_preview.edj'.
i modified PACKAGE_DATA_DIR value.
Test Plan: elementary_config
Reviewers: Hermet, cedric
Subscribers: conr2d, jpeg
Differential Revision: https://phab.enlightenment.org/D3887
Hermet Park [Thu, 14 Apr 2016 11:02:09 +0000 (20:02 +0900)]
elput - update gitignore.
ignore a generated pc file.
Carsten Haitzler (Rasterman) [Thu, 14 Apr 2016 01:35:18 +0000 (10:35 +0900)]
eo - key obj reference - don't unref on del event callback
object is being deleted by cb - don't unref as we are already at 0.
Chris Michael [Wed, 13 Apr 2016 19:44:13 +0000 (15:44 -0400)]
elput: Add missing optional feature check for systemd
As elput can potentially use systemd-logind for various input device
functions, we should add this as an optional dependency in the
configure checks.
@fix
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
Chris Michael [Wed, 13 Apr 2016 18:16:39 +0000 (14:16 -0400)]
Merge branch 'devs/devilhorns/elput'
The elput library is an efl abstraction for the libinput library which
can be used by various other subsystems (ecore_fb, ecore_drm, etc)
to handle interfacing with libinput without having to duplicate the
code in each subsystem.
Elput currently uses systemd-logind by default to open/close input
devices, but has the ability for other methods (direct opening) to be
easily added through the Manager implementation.
NB: This library is merged with EFL_BETA_API_SUPPORT and is subject to
API changes.
Chris Michael [Thu, 7 Apr 2016 13:10:48 +0000 (09:10 -0400)]
elput: Add API function to set output size on an input device
This function is used to adjust device calibration based on size of
output
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
Chris Michael [Thu, 7 Apr 2016 13:08:00 +0000 (09:08 -0400)]
elput: Add API function to set input window
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
Chris Michael [Thu, 7 Apr 2016 13:00:18 +0000 (09:00 -0400)]
elput: Add event which can be raised when devices get added or removed
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
Chris Michael [Wed, 6 Apr 2016 15:32:42 +0000 (11:32 -0400)]
elput: Handle various events from libinput and pass to ecore_event
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
Chris Michael [Wed, 6 Apr 2016 17:23:36 +0000 (13:23 -0400)]
elput: Add event structures for keymap and modifier sending events
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
Chris Michael [Wed, 6 Apr 2016 14:38:08 +0000 (10:38 -0400)]
elput: Create and send seat frame events when we need to
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
Chris Michael [Wed, 6 Apr 2016 14:26:46 +0000 (10:26 -0400)]
elput: Create and raise event when seat capabilities change
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
Chris Michael [Wed, 6 Apr 2016 12:46:29 +0000 (08:46 -0400)]
elput: Add support for creating and removing devices
This patch adds start of code to create or remove input devices such
as keyboards, pointers, or touch devices.
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
Chris Michael [Fri, 1 Apr 2016 17:22:16 +0000 (13:22 -0400)]
elput: Start code to process events from libinput
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
Chris Michael [Fri, 1 Apr 2016 17:04:25 +0000 (13:04 -0400)]
elput: Add API function to initialize and shutdown input devices
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
Chris Michael [Fri, 1 Apr 2016 13:49:36 +0000 (09:49 -0400)]
elput: Remove vt activate/restore from input manager interface
As this library is just going to deal with libinput, we don't need to
have interface functions to activate or restore a virtual terminal.
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
Chris Michael [Fri, 1 Apr 2016 13:12:36 +0000 (09:12 -0400)]
elput: Add API functions to open and close an input device
This adds new API functions which can be called to open or close an input
device and take control (or release control) of said device
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
Chris Michael [Thu, 31 Mar 2016 16:34:32 +0000 (12:34 -0400)]
elput: Add input manager interface and APIs to connect & disconnect
This commit adds the start of the Elput Manager & Interface code. This
will be used as an inteface to various backend methods of session &
device control (ie: systemd, direct interface, etc). This will provide
various abstractions for working with libinput when opening/closing
input devices.
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
Chris Michael [Thu, 24 Mar 2016 17:38:44 +0000 (13:38 -0400)]
elput: Add test framework for Elput library
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
Chris Michael [Thu, 24 Mar 2016 15:19:31 +0000 (11:19 -0400)]
elput: Initial checkin of elput library
The elput library is an efl abstraction for the libinput library which
can be used by various other subsystems (ecore_fb, ecore_drm, etc) to
handle interfacing with libinput without having to duplicate the code
in each subsystem.
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
Dave Andreoli [Wed, 13 Apr 2016 18:12:18 +0000 (20:12 +0200)]
eo: adjust direction of parameters
They are OUT params in real
Side note: the doc for this function miss the x parameter in the generated .eo.h file
...if someone want to look at the doc generation code.
Felipe Magno de Almeida [Wed, 13 Apr 2016 17:43:43 +0000 (14:43 -0300)]
eina: Fix promise error with eina_promise_all
Fix value_set and error_set signatures which were receiving a
owner. They actually receive the promise and not the owner, this
caused wrong access to memory and were not visible by warnings because
the functions are casted.
This problem caused errors in which it seemed that promise had
actually error'ed when questioned it.
Chris Michael [Wed, 13 Apr 2016 16:55:59 +0000 (12:55 -0400)]
ecore-drm: Don't leak object properties
When fetching possible planes for an output, we end up leaking object
properties here as these were never freed.
@fix
Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
Stefan Schmidt [Wed, 13 Apr 2016 14:56:47 +0000 (16:56 +0200)]
docs: add descriptions and and more to ecore.idle classes
Stefan Schmidt [Wed, 13 Apr 2016 13:34:11 +0000 (15:34 +0200)]
docs: add description for ecore.exe class and events
Stefan Schmidt [Wed, 13 Apr 2016 14:34:55 +0000 (16:34 +0200)]
docs: add nstate widget to elm widget list index
Stefan Schmidt [Wed, 13 Apr 2016 13:06:52 +0000 (15:06 +0200)]
docs: make elementary docs available form main doc page
While elm docs have been merged in they never have been accessible from the
main page of our docs. Fix this by including elm_intro.h and referencing it
from the main page. While we are at it rename it to the scheme we used in EFL.
Another missing piece was the index with all widget references. Never brought
over form the elm legacy tree. Putting this in and we are now at least able to
navigate to all elm widget pages.
Stefan Schmidt [Wed, 13 Apr 2016 12:34:26 +0000 (14:34 +0200)]
docs: generate nstate widget preview for documentation
The preview example code was already there but not hooked up in our preview
screenshot magic.
Carsten Haitzler (Rasterman) [Wed, 13 Apr 2016 10:59:00 +0000 (19:59 +0900)]
edje - delete obj - null out freed items in structs/data
i just got a segv freeing ian invalid ptr... it SEEMS as if something
has tried to free and edje object twice... but i can't be sure as
valgrind can't catch this. it's a one-off, so ensure after free, we
NULL out things we freed to avoid this.
@fix
Amitesh Singh [Wed, 13 Apr 2016 10:41:19 +0000 (16:11 +0530)]
ctxpopup: pass const object ptr as argument in horizontal_get()
Amitesh Singh [Wed, 13 Apr 2016 09:59:29 +0000 (15:29 +0530)]
example: eina log - set eina log levels in examples
Cedric BAIL [Tue, 12 Apr 2016 17:40:58 +0000 (10:40 -0700)]
eldbus: make tests suite more robust to initialization count change.
Carsten Haitzler (Rasterman) [Tue, 12 Apr 2016 16:04:11 +0000 (01:04 +0900)]
eo - add object sotrage in generic values with ref/unref
this adds eo_key_obj_set/get/del() like with data but for object
handles so the obj is ref'd as long as the key and parent obj exists
and then unreffed on deletion. it also tracks deletion of reffed
objects like weak refs and then removes the key automatically.
@feature
Stefan Schmidt [Tue, 12 Apr 2016 15:22:28 +0000 (17:22 +0200)]
tests/eldbus: add now needed calls to ecore_init/shutdown
Since commit
53c66c98c2ae13a8c96b4ae1f9d735cda179e89d eldbus o longer calls
ecore_init() wo we need to handle this. Fixes the edlbus tests cases.
Stefan Schmidt [Tue, 12 Apr 2016 14:41:28 +0000 (16:41 +0200)]
tests/eldbus_cxx: add ecore_init calls in tests now that eldbus does no longer
Since commit
53c66c98c2ae13a8c96b4ae1f9d735cda179e89d eldbus o longer calls
ecore_init() wo we need to handle this. Fixes edlbus_cxx tests cases.
Tom Hacohen [Tue, 12 Apr 2016 14:45:10 +0000 (15:45 +0100)]
Eina matrix/vector tests: pass correct pointers to arrays.
Clang (rightfully) complained about passing double ** where we should have
passed a double *.
Tom Hacohen [Tue, 12 Apr 2016 14:40:42 +0000 (15:40 +0100)]
Eet test: renamed shadowing variable.
Tom Hacohen [Tue, 12 Apr 2016 14:39:36 +0000 (15:39 +0100)]
Elm test web: Correctly disable the web tests.
This gets rid of some clang warnings.
Tom Hacohen [Tue, 12 Apr 2016 14:23:55 +0000 (15:23 +0100)]
Eo event: rename Eo_Event->event_info to Eo_Event->info.
The previous naming was redundant and too long.
Amitesh Singh [Tue, 12 Apr 2016 12:09:50 +0000 (17:39 +0530)]
ctxpopup: implement Efl.Orientation interface functions
Also move horizontal_set/get as legacy APIs.
Carsten Haitzler (Rasterman) [Tue, 12 Apr 2016 08:30:48 +0000 (17:30 +0900)]
ecas gl: ensure make current/window/outpbut enabled before flushing
this should cover up possible texture leaks from gl engine with a null
context on font freeing.
@fix
Carsten Haitzler (Rasterman) [Tue, 12 Apr 2016 05:11:32 +0000 (14:11 +0900)]
ecore - system modules - fix eldbus interdependency and complaints
so ecore uses ecore system modules ... that use eldbus. eldbus inits
ecore. this is a vicious cycle. eldbus shouldnt init ecore. it's a
dependency but should be provided outside of initting eldbus. this all
led to hack-arounds on initting eldbus in these ecore modules that
just break things like shutting down eldbus when still in use.
this ensures any pending messages are canceled on ecore module shutdown.
this ensures every ecore module fully inits and shuts down eldbus as
they should so refcounting the inits works.
this stops eldbus from inittign ecore to avoid the circuluar dependency.
this stops lots of CRI/ERR complaints eg if you run elua with no
cmdline options.
this is just better.
@fix
Carsten Haitzler (Rasterman) [Tue, 12 Apr 2016 03:51:48 +0000 (12:51 +0900)]
ecore system upower - silence if service doesnt exist
this silences come complaint warnings that should not be noisy - eg if
upower dbus service doesn't exist.
Carsten Haitzler (Rasterman) [Tue, 12 Apr 2016 03:47:30 +0000 (12:47 +0900)]
evas gl - fix leak with font glyph textures
some font glyphs are still allocated after tyhe last gl window is
freed which means we can't make current anymore to free textures after
that. this fixes that by flushing gl texture info from the font cache
when the last gl windows are gone.
@fix
Cedric BAIL [Mon, 11 Apr 2016 18:26:06 +0000 (11:26 -0700)]
elementary: we actually need to include this generated files or make dist will fail.
Oleksandr Shcherbina [Mon, 11 Apr 2016 15:50:46 +0000 (00:50 +0900)]
evas.canvas3d: Add FXAA post processing render.
Summary:
Add post processing render function as rendering full screen quard after
rendering to texture.
Add possibility use size of current frame in shader.
Add FXAA shader source files
Reviewers: raster, cedric, Hermet
Subscribers: jpeg
Differential Revision: https://phab.enlightenment.org/D3847
Hermet Park [Mon, 11 Apr 2016 15:36:12 +0000 (00:36 +0900)]
elementary/scroller: code refactoring.
try to update scroller size when popup layout is updated.
Jinyong Park [Mon, 11 Apr 2016 15:28:55 +0000 (00:28 +0900)]
elc_popup: If popup's parent is resized, popup need to resized, too
Summary:
When window's size is not enough to show popup, popup resize smaller to show it in appropriate size.
But if window resize larger enough to show popup, popup is locked in small size.
On the contrary to this case, if window resize too smaller, popup has still large size, so popup doesn't display properly.
Test Plan:
1. elementary_test popup
2. maximize test list window
3. click 8th item, "popup-center-title + items + 3 buttons"
4. restore window size
5. close popup, resize window to smaller than popup in 3).
6. click 8th item, "popup-center-title + items + 3 buttons"
7. restore window size
popup size of 4. and 7. is different
Reviewers: jaehwan, cedric, raster, id213sin, singh.amitesh, SanghyeonLee
Subscribers: jpeg
Differential Revision: https://phab.enlightenment.org/D3854
Hermet Park [Mon, 11 Apr 2016 15:27:55 +0000 (00:27 +0900)]
updated po
Stefan Schmidt [Mon, 11 Apr 2016 14:24:37 +0000 (16:24 +0200)]
docs: add descriptions for ecore_con_eet_{client,server} EO classes
Stefan Schmidt [Mon, 11 Apr 2016 13:39:59 +0000 (15:39 +0200)]
docs: add description to ecore_con_eet_base class
Stefan Schmidt [Mon, 11 Apr 2016 13:01:48 +0000 (15:01 +0200)]
docs: document ecore_animator EO class.
Keep it brief as we want the larger parts being editable from the wiki part of
the new doc system.
Jinyong Park [Mon, 11 Apr 2016 14:31:03 +0000 (23:31 +0900)]
popup : fix scale calculation in _scroller_size_calc
Summary:
when calculate real size of action area in _scroller_size_calc,
edje base scale is omitted.
Reviewers: jaehwan, id213sin, cedric, raster, singh.amitesh, SanghyeonLee, Hermet
Reviewed By: Hermet
Subscribers: Hermet, herb, jpeg
Differential Revision: https://phab.enlightenment.org/D3857