Commit Graph

227 Commits

Author SHA1 Message Date
Daniel Juyung Seo 7908a77ad8 elm: Fixed formatting.
SVN revision: 69700
2012-03-28 09:02:22 +00:00
Vincent Torri cbd838c174 Elm: typo in comment
SVN revision: 69515
2012-03-20 04:40:36 +00:00
Jiyoun Park fb217ce3a9 remove deprecated code related with
elm_win_transparent_XXX
function.


SVN revision: 69240
2012-03-12 10:03:38 +00:00
myoungwoon kim 41148d0c62 From: myoungwoon kim <myoungwoon@gmail.com>
Subject: [E-devel] [Patch] Ecore, Elementary: Supporting indicator
opacity mode

This is Myoungwoon Roy Kim.

This patches are for supporting the indicator's opacity mode and made by
Jeonhoon Park(jh1979.park@samsung.com) who is responsible for Indicator
application.

Requirements:
- In mobile device, Indicator area should be displayed as Opacity,
Transparency, or sometimes Translucency according to the UX
requirements.
This requirement can be applied in case of fullscreen based menu and
fullscreen applications like video player etc.

Functional requirements:
1. User can set indicator's opacity mode as opacity, transparency, and
translucency
2. User can get the current indicator's opacity mode.

Currently there are no APIs for supporting the upper functional
requirements.

Thus, he added support for indicator's opacity mode.
It is designed for EFL developers easily to set the indicator's opacity
like the existing indicator's mode.
He added a Elm_Win_Indicator_Opacity_Mode structure variable into
Elm_Win
structure.
Meanwhile, new two APIs are implemented independently from the existing
source code.

Anybody please review this and apply it to upstream code.



SVN revision: 68959
2012-03-07 14:27:36 +00:00
Carsten Haitzler 7a5a301a63 rename a whole host of config-related functions to be elm_config_*
now. yes - no deprecation. no time to do that.



SVN revision: 68810
2012-03-06 12:04:25 +00:00
Carsten Haitzler 7542e629d3 deprecate elm_win_transparent stuff
SVN revision: 68698
2012-03-05 12:03:40 +00:00
Carsten Haitzler 8a65fc1495 add a proper elm api to request a prefeered evas rendering engine.
SVN revision: 68553
2012-02-29 12:45:58 +00:00
Carsten Haitzler 307eb11c75 and now add/implement window icon too. awesome++!!!!!!!
that set of missing stuff that u needed ecore_x for is now done. ugh.
more stuff to do.



SVN revision: 68551
2012-02-29 12:06:12 +00:00
Daniel Juyung Seo 93981f37c3 elm win: Fixed typo. Patch by Jeremy Zurcher <jeremy@asynk.ch>
On Wed, Feb 29, 2012 at 5:10 PM, J??r??my Zurcher <jeremy@asynk.ch>
wrote:
elm_win_widthdrawn_get -> elm_win_withdrawn_get

Jeremy

SVN revision: 68541
2012-02-29 08:56:40 +00:00
Daniel Juyung Seo fd19596e5a elm win: Commented unused function.
Signed-off-by: Daniel Juyung Seo <juyung.seo@samsung.com>

SVN revision: 68533
2012-02-29 05:05:50 +00:00
Christopher Michael bf0c4315fa Elm (wayland): Set frame clip. Fix maximize/unmaximize in wayland.
SVN revision: 68524
2012-02-28 22:52:34 +00:00
Christopher Michael 36f0bb5003 Elm (wayland): Update elm code to reflect recent efl wayland changes.
SVN revision: 68519
2012-02-28 21:58:34 +00:00
Carsten Haitzler f0433e3a5e add callbacks for knowing several states of a window and more api's to
control a windows properties



SVN revision: 68502
2012-02-28 11:20:35 +00:00
Carsten Haitzler 8b615e6dda actually on reflection - doyoun - indicator mode should be like this.
SVN revision: 68432
2012-02-25 05:14:19 +00:00
Doyoun Kang d15d98327f From: Doyoun Kang <doyoun.kang@samsung.com>
Subject: Add feature for showing/hiding indicator

Hi, raster.
As we discussed about indicator, i added feature for indicator.
Please check attached patch files.

1. elementary
i added enumeration to Elm_Illume_Command as below.
- ELM_ILLUME_COMMAND_INDICATOR_SHOW
- ELM_ILLUME_COMMAND_INDICATOR_HIDE

2. ecore
i added atoms/enumerations/APIs as below.
- Ecore_X_Atom ECORE_X_ATOM_E_ILLUME_INDICATOR_STATE;
- Ecore_X_Atom ECORE_X_ATOM_E_ILLUME_INDICATOR_ON;
- Ecore_X_Atom ECORE_X_ATOM_E_ILLUME_INDICATOR_OFF;

typedef enum _Ecore_X_Illume_Indicator_State
{
   ECORE_X_ILLUME_INDICATOR_STATE_UNKNOWN = 0,
   ECORE_X_ILLUME_INDICATOR_STATE_OFF,
   ECORE_X_ILLUME_INDICATOR_STATE_ON
} Ecore_X_Illume_Indicator_State;
         
EAPI void ecore_x_e_illume_indicator_state_set(Ecore_X_Window win,
Ecore_X_Illume_Indicator_State state);
EAPI Ecore_X_Illume_Indicator_State
ecore_x_e_illume_indicator_state_get(Ecore_X_Window win);
EAPI void ecore_x_e_illume_indicator_state_send(Ecore_X_Window win,
Ecore_X_Illume_Indicator_State state);



SVN revision: 68410
2012-02-24 12:33:11 +00:00
Cedric BAIL 9cc9235a0a elementary: oops revert.
SVN revision: 68396
2012-02-24 11:04:06 +00:00
Cedric BAIL 4c6f423481 elementary: avoid segv and don't duplicate call.
SVN revision: 68395
2012-02-24 11:02:55 +00:00
Carsten Haitzler 628927d3d4 use focus order to determine if window never focused before instead of
show count. fixes focus problems in elm tests for entries



SVN revision: 68211
2012-02-21 10:54:46 +00:00
cnook df26dee932 From: cnook <kimcinoo@gmail.com>
Subject: [E-devel] [Patch][elm_win] elm_win_title_set(); can make a
crash with NULL

Have ever try to call elm_win_title_set(win, NULL)? Then try... :-] It
makes "Segmentation Fault".
Yeah, we can add patch in the Ecore side, but we can prevent the
segmentation fault before go inside.
Please check the patch and give any feedbacks. Thanks a lot.



SVN revision: 68154
2012-02-20 11:48:31 +00:00
Christopher Michael a4b470eced Elm: Call function to set wayland mouse pointer.
SVN revision: 67817
2012-02-10 09:17:49 +00:00
Christopher Michael dcee2d3a6b Elm: Start on wayland pointer handling code. (draws but not complete
yet).



SVN revision: 67814
2012-02-10 08:37:16 +00:00
Michael BOUCHAUD 4f51d4593d elementary: add hooks text to elm_win, from Davide Andreoli. Thanks!
SVN revision: 67743
2012-02-07 23:39:19 +00:00
Daniel Juyung Seo 4d06eea2bd elm win.c: Removed unnecessary variable.
SVN revision: 67253
2012-01-17 00:02:02 +00:00
Jiyoun Park c54c6c1ae9 Add new widget for extn socket and plug.
application can use ecore extn socket easyily 
by using elm_window_add with ELM_WIN_SOCKET_IMAGE style. 
And new widget Elm plug is similar with Elm image. 
it can show socket's image using connect API. 
I add test code also(test_win_socket/plug). 



SVN revision: 67245
2012-01-16 17:18:20 +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 4603acbf0f Elm (wayland): Handle frame resize via edje callbacks.
SVN revision: 66968
2012-01-08 11:23:59 +00:00
Christopher Michael c74314f98b Elm (wayland): Use edje signals for move/resize/close, etc, etc on
frame.
Implement 'close' on frame (works).



SVN revision: 66862
2012-01-04 09:30:05 +00:00
Christopher Michael 26127e35b9 Elm (wayland): Add ability to actually move windows around in wayland.
Remove __UNUSED__ on a variable that is actually used (in callback_show).



SVN revision: 66809
2012-01-03 20:41:49 +00:00
Mike Blumenkrantz ac529422ec more sprintfs
SVN revision: 66778
2012-01-03 05:30:13 +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
WooHyun Jung dbf9d0065b elementary/elm_win : when window is shonw at the first time, only
elm_win should be set as focused. not for child objects.


SVN revision: 66174
2011-12-14 00:43:15 +00:00
Mike Blumenkrantz 5b3283d6b5 <stefan_schmidt> discomfitor: successful commits are often just a compile away.
SVN revision: 65914
2011-12-05 16:05:11 +00:00
Mike Blumenkrantz 6a4c087750 better use of sub-object-del
SVN revision: 65911
2011-12-05 15:32:53 +00:00
Mike Blumenkrantz ba25d2754d use sub-object-del signal for win stuff
SVN revision: 65910
2011-12-05 15:27:32 +00:00
Mike Blumenkrantz c74f2f3db5 fix super annoying elm_win bug that went something like this:
win_resize_object_add(win, subobj);
object_content_set(otherobj, subobj);
object_del(win);


ERR<21326>:elm-externals elm_widget.c:978 elm_widget_sub_object_del() removing sub object 0xdeadbeef (some_stupid_widget) from parent 0xRRRRRRRR (win), but elm-parent is different 0xFUCKTHIS (NOT EVEN A WIDGET)!


SVN revision: 65884
2011-12-05 04:26:32 +00:00
Mike Blumenkrantz 88a2ddbe71 move safety check to actually do stuff here
SVN revision: 65872
2011-12-04 22:02:02 +00:00
Mike Blumenkrantz 60b7773ac6 add safety checks for elm_win_center
SVN revision: 65870
2011-12-04 20:44:41 +00:00
Mike Blumenkrantz d3b755cbe6 MIN/MAX macros -> elm_priv.h
+elm_win_center
+elm_win_screen_constrain_get/set


SVN revision: 65859
2011-12-03 22:51:12 +00:00
Daniel Juyung Seo f391a7d6bc elm: Removed trailing whitespaces.
SVN revision: 65725
2011-11-30 17:44:00 +00:00
Mike McCormack 1570bdbe3a elementary: Fix a warning
elm_win.c: In function ‘elm_win_focus_get’:
elm_win.c:2182:4: warning: ‘return’ with no value, in function returning non-void

Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 65527
2011-11-23 07:45:48 +00:00
Gustavo Lima Chaves 080f67be82 [elementary] Fix return value on function.
SVN revision: 65515
2011-11-22 12:37:26 +00:00
Mike Blumenkrantz cc210afd2a add elm_win_screen_size_get using ecore_evas
SVN revision: 65494
2011-11-21 19:51:24 +00:00
Mike Blumenkrantz 8536e81cea add elm_win_focus_get
SVN revision: 65493
2011-11-21 19:41:53 +00:00
Cedric BAIL c3e5006835 elementary: remove warning when building without X.
SVN revision: 65436
2011-11-20 14:00:41 +00:00
Tom Hacohen 14e60a2e4f Elm win: change resize object func to use the win obj geom.
SVN revision: 64949
2011-11-08 13:09:11 +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
Jiyoun Park f3b588730f modify resize job function.
it have to use requested value. 
I also fix bug related with elementary test


SVN revision: 64635
2011-11-02 07:10:29 +00:00
Tom Hacohen c4aa1fc109 Revert "change _elm_win_resize_job use ecore_evas_request_geometry_get function."
This reverts commit 64549.

I gotta adimt, your commit looks correct to me, but hey, it breaks
elementary_test's "Window Inline" test... Please investigate it further
and make re-apply your commit afetr your solve these issues.

SVN revision: 64605
2011-11-01 10:53:05 +00:00
Jiyoun Park a2806400d5 change _elm_win_resize_job use ecore_evas_request_geometry_get function.
currently, only X window system undergo async problem, 
but other windowing system meet same problem if it have asyncmode.
so I dont have to handle per-display specifics higher up above ecore-evas.
(use ecore_evas_request_XXX instead of ecore_evas_x11_request_XXX)
not only async windowing system but also situation wm refuse resizing request, 
make request size != current size.
so I'll implement ee->req value to other windowing system.
--under this line, and those below, will be ignored--

M    elm_win.c


SVN revision: 64549
2011-10-31 08:42:15 +00:00