Wayland API to get the id of focus window [Seema Singh]

2014-02-20 Thread Seema Singh
Hi All,

In our module we have used the below mentioned   ecore_x APIs.
1.ecore_x_window_focus_get()
2.ecore_x_netwm_pid_get()

We are planning to move to wayland platform. But  could not find the below APIs 
in ecore_wayland.h file
Please let me know if anyone has come across the same issue.

Thanks  Regards,
Seema.

___
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-devel


Re: Wayland API to get the id of focus window [Seema Singh]

2014-02-20 Thread Christopher Michael

Hi Semma,

Those APIs do not exist inside Ecore_Wayland yet. There is no concept of 
NetWM in wayland yet so that API was never added. Getting the current 
window which has focus would depend on the current shell. Due to not 
wanting Ecore_Wayland to be tied to any specific shell, that API was not 
added.


Which module are you trying to port ?

Kind Regards,
Chris Michael
SRUK

On 02/20/2014 09:12 AM, Seema Singh wrote:

Hi All,

In our module we have used the below mentioned   ecore_x APIs.
1.ecore_x_window_focus_get()
2.ecore_x_netwm_pid_get()

We are planning to move to wayland platform. But  could not find the below APIs 
in ecore_wayland.h file
Please let me know if anyone has come across the same issue.

Thanks  Regards,
Seema.

___
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-devel



___
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-devel


Re: Wayland API to get the id of focus window [Seema Singh]

2014-02-20 Thread The Rasterman
On Thu, 20 Feb 2014 09:12:50 + (GMT) Seema Singh seema.si...@samsung.com
said:

 Hi All,
 
 In our module we have used the below mentioned   ecore_x APIs.
 1.ecore_x_window_focus_get()
 2.ecore_x_netwm_pid_get()
 
 We are planning to move to wayland platform. But  could not find the below
 APIs in ecore_wayland.h file Please let me know if anyone has come across the
 same issue.

first... by module... what does this code do? is it an enlightenment module? or
is it some external client process?

if it's literally a module inside enlightenment... enlightenment knows the
focus already - check other internal api's. you'll want to be looking at git
master to track dev and features there as that is where the most complete
wayland support is. as for pid - that would be something the compositor can get
by interrogating the fd of the client socket connection.

if this is a 3rd party app/process, the answer is the 3rd party process has no
business knowing either of these bits of information for security reasons and
simply cleanliness of design.

so maybe you should first explain what you are doing, where and why, and
then... we can figure out what to do about it. :)

-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)ras...@rasterman.com

___
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-devel


Re: Re: Wayland API to get the id of focus window [Seema Singh]

2014-02-20 Thread Seema Singh
Hi Carsten,

Thank you for your response.

first... by module... what does this code do? is it an enlightenment module? or
is it some external client process?

it's not an enlightenment module. It's an external client process.


so maybe you should first explain what you are doing, where and why, and
then... we can figure out what to do about it. :)

In our NFC module we are trying to do a NFC conditional APP launch.
Whenever a tag detects, client processes the Tag NDEF data and launch the 
application if its not launched.
  
Focus window pid is used for below check:
1. If focus window APP is not a NFC APP then launch the NFC APP
2. If already launched but not in focus then bring it to foreground.


Regards,
Seema.

--- Original Message ---
Sender : Carsten Haitzlerras...@rasterman.com 
Date   : Feb 20, 2014 18:52 (GMT+09:00)
Title  : Re: Wayland API to get the id of  focus window  [Seema Singh]

On Thu, 20 Feb 2014 09:12:50 + (GMT) Seema Singh seema.si...@samsung.com
said:

 Hi All,
 
 In our module we have used the below mentioned   ecore_x APIs.
 1.ecore_x_window_focus_get()
 2.ecore_x_netwm_pid_get()
 
 We are planning to move to wayland platform. But  could not find the below
 APIs in ecore_wayland.h file Please let me know if anyone has come across the
 same issue.

first... by module... what does this code do? is it an enlightenment module? or
is it some external client process?

if it's literally a module inside enlightenment... enlightenment knows the
focus already - check other internal api's. you'll want to be looking at git
master to track dev and features there as that is where the most complete
wayland support is. as for pid - that would be something the compositor can get
by interrogating the fd of the client socket connection.

if this is a 3rd party app/process, the answer is the 3rd party process has no
business knowing either of these bits of information for security reasons and
simply cleanliness of design.

so maybe you should first explain what you are doing, where and why, and
then... we can figure out what to do about it. :)

-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)ras...@rasterman.com

___
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-devel
pnbsp;/ppnbsp;/p
___
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-devel


Re: Wayland API to get the id of focus window [Seema Singh]

2014-02-20 Thread The Rasterman
On Fri, 21 Feb 2014 06:07:59 + (GMT) Seema Singh seema.si...@samsung.com
said:

 Hi Carsten,
 
 Thank you for your response.
 
 first... by module... what does this code do? is it an enlightenment module?
 or is it some external client process?
 
 it's not an enlightenment module. It's an external client process.
 
 
 so maybe you should first explain what you are doing, where and why, and
 then... we can figure out what to do about it. :)
 
 In our NFC module we are trying to do a NFC conditional APP launch.
 Whenever a tag detects, client processes the Tag NDEF data and launch the
 application if its not launched. 
 Focus window pid is used for below check:
 1. If focus window APP is not a NFC APP then launch the NFC APP
 2. If already launched but not in focus then bring it to foreground.

ok. then you're doing it wrong.

if you're planning on this for tizen 3 or have upgraded EFL, then you want to
look at gustavo's app server api. this is available in efl 1.8 and up:

http://git.enlightenment.org/apps/terminology.git/tree/src/bin/app_server.c
http://git.enlightenment.org/apps/terminology.git/tree/src/bin/app_server.h
http://git.enlightenment.org/apps/terminology.git/tree/src/bin/app_server_eet.c
http://git.enlightenment.org/apps/terminology.git/tree/src/bin/app_server_eet.h

(and look at the elm_app_server api too that it uses).

an alternative for earlier efl is just to ipc to yourself:

http://git.enlightenment.org/apps/terminology.git/tree/src/bin/ipc.c
http://git.enlightenment.org/apps/terminology.git/tree/src/bin/ipc.h

it's pretty simple. app creates a unix socket unique to itself and its
environment, and any new execution of the same binary/app tries to connect to
itself. this is the same case with both app_server and the ipc examples above.
they both work regardless of the display system you use. your app talks to
itself and passes any relevant arguments/info to the existing instance. the
existing instance can do whatever it likes. if you want a window to appear
and/or become focused (become active) use elm_win_activate() on the window.
this will request the wm to make the window active/bring attention to it/focus
it etc slight catch - there is no core wayland protocol for this
currently. this SHOULD be covered in the xdg_shell protocol, but this is new
and i haven't looked at it yet. ecore_evas attracts these things for you and
currently there is no implementation for this because of xdg_shell being new
and shiny and we have not gotten to implementing it all yet, BUT... if you do
what i suggest above, you WILL have an app that is portable and that WILL work
just as soon as the efl bits get hooked together and that the compositor you
have supports the protocols necessary for this.

let me just take the time to advise you to  NOT drop down to layers like
ecore_x in efl *IF* you want to be portable. let the layers that deal with
portability deal with it. if they are currently not, then it's either simply a
missing implementation in efl or maybe entirely missing protocol in wayland
land and working around it in your app will simply waste your time now AND in
future in removing stuff. work with us to ensure you have what you need
implemented. :)


 Regards,
 Seema.
 
 --- Original Message ---
 Sender : Carsten Haitzlerras...@rasterman.com 
 Date   : Feb 20, 2014 18:52 (GMT+09:00)
 Title  : Re: Wayland API to get the id of  focus window  [Seema Singh]
 
 On Thu, 20 Feb 2014 09:12:50 + (GMT) Seema Singh seema.si...@samsung.com
 said:
 
  Hi All,
  
  In our module we have used the below mentioned   ecore_x APIs.
  1.ecore_x_window_focus_get()
  2.ecore_x_netwm_pid_get()
  
  We are planning to move to wayland platform. But  could not find the below
  APIs in ecore_wayland.h file Please let me know if anyone has come across
  the same issue.
 
 first... by module... what does this code do? is it an enlightenment module?
 or is it some external client process?
 
 if it's literally a module inside enlightenment... enlightenment knows the
 focus already - check other internal api's. you'll want to be looking at git
 master to track dev and features there as that is where the most complete
 wayland support is. as for pid - that would be something the compositor can
 get by interrogating the fd of the client socket connection.
 
 if this is a 3rd party app/process, the answer is the 3rd party process has
 no business knowing either of these bits of information for security reasons
 and simply cleanliness of design.
 
 so maybe you should first explain what you are doing, where and why, and
 then... we can figure out what to do about it. :)
 
 -- 
 - Codito, ergo sum - I code, therefore I am --
 The Rasterman (Carsten Haitzler)ras...@rasterman.com
 
 ___
 wayland-devel mailing list
 wayland-devel@lists.freedesktop.org
 http://lists.freedesktop.org/mailman/listinfo/wayland-devel
 pnbsp;/ppnbsp;/p
 

Re: Wayland API to get the id of focus window [Seema Singh]

2014-02-20 Thread Bill Spitzak

Seema Singh wrote:


Focus window pid is used for below check:
1. If focus window APP is not a NFC APP then launch the NFC APP
2. If already launched but not in focus then bring it to foreground.


The NFC app should always launch, but then it should just check if it is 
already running, and if so tell the other one to raise and then exit.

___
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-devel