Re: [E-devel] [PATCH] UDP client/server support

2008-11-03 Thread Matt Barclay
On Sun, Nov 2, 2008 at 11:53 PM, The Rasterman Carsten Haitzler <[EMAIL PROTECTED]> wrote: > On Sat, 4 Oct 2008 23:27:33 -0400 "Matt Barclay" <[EMAIL PROTECTED]> babbled: > > hmm - you know what might have been cleaner... on data in get a CLIENT_ADD > eve

Re: [E-devel] Implementing a polygon / image map in edje

2008-10-30 Thread Matt Barclay
On Thu, Oct 30, 2008 at 2:14 PM, Jose Gonzalez <[EMAIL PROTECTED]> wrote: > Matt Barclay wrote: >> >> Hello, >> >> I'm working on an app that let's the user control a chair. In the >> app, the user will click on the headrest, armrest, seatback, or

[E-devel] Implementing a polygon / image map in edje

2008-10-30 Thread Matt Barclay
Hello, I'm working on an app that let's the user control a chair. In the app, the user will click on the headrest, armrest, seatback, or footrest to control its position. Since these pieces of the chair are not rectangles, I'm planning on using some Embryo scripting to get the mouse coordinates

[E-devel] preventing mouse events during state transition

2008-10-24 Thread Matt Barclay
Hello, I'm working on a simple, multi-page application. There are four menu buttons across the top of the screen, and 1-4 command buttons at the bottom depending on which menu is active. When transitioning between menus, I have the command buttons accelerate offscreen to the left. The problem I'

Re: [E-devel] About animate

2008-10-23 Thread Matt Barclay
You can emit signals any time you want with: edje_object_signal_emit(edje, "my,fancy,signal", "mysource"); For debugging, I like to register a stdin callback that let's me type in a signal on STDIN which is then emitted in the application. Then I can simulate events for the GUI and the applicat

[E-devel] [PATCH] UDP client/server support

2008-10-04 Thread Matt Barclay
Hello, With this patch, ecore will have full UDP client/server support. Tooling UDP into the framework wasn't the easiest thing in the world because a UDP server has a single socket (i.e. file handle) that is used to handle all clients, whereas a TCP server generates a new socket for each client t

[E-devel] [PATCH] ecore multicast listener

2008-09-04 Thread Matt Barclay
Hello, I am working on adding multicast support to ecore. This code let's you set up a multicast listener using the call: mcast_svr = ecore_con_server_add(ECORE_CON_REMOTE_MCAST, "239.255.2.1", 1201, NULL); The only thing new about the ecore_con_server_add() call is that the "name" parameter is