Re: [Vala] Read object's properties

2015-03-23 Thread Andrea Del Signore
Hi, because you defined the attributes as fields (eg. private class instance variable) and not a properties. See https://wiki.gnome.org/Projects/Vala/Tutorial#Properties for more details. Try to change the Test class as: public class Test : GLib.Object, Saveable { public string name {

Re: [Vala] state of the art in vala code-completion?

2015-03-16 Thread Andrea Del Signore
Hi, I'm Andrea the author of afrodite, I'm not active any more on vala development due to lack of free time ;) but I'm still subscribed to the list and I also do some spare project with vala (I like this language ;) ) I don't think that afrodite is the way to go (read: it requires a rewrite),

Re: [Vala] Program doesn't quit

2013-12-03 Thread Andrea Del Signore
Hi, I don't know gtk.application / window very well, but are you supposed to run the main loop manually even when using gtkapplication? What happens if you remove Gtk.main call at line 58 of https://github.com/steveno/balistica/blob/master/src/MainWindow.vala Ciao, Andrea Il 03/dic/2013 19:33

Re: [Vala] How to use vala Linux.backtrace?

2013-11-28 Thread Andrea Del Signore
Hello, the main problem with your code is the declaration of the array which should be an array of void pointers: void*[] array = new void*[10]; Here a snippet that works, but the are some other problems with the bindings: 1) The length of strings can't be known by vala and foreach

Re: [Vala] FileStream not closed after going out of scope

2012-09-25 Thread Andrea Del Signore
On Tue, Sep 25, 2012 at 11:32 AM, tomw t...@ubilix.com wrote: But the real problem is that you don't really close the input and error file descriptors and according to the docs [1] you should or if you aren't interested in the input / error fds you can pass null to the function. Thanks for

Re: [Vala] run the metho1 from the method2 of class2

2012-09-12 Thread Andrea Del Signore
On Wed, Sep 12, 2012 at 2:28 AM, Jonas Kulla nyocu...@gmail.com wrote: 2012/9/11 Luis L. Rodríguez Oro lu...@uci.cu Hi all, please help me. ... in Clas2, then pass the this reference when you create your main_window object. Then you can call any public method on it from Clas2. or if you

Re: [Vala] Vala for embedded systems, IDEs, debugging

2012-09-12 Thread Andrea Del Signore
Hi, On Wed, Sep 12, 2012 at 4:02 PM, Fabio Rafael Rosa f...@computerspells.net wrote: I would like something like that back too. And, as it would not use glib, im thinking if it would be possible to implement something like golang objects . What would be cool is that someone has the time to

Re: [Vala] Plugable Code Generators

2012-08-09 Thread Andrea Del Signore
On Wed, Aug 8, 2012 at 12:40 PM, Andrea Del Signore seje...@gmail.com wrote: Hi all, recently with these two commits [1], [2] support for the posix and dova profiles was removed from the vala compiler. Hi again, I've made some progress on this issue and I published my code here: http

[Vala] Plugable Code Generators

2012-08-08 Thread Andrea Del Signore
Hi all, recently with these two commits [1], [2] support for the posix and dova profiles was removed from the vala compiler. I fully agree with this decision, for a number of reason starting from the fact that these profiles were incomplete and somewhat broken. Anyway as I said I like the idea

Re: [Vala] Plugable Code Generators

2012-08-08 Thread Andrea Del Signore
On Wed, Aug 8, 2012 at 12:47 PM, Luca Bruno lethalma...@gmail.com wrote: On Wed, Aug 8, 2012 at 12:40 PM, Andrea Del Signore seje...@gmail.com wrote: Hi all, recently with these two commits [1], [2] support for the posix and dova profiles was removed from the vala compiler. I fully agree

Re: [Vala] Plugable Code Generators

2012-08-08 Thread Andrea Del Signore
On Wed, Aug 8, 2012 at 1:58 PM, Luca Bruno lethalma...@gmail.com wrote: On Wed, Aug 8, 2012 at 12:57 PM, Andrea Del Signore seje...@gmail.com wrote: can you elaborate a little why the transform branch should be merged before? What's its purpose? Anyway we are talking about experimental

Re: [Vala] R: Re: R: POSIX and Dova profiles

2012-08-03 Thread Andrea Del Signore
On Fri, Aug 3, 2012 at 5:26 PM, Jürg Billeter j...@bitron.ch wrote: On Fri, 2012-08-03 at 16:12 +0200, seje...@tin.it wrote: But I think having classes and some more oop machinery will be also useful in micros with very low resources (32-64Kb of memory), where of course a full framework

Re: [Vala] How to check if current thread is main thread?

2012-08-01 Thread Andrea Del Signore
On Fri, 2012-07-06 at 08:11 +0200, mar...@saepia.net wrote: Hi I need to check (for debugging purposes) if current thread is main thread. How can I do that in Vala? I know that in GLib exists g_thread_self() and I can use result of that function for that purpose but in Vala's vapi it has

Re: [Vala] Vala arrays and libraries bindings

2012-05-31 Thread Andrea Del Signore
Hi, On Mon, 2012-05-28 at 03:30 +0400, Дмитрий Петров wrote: Hello everyone, I'm very new to vala and my current task is to build an application using webkit-gtk component. One thing that I can't deal with is how valac translates the arrays, that should be passed to the function. May be

Re: [Vala] custom widget and File observer

2012-05-14 Thread Andrea Del Signore
Hi, On Mon, 2012-05-14 at 08:18 -0400, D.H. Bahr wrote: Hello everyone! I'm working on a teaching exercise: implementing a LifeStream application (for those not aware: LifeStream is an alternative for the desktop metaphor; more info can be found on the book 'Beyond the Desktop Metaphor'

Re: [Vala] Is there a Linux distribution in which vtg (vala tools for gedit) works out-of the box ?

2012-03-09 Thread Andrea Del Signore
Hi, On Thu, 2012-03-08 at 14:15 +0100, Serge Hulne wrote: Is there a Linux distribution in which vtg (vala tools for gedit) works out-of the box ? Alternatively: Does anybody know which Linux disto is used by the developer(s) of VTG ? Developer ;) and I'm using debian sid. Thanks,

Re: [Vala] Binding problem or ClutterGst problem or my problem?

2012-01-13 Thread Andrea Del Signore
Hi, On Fri, 2012-01-06 at 10:02 -0500, Brian Duffy wrote: I'm getting the error set_seek_flags does not exist in the context of ClutterGst.VideoTexture. I have confirmed I'm using Clutter-Gst 1.4.4 with ClutterGst.Version.check(1,4,4) Yes, but the vapi included in vala 0.14 (at least in my

Re: [Vala] X11 and pointers help

2012-01-13 Thread Andrea Del Signore
Hi, On Fri, 2012-01-13 at 17:20 +, Andrew Higginson wrote: Hi, I am trying to get a list of the open windows using _NET_CLIENT_LIST_STACKING (it is important I use this as I need it in the order of stacking) as seen here

Re: [Vala] Iterating over enums

2011-09-30 Thread Andrea Del Signore
On Fri, 2011-09-30 at 11:45 +0200, tomw wrote: Hi, I'm trying to get enum values based upon a match to their string representation. To do that, I would need to iterate over the enums. I was wondering whether there is a simple way of doing it without creating an array first? Thanks,

Re: [Vala] Vala completion support for vim

2011-08-31 Thread Andrea Del Signore
Hi On Tue, 2011-08-30 at 09:29 -0700, Damien Radtke wrote: This program ends with ** Message: symbolresolver.vala:54: file program.vala - can't resolve using directive: Afrodite. I'm assuming this means that I would have to add libafrodite-0.12.vapi to the engine manually, but it's

Re: [Vala] Vala completion support for vim

2011-08-31 Thread Andrea Del Signore
On Wed, 2011-08-31 at 10:25 -0700, Damien Radtke wrote: I don't believe the segfault bug is limited to the CompletionEngine destructor. I ran a quick test by commenting out the entire destructor, and it didn't help (remember I also ran into the problem when I tried creating a CodeDom). I did,

[Vala] Google Native Client and Vala

2011-08-31 Thread Andrea Del Signore
Just in case that's of some interest to someone, I'm doing some experiments binding the Google Native Client API [1] and writing a nacl module in vala. I pushed my results in this git repos: https://gitorious.org/ideas/nacl-vala Regards, Andrea [1] http://code.google.com/chrome/nativeclient/

Re: [Vala] Vala completion support for vim

2011-08-30 Thread Andrea Del Signore
crash to often ;) ~Damien HTH, Andrea Del Signore ___ vala-list mailing list vala-list@gnome.org http://mail.gnome.org/mailman/listinfo/vala-list

[Vala] [ANNOUNCE] Vala Toys for gEdit 0.12.1

2011-08-12 Thread Andrea Del Signore
Bugs fixed: 175: Vtg 0.12.0 crashes The Vala Toys developer Andrea Del Signore ___ vala-list mailing list vala-list@gnome.org http://mail.gnome.org/mailman/listinfo/vala-list

Re: [Vala] Fwd: Problem installing vtg under Debian Sid

2011-08-12 Thread Andrea Del Signore
Hi, On Thu, 2011-08-11 at 07:36 +0200, Serge Hulne wrote: -- Forwarded message -- From: Serge Hulne serge.hu...@gmail.com Date: Wed, Aug 10, 2011 at 10:30 PM Subject: Re: Problem installing vtg under Debian Sid To: Andrea Del Signore seje...@tin.it Thanks ! I have

Re: [Vala] Fwd: Problem installing vtg under Debian Sid

2011-08-12 Thread Andrea Del Signore
Hi, On Thu, 2011-08-11 at 07:41 -0700, bsquared wrote: On Wed, Aug 10, 2011 at 10:36 PM, Serge Hulne serge.hu...@gmail.com wrote: I posted a comment on http://code.google.com/p/vtg/wiki/Compile regarding compiling and installing with latest vala. However the install instructions may be

Re: [Vala] Problem installing vtg under Debian Sid

2011-08-10 Thread Andrea Del Signore
On Wed, 2011-08-10 at 21:29 +0200, Serge Hulne wrote: When attempting to install vtg under Debian Sid , I get the following error message: afrodite library dependencies not met: libvala-0.12 = 0.11.0: not found That's expected you have installed libvala-0.14 (the unstable vala branch)

Re: [Vala] Please keep the Vala Toys for gEdit version 0.10.3 available from the repository, for backwards compatibility with stable versions of Linux.

2011-08-02 Thread Andrea Del Signore
On Tue, 2011-08-02 at 09:29 +0200, Serge Hulne wrote: Hi Andrea, thank your very much for your very detailed answer ! I understand your point (focusing on the development of one specific version makes perfect sense in this context). However, in this case, please keep the Vala Toys for

Re: [Vala] Which Linux distribution is used for developing vtg (Vala toys for gedit) ?

2011-08-01 Thread Andrea Del Signore
Hi Serge, I'm Andrea the developer of vala toys, On Mon, 2011-08-01 at 14:27 +0200, Serge Hulne wrote: Which Linux distibution is used for developing vtg (Vala toys for gedit) ? Currently I'm using debian sid Personally, I prefer Ubuntu, and more specifically Ubuntu LTS (long time

Re: [Vala] Vala logo suggestion(s)

2011-07-31 Thread Andrea Del Signore
On Sat, 2011-07-30 at 10:00 -0500, Carlos Zuniga wrote: On Fri, Jul 29, 2011 at 8:09 PM, Serge Hulne serge.hu...@gmail.com wrote: http://www.clipartof.com/portfolio/cidepix/illustration/letter-v-logo-icons-1067737.html Serge. Can anyone suggest a logo? :) Here's one using the idea of

[Vala] [ANNOUNCE] Vala Toys for gEdit 0.12.0

2011-07-27 Thread Andrea Del Signore
glib-2.0.vapi makes vtg very unstable The Vala Toys developer Andrea Del Signore ___ vala-list mailing list vala-list@gnome.org http://mail.gnome.org/mailman/listinfo/vala-list

[Vala] Genie status

2011-07-27 Thread Andrea Del Signore
Hi all, after the last vala toys release I just asked to the gedit IRC channel what blocks the inclusions of the genie language support in the GtkSourceView [1]. So nacho was kind enough to inform me that the last time he asked about genie status on the vala channel, they told him that genie is

Re: [Vala] Genie status

2011-07-27 Thread Andrea Del Signore
On Wed, 2011-07-27 at 15:35 +0200, Luca Bruno wrote: On Wed, Jul 27, 2011 at 03:05:03PM +0200, Andrea Del Signore wrote: Hi all, after the last vala toys release I just asked to the gedit IRC channel what blocks the inclusions of the genie language support in the GtkSourceView [1

Re: [Vala] Warning or Bug ?

2011-06-08 Thread Andrea Del Signore
On Wed, 2011-06-08 at 09:25 +0200, Serge Hulne wrote: // // Struct to hold key, values pairs: struct pair { public intfreq; public string word; } // Equality function for structs : bool equals (pair a, pair b) { return (Posix.strcmp(a.word,

Re: [Vala] Does Vala have a command-line documentation tool like pydoc or godoc ? (Not a HTML doc generator like valadoc)

2011-06-08 Thread Andrea Del Signore
Hi, On Wed, 2011-06-08 at 10:37 +0200, Serge Hulne wrote: Does Vala have a command-line documentation tool like pydoc or godoc ? which could instantly list all the methods associated with a given class or module ? I'm not aware of such a tool, but I usually open the vapi and search through it

Re: [Vala] auto project automake file templates?

2011-05-12 Thread Andrea Del Signore
On Thu, 2011-05-12 at 04:41 -0400, Ronaldo Nascimento wrote: I am not that familiar with autogen and the other tools, but is there a tool to setup a vala project with the proper config, make and other files? Something that creates the src folder, puts in a main.vala etc. Or are there sample

[Vala] Vala Toys 0.12 Beta 1

2011-05-04 Thread Andrea Del Signore
Hi, I've just released a beta1 tarball of what will became Vala Toys for gEdit 0.12. If you want a Vala Toys version that works well with Vala 0.12, the new gEdit 3.0 and Gtk+ 3.0 please download it at: http://vtg.googlecode.com/files/vtg-0.12.0.0-beta1.tar.bz2 and don't forget to file a bug

Re: [Vala] [ANNOUNCE] Vala Toys for gEdit development version 0.11.0

2011-03-11 Thread Andrea Del Signore
On Mon, 2011-03-07 at 14:19 +, Maciej Piechotka wrote: Great. VTG is what I'm missing in gedit 2.9x. No more: http://gitorious.org/vala-toys/vala-toys/trees/gnome-3.0 First port, testing is welcomed! :) Regards Regards, Andrea ___

Re: [Vala] [ANNOUNCE] Vala Toys for gEdit development version 0.11.0

2011-03-08 Thread Andrea Del Signore
Hi all, I just uploaded a 0.11.1 version in which I just bumped the afrodite so name. Here is the download link: http://vtg.googlecode.com/files/vtg-0.11.1.tar.bz2 Sorry for the inconvenience. Best regards, Andrea ___ vala-list

[Vala] [ANNOUNCE] Vala Toys for gEdit version 0.10.3

2011-03-08 Thread Andrea Del Signore
://code.google.com/p/vtg/wiki/ValaGenProject http://code.google.com/p/vtg/wiki/Documentation http://code.google.com/p/vtg/wiki/Compile http://gitorious.org/vala-toys/vala-toys The Vala Toys developer Andrea Del Signore

Re: [Vala] [ANNOUNCE] Vala Toys for gEdit development version 0.11.0

2011-03-07 Thread Andrea Del Signore
On Mon, 2011-03-07 at 02:33 +, Maciej Marcin Piechotka wrote: On Sun, 2011-03-06 at 20:18 +0100, Andrea Del Signore wrote: ... Will 0.11.x/0.12.0 have support for gedit 2.9x/3.x? Yes that's the plan. Regards Ciao, Andrea ___ vala-list

[Vala] [ANNOUNCE] Vala Toys for gEdit development version 0.11.0

2011-03-06 Thread Andrea Del Signore
/ http://code.google.com/p/vtg/wiki/ValaGenProject http://code.google.com/p/vtg/wiki/Documentation http://code.google.com/p/vtg/wiki/Compile http://gitorious.org/vala-toys/vala-toys The Vala Toys developer Andrea Del Signore

[Vala] Vala toys: source repository migration

2011-01-23 Thread Andrea Del Signore
Hi, a quick message just to say that I migrated vala toys and all my other vala (and non vala) project repositories to gitorious: * http://gitorious.org/vala-toys * http://gitorious.org/tuntun * http://gitorious.org/rhythmpnp * http://gitorious.org/valace Best regards, Andrea

Re: [Vala] Vala Using Gnu Build Tools

2010-11-05 Thread Andrea Del Signore
fine and works very well. If the files are missing, I think I might be send old templeate to you :( I checked your file you have attached but I need to check a few things. Thank you so much for your interest :) You are welcome. Ciao, Andrea 2010/11/4 Andrea Del

Re: [Vala] Vala Using Gnu Build Tools

2010-11-04 Thread Andrea Del Signore
On Thu, 2010-10-28 at 16:06 +0300, Çağlar wrote: Here we go ... As promised here the response... It's the same structure under /usr/share/vtg/template There is an ini file and image file under the same root folder. But it doesn't matter. Yes, but they should be there anyway, for now I

Re: [Vala] development for 0.12

2010-10-27 Thread Andrea Del Signore
On Tue, 2010-10-26 at 14:59 -0700, Evan Nemerson wrote: valadoc. I believe VTG is also doing this but I haven't confirmed it. I can confirm that Vala Toys follows git master in trunk, and vala 0.10 branch in its own 0.10.x branch. Ciao, Andrea

Re: [Vala] Vala Using Gnu Build Tools

2010-10-27 Thread Andrea Del Signore
On Tue, 2010-10-26 at 23:35 +0300, Çağlar wrote: Yeap I created a template. But It doesn't matter. If I could have access to your template file, I can help more :) Ciao, Andrea ___ vala-list mailing list vala-list@gnome.org

Re: [Vala] Problems with vala-gen-project

2010-10-24 Thread Andrea Del Signore
On Sun, 2010-10-24 at 19:17 +0200, CaStarCo wrote: Hello, I'm a newbye with autotools and this sort of programs (like cmake)... I used vala-gen-project to create the base of a project, and when i execute ./autogen.sh in the project directory i obtain an error :p . The scropt autogen.sh calls

Re: [Vala] Vala Using Gnu Build Tools

2010-10-24 Thread Andrea Del Signore
On Sun, 2010-10-24 at 20:24 +0300, Çağlar wrote: Hey guys I'm just a new learner vala and I'm using vtg (Vala Toolkit for Gedit). VTG uses vala-gen-project to create a vala project and it uses autoconf tools. My problem is, when I add library referances such as libsoup-2.4 to my

[Vala] Vala Toys 0.10.3 beta 2

2010-10-11 Thread Andrea Del Signore
Hi all, I just uploaded a new beta tarball of Vala Toys with some new big features: * Combo for a quicker symbol browsing / locating * Live parser error on the bottom pane * Go To outer scope command * Jump to any symbol in the project not just on the current file (CTRL+ALT+M) * Automatically

Re: [Vala] Vala Toys 0.10.3 beta 1

2010-09-30 Thread Andrea Del Signore
On Thu, 2010-09-30 at 09:48 +0100, Bob Hazard wrote: The arms race between VTG, Valencia and ValIDE is really good for end users, keep it up guys! :) -- Sent from my Amiga Is this really true?!? Ciao, Andrea ___ vala-list mailing

[Vala] Vala Toys 0.10.3 beta 1

2010-09-29 Thread Andrea Del Signore
Hi all, I just uploaded a tarball of Vala Toys with some huge refactoring I've done in afrodite in order to reduce its memory consumption. Unfortunately I haven't achieved that goal ( yet ;) ) but on another hand I rationalized / simplify the code a lot and I speedup the parsing process too (by

Re: [Vala] Vala Toys 0.10.3 beta 1

2010-09-29 Thread Andrea Del Signore
On Wed, 2010-09-29 at 14:30 -0700, Robert Powell wrote: Hi Andrea, On Wed, Sep 29, 2010 at 2:22 PM, Andrea Del Signore seje...@tin.it wrote: Hi all, I just uploaded a tarball of Vala Toys with some huge refactoring I've done in afrodite in order

Re: [Vala] Call cairo_destroy() function explicilty

2010-09-29 Thread Andrea Del Signore
On Wed, 2010-09-29 at 16:58 -0400, Erick Pérez wrote: Hi: Hi, I was experimenting with cairo and i need to call cairo_destroy function explicitly. cairo_destroy its tagged with unref_function in cairo.vapi but i dunno how to call it explicitly. The reason is: when using

Re: [Vala] Vala Toys 0.10.3 beta 1

2010-09-29 Thread Andrea Del Signore
On Wed, 2010-09-29 at 14:52 -0700, Robert Powell wrote: On Wed, Sep 29, 2010 at 2:44 PM, Andrea Del Signore seje...@tin.it wrote: yes I'm using it but I don't think that my memory consumption problems are related to that vapi

Re: [Vala] Porting libpurple library to Vala.

2010-09-20 Thread Andrea Del Signore
On Mon, 2010-09-20 at 01:31 -0700, Evan Nemerson wrote: On Mon, 2010-09-20 at 09:08 +0200, Krzysztof Klinikowski wrote: Hello. ... although I can't think of any examples where they are used as fields in a class or struct. Hi, what about the 'default_sort_func' field in the 'TreeModelSort'

Re: [Vala] [ANNOUNCE] Vala Toys for gEdit 0.10.0

2010-09-20 Thread Andrea Del Signore
On Sun, 2010-09-19 at 16:56 +0200, Andrea Del Signore wrote: I'm proud to announce that vtg 0.10.0 is ready: Vala Toys for gEdit - Edit'n'Go I just made available a new release that fixes the Gtk SourceView check in the configure script. Vala Toys 0.10.1 can be downloaded here

[Vala] [ANNOUNCE] Vala Toys for gEdit 0.10.0

2010-09-19 Thread Andrea Del Signore
in the sort function The Vtg developer Andrea Del Signore ___ vala-list mailing list vala-list@gnome.org http://mail.gnome.org/mailman/listinfo/vala-list

[Vala] [ANNOUNCE] Vala Toys for gEdit 0.9.3

2010-08-24 Thread Andrea Del Signore
using generics 147: Duplicated symbols on the completion list 148: Don't show open configure / makefile for backends different from autotools The Vtg developer Andrea Del Signore ___ vala-list mailing list vala-list@gnome.org http

[Vala] [ANNOUNCE] Vala Toys for gEdit 0.9.2

2010-08-20 Thread Andrea Del Signore
completion: spurious ';' character insertions 139: Grep search reports duplicate results 142: Configure help text of the vapidir option is wrong. 143: C Warning are not always interpreted correctly The Vtg developer Andrea Del Signore

Re: [Vala] valasemanticanalyzer error

2010-08-20 Thread Andrea Del Signore
On Fri, 2010-08-20 at 16:43 +0530, Martin DeMello wrote: On Fri, Aug 20, 2010 at 2:55 PM, Abderrahim KITOUNI a.kito...@gmail.com wrote: Hi, the only error I can spot is here: public void map(DFunc fn, Gee.List acc) { should be: public void map(DFunc fn, Gee.ListG acc) martin Andrea

Re: [Vala] valasemanticanalyzer error

2010-08-20 Thread Andrea Del Signore
On Fri, 2010-08-20 at 14:17 +0200, Andrea Del Signore wrote: On Fri, 2010-08-20 at 16:43 +0530, Martin DeMello wrote: On Fri, Aug 20, 2010 at 2:55 PM, Abderrahim KITOUNI a.kito...@gmail.com wrote: Hi, P.S. I really don't understand what are you trying to do can you explain to me

Re: [Vala] valasemanticanalyzer error

2010-08-20 Thread Andrea Del Signore
On Fri, 2010-08-20 at 17:54 +0530, Martin DeMello wrote: On Fri, Aug 20, 2010 at 5:47 PM, Andrea Del Signore seje...@tin.it wrote: Hi, the only error I can spot is here: public void map(DFunc fn, Gee.List acc) { should be: public void map(DFunc fn, Gee.ListG acc

Re: [Vala] valasemanticanalyzer error

2010-08-20 Thread Andrea Del Signore
On Fri, 2010-08-20 at 19:49 +0530, Martin DeMello wrote: On Fri, Aug 20, 2010 at 7:26 PM, Andrea Del Signore seje...@tin.it wrote: Thanks for the explanation but I can't really imagine any other way of doing this without specializing the map method, because I don't see implemented any

Re: [Vala] Building problem

2010-08-11 Thread Andrea Del Signore
On Wed, 2010-08-11 at 00:35 +0200, aecos...@gmail.com wrote: /* Foo */ using Gee; class Foo : GLib.Object { struct Sub { public long initime; public int duration; public ArrayListstring text; } } Hi, your problem is with the class Foo if you should

Re: [Vala] [ANNOUNCE] Vala Toys for gEdit 0.9.0

2010-08-09 Thread Andrea Del Signore
Hi all, due to some build issue and some missing files with the previous distributed tarball archive, I just release a new Vala Toys version, that can be downloaded as always here: http://vtg.googlecode.com/files/vtg-0.9.1.tar.bz2 Sorry for the inconvenience. Andrea

Re: [Vala] Vala command completion in MonoDevelop 2.4

2010-06-25 Thread Andrea Del Signore
Hi, can you retry with svn trunk please? If the issue is still present can you file a bug here http://code.google.com/p/vtg/issues/list and attach your vala source so I can try to eventually fix it? Thank, Andrea On Fri, 2010-06-25 at 08:49 +0300, Kamen Bundev wrote: I'm using SVN

Re: [Vala] Problem connecting signals from Glade to my code

2010-06-06 Thread Andrea Del Signore
On Sat, 2010-06-05 at 14:12 +, Urban Skudnik wrote: Hey guys, I have a problem connecting my code with GUI that I designed in Glade. The problem that I keep stumbling upon is that I'm getting Gtk-WARNING **: Could not find signal handler. My code: On a friendly tip from #vala

Re: [Vala] Fast compile times in vala using TCC instead of GCC?

2010-04-21 Thread Andrea Del Signore
On Tue, 2010-04-20 at 23:46 -0700, Joseph Montanez wrote: Im working on a netbook, so compile times are much longer and the larger my vala code base gets the longer it takes to compile. I've found TCC compiles 4x faster gcc. As a note -pthread needs to be converted into -lpthread, but its

[Vala] ValaCE

2010-02-21 Thread Andrea Del Signore
Hi all, I just setup a google project about my early experiments with Vala on Windows CE. There is still a lot of work to do and any help would be very appreciated especially on the ValaForms library front. Here is the main link: http://valace.googlecode.com/ Sample code:

[Vala] [ANNOUNCE] Vala Toys for gEdit 0.7.0

2010-02-07 Thread Andrea Del Signore
on gee but it is not checked 119: Autocompletion of comments always produce a new line 120: Vbf.ConfigNodeList.values needs to be public The Vtg developer Andrea Del Signore ___ Vala-list mailing list Vala-list@gnome.org http

Re: [Vala] MarkupParser binding

2009-12-09 Thread Andrea Del Signore
Hi, On Tue, 2009-12-08 at 19:35 +0100, Abderrahim Kitouni wrote: Hi, 2009/12/8 Andrea Del Signore seje...@tin.it: Hi Michael, today I had to resolve the same problem and I think that the MarkupParser bindings are wrong. [...] There is also another problem about the user_data field

[Vala] [ANNOUNCE] Vala Toys for gEdit 0.6.1

2009-11-20 Thread Andrea Del Signore
://code.google.com/p/vtg/wiki/Documentation http://code.google.com/p/vtg/wiki/Compile -- Andrea Del Signore ___ Vala-list mailing list Vala-list@gnome.org http://mail.gnome.org/mailman/listinfo/vala-list

Re: [Vala] vala-list.gnome.org

2009-11-19 Thread Andrea Del Signore
Hi all, On Wed, 2009-11-18 at 10:02 +0100, Frederik wrote: Tomaž Vajngerl wrote: ... The problem is that Vala has recently changed its internal Namespace for Collections from Gee to Vala in order to avoid confusion with the real Gee library, but the Code for VTG and the Anjuta plugin is not

Re: [Vala] Compile failed because of libgee.

2009-11-19 Thread Andrea Del Signore
On Wed, 2009-11-18 at 10:02 +0800, G.S.Alex wrote: It seems that I've meet some problems with libgee. The sample code works fine. But when I try to compile Vala toy for gedit and Vala plugin for anjuta, it syas: symbol.vala:23.7-23.9: error: The namespace name `Gee' could not be found using

[Vala] [ANNOUNCE] Vala Toys for gEdit 0.6.0

2009-09-28 Thread Andrea Del Signore
' item 100: The items in the source code outliner should be sorted The Vtg developer Andrea Del Signore ___ Vala-list mailing list Vala-list@gnome.org http://mail.gnome.org/mailman/listinfo/vala-list

Re: [Vala] [ANNOUNCE] Vala Toys for gEdit 0.5.0

2009-09-20 Thread Andrea Del Signore
On Sat, 2009-09-19 at 21:21 +0300, Arkadi Viner wrote: Hello, I have some strange error when I try to install VTE 0.5.0 : checking for VSC... no vsc library dependencies not met: vala-1.0 = 0.5.7: not found configure: error: vsc library dependencies not met: glib-2.0 = 2.12.0 gio-2.0 =

[Vala] [ANNOUNCE] Vala Toys for gEdit 0.5.0

2009-09-19 Thread Andrea Del Signore
: can't compile svn version vtgbracketcompletion.c:604: The Vtg developer Andrea Del Signore ___ Vala-list mailing list Vala-list@gnome.org http://mail.gnome.org/mailman/listinfo/vala-list

Re: [Vala] Chaining up to default implementations in Interface?

2009-05-22 Thread Andrea Del Signore
Feng Yu rainwood...@... writes: On Thu, May 21, 2009 at 3:25 PM, Vlad Grecescu b100dian at gmail.com wrote: On Tue, May 19, 2009 at 1:47 AM, Andrea Del Signore seje...@tin.it wrote: On Mon, 2009-05-18 at 15:12 -0400, Feng Yu wrote: public interface Iface {   public void

Re: [Vala] Chaining up to default implementations in Interface?

2009-05-18 Thread Andrea Del Signore
On Mon, 2009-05-18 at 15:12 -0400, Feng Yu wrote: public interface Iface { public void function() { message(do somethign); } } public class Class:Object, Iface { public void function() { message(class do something); base.function(); } } Hi Yu, the base keyword will

Re: [Vala] [ANNOUNCE] Vala 0.7.0 - Compiler for the GObject type system

2009-04-06 Thread Andrea Del Signore
On Mon, 2009-04-06 at 01:52 -0400, Yu Feng wrote: Hi Jürg, On Sun, 2009-04-05 at 17:54 +0200, Jürg Billeter wrote: We are pleased to announce version 0.7.0 of Vala, a compiler for the GObject type system. Vala 0.7.0 is now available for download at:

[Vala] [ANNOUNCE] Vala Toys for gEdit 0.4.0

2009-02-21 Thread Andrea Del Signore
* Project build / execute For more information see: http://vtg.googlecode.com/ http://code.google.com/p/vtg/wiki/Documentation http://code.google.com/p/vtg/wiki/Compile The Vtg developer Andrea Del Signore ___ Vala-list

[Vala] [ANNOUNCE] Vala Toys for gEdit 0.4.1

2009-02-21 Thread Andrea Del Signore
http://code.google.com/p/vtg/wiki/Compile The Vtg developer Andrea Del Signore ___ Vala-list mailing list Vala-list@gnome.org http://mail.gnome.org/mailman/listinfo/vala-list

Re: [Vala] Properly wrapping callbacks

2009-01-26 Thread Andrea Del Signore
On Mon, 2009-01-26 at 19:15 +0100, Michael 'Mickey' Lauer wrote: Thanks for your mails, I think the VAPI part is clear to me now. Unfortunately I still can't do the actual setting of the callback. I have: === gsm0710_p.h === typedefint

Re: [Vala] Properly wrapping callbacks

2009-01-26 Thread Andrea Del Signore
On Mon, 2009-01-26 at 20:33 +0100, Michael 'Mickey' Lauer wrote: Hi, I think that the delegate should be static: [CCode (instance_pos = 0)] public static delegate int AtCommandCallback( string cmd ); Thanks, still the same error though. Yes there are some other errors there. See

[Vala] [ANNOUNCE] Vala Toys for gEdit 0.3.2

2009-01-20 Thread Andrea Del Signore
release since libvala api 0.5.6 is different from version 0.5.5 The Vtg developer Andrea Del Signore ___ Vala-list mailing list Vala-list@gnome.org http://mail.gnome.org/mailman/listinfo/vala-list

[Vala] [ANNOUNCE] Vala Toys for gEdit 0.3.0

2009-01-08 Thread Andrea Del Signore
/group/vtg-dev/msg/abde707fc870a61d The Vtg developer Andrea Del Signore ___ Vala-list mailing list Vala-list@gnome.org http://mail.gnome.org/mailman/listinfo/vala-list

Re: [Vala] [ANNOUNCE] Vala Toys for gEdit 0.3.0

2009-01-08 Thread Andrea Del Signore
On Thu, 2009-01-08 at 19:03 -0200, Matías De la Puente wrote: Hi Andreas, Just press CTRL+SHIT+C and a new ChangeLog entry will be created in the project ChangeLog file with all the modified and added files. Supported vcs backends: svn, git, bzr

Re: [Vala] Collection Object not in libgee?

2009-01-04 Thread Andrea Del Signore
On Sun, 2009-01-04 at 02:16 -0200, Gabriel Falcão wrote: Hi Folks! Introducing gonnadown Hi! Can anyone say what I've done wrong ? As Ildar has already said use the public gee library. The one included and listed in the vala vapi is just for the vala compiler itself. In other words

[Vala] [ANNOUNCE] Vala Toys for gEdit 0.2.0

2008-12-27 Thread Andrea Del Signore
announcement can be found here: http://groups.google.com/group/vtg-dev/browse_thread/thread/5b513e44ffd68457 The Vtg developer Andrea Del Signore ___ Vala-list mailing list Vala-list@gnome.org http://mail.gnome.org/mailman/listinfo/vala-list

Re: [Vala] [ANNOUNCE] Vala Toys for gEdit 0.1.0

2008-12-18 Thread Andrea Del Signore
On Thu, 2008-12-18 at 22:07 +0100, Andrea Del Signore wrote: On Wed, 2008-12-17 at 13:28 -0200, Matías De la Puente wrote: Andrea P.S. Since I'm an expert gnome developer any advice if this is a simple enough workflow is welcome Sorry read the P.S. as: Since I'm

[Vala] [ANNOUNCE] Vala Toys for gEdit 0.1.0

2008-12-16 Thread Andrea Del Signore
: http://vtg.googlecode.com/ http://code.google.com/p/vtg/wiki/Documentation http://code.google.com/p/vtg/wiki/Compile The Vtg developer Andrea Del Signore ___ Vala-list mailing list Vala-list@gnome.org http://mail.gnome.org

Re: [Vala] Vala Toys for GEdit

2008-12-07 Thread Andrea Del Signore
On Sun, 2008-12-07 at 14:30 +0200, Vlad Grecescu wrote: Hello Andrea, Thanks for the nice project. I just set it up from r136 and I think it really helps people develop faster in Vala! One question: I noticed that the moment you open a paranthesis, vtg shows the parameters popup

Re: [Vala] Threads, synchronization locking

2008-12-02 Thread Andrea Del Signore
On Tue, 2008-12-02 at 20:12 +0100, Frederik wrote: Hi, Hi, I have been experimenting with threads synchronization in Vala with the Dining Philosophers Problem [1] (see attachment). If I want to lock a mutex I have to use: mutex.lock (); // ... mutex.unlock (); If i use

Re: [Vala] Release testing

2008-11-30 Thread Andrea Del Signore
On Sun, 2008-11-30 at 12:06 +0100, Andrea Del Signore wrote: On Sat, 2008-11-29 at 20:25 +0100, Jürg Billeter wrote: Hi all, I'm planning to release Vala 0.5.2 on Monday evening. As there have been a lot of changes since 0.5.1, I'd appreciate it if people working on Vala applications

Re: [Vala] Setting prefix and paths at configure time.

2008-09-23 Thread Andrea Del Signore
On Tue, 2008-09-23 at 23:55 +0200, Federico Pelloni wrote: In my project I need to load some custom pixmaps that will be installed into $prefix/share/projectname/pixmaps, with $prefix being set at configure time. Classical situation for many applications. How can I make my program find that

[Vala] Simple GEdit plugin binding

2008-09-09 Thread Andrea Del Signore
Hi all, here a little tar archive with a gedit vapi file and an sample plugin I wrote to test it. May be it can be useful to someone else. Note that if you want to regenerate the vapi file you need to apply this patch to vapigen: http://bugzilla.gnome.org/show_bug.cgi?id=551205 Happy vala

[Vala] [OT] Vala XChat Plugins Bindings

2008-03-09 Thread Andrea Del Signore
-helloworld.vala --pkg xchat-plugin clean: rm -rf xchat-helloworld.c xchat-helloworld.h *.so *.o /* xchat-helloworld.vala * * Copyright (C) 2008 Andrea Del Signore * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public

Re: [Vala] [OT] Vala XChat Plugins Bindings

2008-03-09 Thread Andrea Del Signore
Hi pancake, On Sun, 2008-03-09 at 14:30 +0100, pancake wrote: On Sun, 09 Mar 2008 13:10:26 +0100 Andrea Del Signore [EMAIL PROTECTED] wrote: ... wow nice :) Thank you Some comments on the vapi follows: ... use 'weak' to skip the vala memory management for a variable. btw reading

Re: [Vala] About gnome applet example....

2008-03-09 Thread Andrea Del Signore
On Sun, 2008-03-09 at 18:30 +0100, heimdall_spe wrote: Hi everybody, Hi Heimdall, [muted] My terminal output : [EMAIL PROTECTED]:~/Programmation/Vala$ valac --pkg gtk+-2.0 --pkg libpanelapplet-2.0 -o pannel_applet pannel_applet.vala pannel_applet.c: In function «main_applet_main:

  1   2   >