Re: [Vala] Graphic toolkits for Vala?

2010-07-06 Thread Martin DeMello
On Sat, Jul 3, 2010 at 2:32 AM, CaStarCo casta...@gmail.com wrote: Thanks to all :) , now i'm trying to decide if is better to use some web system such as webkit or to use something like clutter because it's more orientated to graphics than webkit... probably i'll take the webkit option

Re: [Vala] Graphic toolkits for Vala?

2010-07-06 Thread Martin DeMello
On Sat, Jul 3, 2010 at 2:14 AM, Martin Olsson mn...@minimum.se wrote: Checkout all the ones listed on this page: http://live.gnome.org/ProjectRidley/CanvasOverview Also take a moment a serious consider doing it using open web standards rendered via a WebKit webview or similar (inside you can

Re: [Vala] Graphic toolkits for Vala?

2010-07-06 Thread George Farris
On Wed, 2010-07-07 at 01:04 +0530, Martin DeMello wrote: On Sat, Jul 3, 2010 at 2:14 AM, Martin Olsson mn...@minimum.se wrote: Checkout all the ones listed on this page: http://live.gnome.org/ProjectRidley/CanvasOverview Also take a moment a serious consider doing it using open web

Re: [Vala] Graphic toolkits for Vala?

2010-07-06 Thread CaStarCo
I was searching about javascript engines and now i have this info: · The V8 engine is programmed into C++ language, and i don't know any binding to C or other languages . · The Webkit project have many ways to work with javascript, but the documentations is very poor U_U . · The

Re: [Vala] Graphic toolkits for Vala?

2010-07-06 Thread CaStarCo
Ok, to simplify the development i'm goint to use the JavaScriptCore library that's inside webkit. It's slower than tracemonkey and V8 but, in any case, if I choose the other ones i'll suffer to combine it with webkit. Some interesting info to make bindings to JavaScript of C functions using

Re: [Vala] Graphic toolkits for Vala?

2010-07-06 Thread Frederik
Here's the beginning of a JavaScriptCore binding (only the necessary functions to call a Vala callback from JavaScript). However, it's not perfect. There is some C compiler warning when compiling 'demo.vala'. I have not found a way to suppress it. Best regards Frederik /* * Compile with * $

Re: [Vala] Graphic toolkits for Vala?

2010-07-06 Thread Frederik
And here's a 'demo.html' to test it: html head /head body h1Demo/h1 script type=text/javascript sayHello(); sayGoodbye(); /script /body /html ___ vala-list mailing list vala-list@gnome.org

Re: [Vala] Graphic toolkits for Vala?

2010-07-02 Thread Andre Osku Schmidt
On Fri, 2010-07-02 at 01:05 +0200, CaStarCo wrote: Hello, the last days i was fighting with some linux diagram editors (such as dia, umbrello, argouml...). And these programs don't cover my needs. graphviz could be to some use http://www.graphviz.org/ i dont know of any GUI frontend for it

Re: [Vala] Graphic toolkits for Vala?

2010-07-02 Thread CaStarCo
Thanks to all :) , now i'm trying to decide if is better to use some web system such as webkit or to use something like clutter because it's more orientated to graphics than webkit... probably i'll take the webkit option because it will help me to extend the application to the web later. Thanks

Re: [Vala] Graphic toolkits for Vala?

2010-07-02 Thread Martin Olsson
Checkout all the ones listed on this page: http://live.gnome.org/ProjectRidley/CanvasOverview Also take a moment a serious consider doing it using open web standards rendered via a WebKit webview or similar (inside you can use SVG or HTML Canvas etc). The benefit of this is that you can probably

[Vala] Graphic toolkits for Vala?

2010-07-01 Thread CaStarCo
Hello, the last days i was fighting with some linux diagram editors (such as dia, umbrello, argouml...). And these programs don't cover my needs. At the end i thought may be i could make a program to help me to create beautiful diagrams.. but never i made a program that works with editable

Re: [Vala] Graphic toolkits for Vala?

2010-07-01 Thread Didier 'Ptitjes'
On 07/02/10 01:05, CaStarCo wrote: At the end i thought may be i could make a program to help me to create beautiful diagrams.. but never i made a program that works with editable graphic elements. ¿Whic libraries should i use? (Probably i'll program it with Vala) Maybe a vala binding for