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
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
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
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'
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
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
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