Tagged Questions
Vala is a programming language that allows modern programming techniques to be used to write applications that run on the GNOME runtime libraries, particularly GLib and GObject. It has syntax based around C# and is compiled to C which is then compiled to a native binary using the platform's C compiler.
14
votes
7answers
2k views
Vala: Gotchas, Tips and Tricks
As a programmer who is new to Vala, what is your number one piece of advice to someone who is new to the language?
13
votes
3answers
2k views
Vala (C#-like language) compiles to C?
I'm a C# developer who stumbled across a new programming language for linux called vala. It has almost exactly the same syntax as C#, which is awesome. I never really was a big fan of Mono. This ...
10
votes
6answers
2k views
Will Vala survive?
I'm just wondering how the Vala project is coming along. I'm not sure if this will be a great new technology or just one that will fall by the wayside. Does anyone know how many people are working on ...
9
votes
4answers
517 views
Is there a terminal tool to automatically generate autoconf/automake makefiles for a Vala project?
I am trying to create a Vala project to see how i like developing with the language as a possible replacement for Mono. I think that the automake stuff can be used to generate a project template with ...
8
votes
0answers
64 views
Sometimes GTK modal dialogs are not modal — bug or feature?
When I create a custom dialog in GTK (both, GTK2 or GTK3) and set it to be modal, all input to other windows of my application is ignored. This works nearly always, but it fails under certain ...
7
votes
1answer
533 views
Alternative syntax for C++, a la Genie for Vala?
The Vala language compiler can handle a very different looking syntax, Genie, which arguably could be considered a different language or an alternative syntax for one language. AFIK, anything you ...
5
votes
2answers
812 views
Is Vala a sane language to parse, compared to C++?
The problems parsing C++ are well known. It can't be parsed purely based on syntax, it can't be done as LALR (whatever the term is, i'm not a language theorist), the language spec is a zillion pages, ...
5
votes
1answer
385 views
Vala memory management
I am going to call a Vala function from C, and I have a question about memory management.
The function looks like this in Vala:
int[] GetNumbers();
and is translated by valac to C like this
gint* ...
4
votes
1answer
231 views
Vala: reducing the size of dependencies
I am developing small command line utilities using Vala on win32. Programs compiled using vala depend on the following DLLs
libgobject-2.0-0.dll
libgthread-2.0-0.dll
libglib-2.0-0.dll
They are ...
4
votes
1answer
615 views
Can I code for iPhone in Vala?
I'm coding a game for iphone in ooc language (a new language that compiles to c) using OpenGL. It's really going well, and ooc is a language I really like. Now I've just found out about Vala and I ...
4
votes
1answer
212 views
How do I access enviroment variables in Vala?
How do I access enviroment variables in Vala? (as above) it seems simple, but I can't find how g_getenv() is mapped into Vala.
4
votes
2answers
1k views
How to use gtk/glade in vala
I'm trying to make a simple app with glade/gtk/vala. So far I have this:
using Gtk;
class HelloWorldApp : GLib.Object {
const string UI = "test.glade";
public Window main_window;
[CCode ...
4
votes
3answers
505 views
How do I distribute a (open-source) Vala project?
One of the only languages that compiles to a high level language such as C, Vala has interested me for quite a bit. I've been wanting to start a small project with it, but I've been wondering how I ...
4
votes
2answers
395 views
Vala for pidgin plugins
Has anyone tried writing a pidgin or libpurple plugin in Vala? From a quick look at the Vala homepage it seems like it would be a great language for it, and make a good opportunity to learn Vala, but ...
3
votes
1answer
71 views
Performance differences between VALA vs AOT compilations?
I have been developing an image processing application in Java but I have been recently interested in VALA. The reason is because I believe I can increase the application performance (my concern is ...
3
votes
2answers
361 views
Is it OK to use Vala in proprietary projects?
Vala generates C code from supplied Vala sources.
There is no license exception like in Bison.
Is code generated by Vala automatically LGPL or Vala can be used in proprietary projects as well?
3
votes
2answers
381 views
Executing system command in Vala
I would like to execute a command (like ls) in Vala, like the Python os.system function, or, better, the popen function. Any idea ?
3
votes
3answers
1k views
Vala for Android?
Is it possible to write a Vala application and get it to run on an Android device?
3
votes
3answers
282 views
How Do I Make a PHP Module with the Vala Programming Language?
This new language called Vala, which is said to be C#-like and supposedly easier than C++ or C, compiles down into C on Linux with the GCC compiler.
Sounds great. Now I want to use it to make a PHP ...
3
votes
3answers
2k views
Vala vapi files documentation
I'd like to hack on an existing GLib based C project using vala. Basically what I'm doing is, at the beginning of my build process, using valac to generate .c and .h files from my .vala files and then ...
2
votes
2answers
112 views
How likely are we to see a Vala web framework?
Web frameworks are everywhere, and I can't think of a programming language that hasn't a web framework implementation (at least those that I know of). Vala seems the programming language Linux ...
2
votes
1answer
131 views
Sending XKeyEvent to gtk3 applications
I used following documentation to write a method in Vala to send key press events (e.g. <Ctrl>V) to the application which has the focus.
Here is the code:
public void press(string accelerator)
...
2
votes
1answer
62 views
Genie syntax for extern declarations
Can anyone point me towards the syntax for extern declarations in Genie. Extern decls are supported in Vala, therefore they should also be available in Genie but I cannot seem to hit on the correct ...
2
votes
3answers
130 views
Where can I find instructions on how to install Vala on my Mac?
I'm looking into learn the Vala programming language where can I find somewhere to show me how to install it on my Mac?
2
votes
1answer
65 views
Blurred borders in Cairo
What is proper way to draw a blurred rectangular border using the Cairo API? I am writing a patch for Shotwell to add a blurred shadow to the thumbnails in the thumbnail view.
For now I am ...
2
votes
1answer
98 views
Applying a function to every element of a vala array
What is the equivalent of the following python code
map(func, list)
in vala?
2
votes
2answers
150 views
Gee HashMap containing methods as values
I'm trying to fill a Libgee HashMap where each entry has a string as key, and a function as value. Is this possible? I want this sort of thing:
var keybindings = new Gee.HashMap<string, ...
2
votes
1answer
301 views
What are the main advantages, or otherwise, of developing with Vala? [closed]
I read its documentation and it seems quite awesome. But I never heard of any application developed using it.
What are the main advantages and disadvantage of Vala?
2
votes
1answer
98 views
Equivalent term for 'receiver' in languages not Objective-C
In Objective-C when you have
[A something]
A is referred to as the 'receiver'. I am wondering what the equivalent term is in other object-orientated languages, particularly method calling ones as ...
2
votes
5answers
556 views
How would I use gstreamer to stitch a set of images together to form a video slideshow
I'd like to take a set of images and a sound track and use that to form a basic video slideshow using gstreamer.
There seems to be a lot of documentation and examples of basic gstreamer usage like ...
2
votes
1answer
137 views
Large integer and arbitrary/multi precision floats for Vala
Is there a way to use big integers or arbitrary precision types in vala?
2
votes
1answer
718 views
How to generate GIR files from the Vala compiler?
I am trying to create python bindings to a vala library using pygi with gobject introspection. However, I am having trouble generating the GIR files (that I am planning to compile to typelib files ...
1
vote
1answer
43 views
Shrink window in GTK+ dynamically when content shrinks?
I have a window in a Vala application and an image inside it.
This image is changed sometimes by img.set_from_pixbuf(imgdata); and so it's size changes as well. It's embedded in a Gtk.Box.
box = new ...
1
vote
2answers
72 views
is it possible to write system level code in vala
Is it possible to write system level source code in Vala.
like for a small Micro kernel OS?
or for use it in the Linux kernel for modules or device drivers?
1
vote
1answer
52 views
Missing debug info when debugging vala/clutter program in Nemiver
I'm new to vala/clutter development and trying to setup Nemiver to debug my vala/clutter programs. I'm using monodevelop to edit and build the clutter-demo example from the vala web page. I am passing ...
1
vote
1answer
59 views
Vala - Constant Initialization and Assignment in Object Constructor
I've been looking at the Vala programming language over the past few days, and it looks promising. However, I can't figure out how to properly assign a constant (currently the Vala equivalent to ...
1
vote
1answer
102 views
How to generate a typelib for gir file with waf
I use the following wscript_build snippet to build a vala library with its gir file:
lib = bld.shlib (
features = 'c cshlib',
target = 'sample',
name = 'libsample',
vnum = '0.0.0',
...
1
vote
1answer
136 views
What is proper use of Vala thread pools?
I'm trying to use GLib.ThreadPools in Vala, but after searching Google Code and the existing documentation, I can't find any good examples of their use. My own attempts at using them result in ...
1
vote
2answers
70 views
How to extract documentation from vala code?
I would like to know if there is a tool to extract documentation from vala source files like javadoc or doxygen does for Java / C++ /...
I started to document my code with classic
/**
* I'm a ...
1
vote
2answers
147 views
How to get notified when a treeview (liststore) row is selected?
How can I connect to a signal of a Gtk.TreeView so that I am notified when a row is selected? Currently I am connecting to the row_activated signal but this requires a double click on the row and I ...
1
vote
2answers
147 views
How can I monitor directories in vala?
How can I asynchronously monitor some directories in vala? All I need is for a callback method to be called whenever a file in one of the directories is:
created
deleted
modified
I found ...
1
vote
1answer
71 views
Ignore DBUS method in Vala
I have a DBUS server implemented in Vala:
[DBus (name = "com.github.Test")]
public class Test.Server {
public int one() {};
public int two() {};
}
}
I am seeking for some kind of "annotation" ...
1
vote
2answers
261 views
VAPI problems with GTK+ 3
I'm trying to compile some Vala on ArchLinux, and when I try to include the package gtk+-3.0, it seems GDK and GTK+ 2.0 are being included as well; valac --pkg gtk+-3.0 test.vala gives the following ...
1
vote
1answer
53 views
What is the equivalent of g_param_spec_boxed() in vala?
What is the equivalent of g_param_spec_boxed() in vala?
1
vote
1answer
68 views
Using get[int index] and set[int index] to update values in an array
I am trying to provide a way to update a value inside an array in vala, for example myClass.Channels[10]=15, however, I can't find a way to do this in vala. The following works in C#, and I would have ...
1
vote
1answer
88 views
Getting Desktop path with different system languages
Hi
I would like to know if something like
Environment.GetFolderPath(Environment.SpecialFolder.Desktop)
exists for vala. Or how can I get the Desktop path considering different system languages?
...
1
vote
1answer
145 views
What does this error in calling a method mean?
I have just started out in Vala, and I tried to make a simple program that asks two inputs:
An int that specifies a cycle degree; and
A char that contains I / R for either an iterative or recursive ...
1
vote
1answer
106 views
How to add method to Cairo.Context?
I've created the following function for drawing boxes in Cairo with rounded rectangles
void square (Context cr, int x, int y, int sizex, int sizey, int radius)
{
cr.move_to (x + radius, y);
...
1
vote
1answer
363 views
How to do off-screen drawing using Cario in Gtk+?
I'm trying to do my drawing stuff in an Cairo Image Context. Is there a way to load the content of the Image context to a Cairo Context on expose event?
For example I want to draw a series of dots ...
1
vote
1answer
277 views
Gdk.Pixbuf memory leak in Vala, or something else?
here is a simple question. Can you help me find the memory leak in this Vala code ?
If it helps I can post the generated c code too ^^
using GLib;
using Gtk;
using Gee;
void test1 ()
{
...