[Vala] clutter gtkglext
- From: "Martin (OpenGeoMap)" <martin opengeomap org>
- Cc: vala-list gnome org
- Subject: [Vala] clutter gtkglext
- Date: Sat, 17 May 2008 14:23:47 -0300
anyone working in this bindings?.
for engineering aplications i think it would be perfect have:
- gtkglext ?¿?¿
- GSL.¿?
- cairo (http://www.vala-project.org/doc/docu/cairo.vapi/index.html)
- webkit (http://www.vala-project.org/doc/docu/webkit-1.0.vapi/index.html)
- glib (http://www.vala-project.org/doc/docu/glib-2.0.vapi/index.html)
- gtk (http://www.vala-project.org/doc/docu/gtk+-2.0.vapi/index.html)
- sqlite (http://www.vala-project.org/doc/docu/sqlite3.vapi/index.html)
- libxml (http://www.vala-project.org/doc/docu/libxml-2.0.vapi/index.html)
Other questions:
Can i try extend a class in several VALA files like c# or ruby. I think
the C file would be a simple ansi C/gobject file.
FILE1.vala
using GLib;
public class Sample : Object {
public Sample () {
}
static int main (string[] args) {
var sample = new Sample ();
sample.run ();
return 0;
}
}
FILE2.vala
/* Basic Vala Sample Code */
using GLib;
public class Sample : Object {
public void run () {
stdout.printf ("Hello World\n");
}
}
Regards.
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]