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 ...
0
votes
1answer
12 views
“Assertion `cr != NULL' failed” when working with Cairo.context from different objects
My program consists of 3 classes. Gtk and Cairo.Context are instantiated in one of them. Other two classes work with this context, passing it around and drawing stuff on it. However, when I try to ...
1
vote
1answer
22 views
valac generating bad C code on DBus program
Can someone spot the problem with this code?
It is compiling with valac but I get an error when gcc tries to compile the C code generated by valac, here's the gcc output:
(...) Weather.c: En la ...
1
vote
1answer
39 views
How do I recursively copy a directory using vala?
I'm new to Vala, so this may be a stupid question.
According to #vala on gimpnet, it is not possible to recursively copy directories using Glib.File.copy. At the moment I am using:
Posix.system("cp ...
1
vote
1answer
55 views
What's wrong with my signal handler?
I'm trying to figure out why my code outputs "1" on the first invocation from the static main function and some apparently random value on subsequent calls from a Gtk.Button.
gtkdream.vala:
using ...
0
votes
1answer
54 views
GTK motion notify event, is_hint always true
I'm new to GTK and am trying Vala to get a feel. (I'm using gtk+3.0)
Can anyone explain why the event->is_hint always seems to return 1? From the docs I get the impression it's supposed to help ...
0
votes
1answer
69 views
How to kill a thread from another thread in vala
I have a main thread which creates another thread to perform some job.
main thread has a reference to that thread. How do I kill that thread forcefully some time later, even if thread is still ...
0
votes
0answers
44 views
Filling a custom-shaped Clutter Actor with a Cairo-drawn canvas
Clutter 1.12
Cogl 1.10
Vala or C or Python.
I might have a fundamental misunderstanding here —
I think of "Actors" as 3D polygon things. I think of their colours as either vertex colors or as ...
0
votes
1answer
90 views
Vala to Python and back again
I am stuck trying to grok the path from Vala/C up into Python and back down again. All my google-fu is leading me in circles.
I want to use Vala to write an API and then employ it from Python (or ...
0
votes
1answer
62 views
Why does Cairo.set_source_rgb paint the whole canvas?
I'm playing around with Clutter/cairo and I'm trying to draw a rectangle; however, it appears that the set_source_rgb is automatically painting the whole canvas with its source, regardless of whether ...
1
vote
1answer
71 views
Compile Vala project with CMake
I want to compile a Vala project that relies on libappindicator with CMake.
However, make aborts with this output:
Linking C executable calm
CMakeFiles/calm.dir/src/CalmWindow.c.o: In function ...
1
vote
1answer
41 views
Howto sub class a Clutter.Actor (involves Cairo/Clutter.Canvas)
Can anyone help me get this to run? I'm aiming for a custom Actor. (I have only just started hacking with Vala in the last few days and Clutter is a mystery too.)
The drawme method is being run (when ...
1
vote
1answer
67 views
Custom GTK widget in Vala not working
I'm trying to make a custom GTK widget in Vala, but I'm already failing at the very first basic attempt, so I'd like some help in knowing where I'm going wrong. I feel like I must be missing something ...
0
votes
0answers
31 views
Use GLib.HashTable in Genie
How can I access GLib.HashTable in Genie? I am trying to write a handler method for libsoup HTTP server. The query parameter is a GLib.HashTable. When I try to access query e.g. with
def ...
0
votes
1answer
36 views
How to dynamically insert and remove rows
I'm looking for a widget which can be dynamically resized. I need to append and remove rows.
There are a methods coming with Grid, like gtk_grid_insert_row or gtk_grid_insert_next_to, but I don't find ...
0
votes
5answers
143 views
Why some compilers prefer hand-crafted parser over parser generators?
According to Vala documentation: "Before 0.3.1, Vala's parser was the classic flex scanner and Bison LALR parser combination. But as of commit eba85a, the parser is a hand-crafted recursive descent ...
0
votes
2answers
61 views
incomprehensible behavior of this
I have few problems dealing with the behavior of this in vala class.
here is my code: (build_and_send1 and build_and_send2 are signals raised by pressing a button)
using GLib;
using Gtk;
public ...
1
vote
1answer
35 views
How to create folders with 666 permission using vala?
Any user needs to be able to delete files and/or folders created by this embedded-linux root process.
But this vala source DirUtils.create_with_parents(folder, 0666) is creating 0644 folders owned by ...
3
votes
2answers
82 views
Constructing Vala Gtk object using builder contents
It would be ideal to be able to create a new widget that uses builder to load its contents, eg.
public class MyDialog : Dialog
{
public MyDialog
{
Gtk.Builder builder = new ...
2
votes
1answer
73 views
Vala and PolicyKit
I'm creating a simple GTK+ based application in Vala, which should be able to write into system directories, so it needs root access. I realize that giving full root access is a bad idea, so I need a ...
0
votes
1answer
40 views
Want to change gtkfilechooser
I wish to change this popup for every program calling
public class OpenFileDialog : FileChooserDialog {
Ideally it would involve removing desktop and changing search etc. I was just hoping ...
1
vote
1answer
56 views
Alsa is playing back vorbis at 2 times the frequency
I am currently trying to learn how to use Alsa to play back an audio file. I seem to have it most of the way, the file loads and plays, but I have to decrease the frequency by half to get it to play ...
0
votes
1answer
70 views
segmentation fault with object instance and signal handler in vala
I'm writting a little http client to test api calls. This is the occasion for learning vala and using gtk3.
I made a class to deal with gtk interface and http request.
using GLib;
using Gtk;
public ...
0
votes
1answer
64 views
Local static constants in Vala: possible?
The land
Vala provides enumerations. But these cannot be defined locally to a sub‑program. Constants can be defined locally to a sub‑program, but seems to not be treated as static expressions (pseudo ...
0
votes
0answers
78 views
WebView title is sometimes null when it shouldn't be
I'm writing a simple browser in Vala and WebKitGTK+.
One of the things I need to do is set the window's title to that of the webpage title, so I monitor title changes with ...
1
vote
1answer
50 views
vala: paramter directions - automated null value check of value-type out parameter
PROBLEM:
I am actually having problems to utilize a seemingly nice feature advertised on the Vala/Tutorial site regarding the declaration of output paramaters.
Here the quote from: ...
0
votes
2answers
84 views
Redirecting output of an external application started with glib
I'm trying to use vala to start an external application using GLib with spawn_command_line_sync().
According to the documentation (http://valadoc.org/#!api=glib-2.0/GLib.Process.spawn_sync) you can ...
0
votes
1answer
68 views
In Vala, why node->set_content doesn't accept the ampersand charater?
The following code
Xml.Node* node = new Xml.Node (null, "name");
node->set_content("&");
produces the following error:
error : unterminated entity reference
Is this a bug or am I doing ...
0
votes
2answers
97 views
width of a gtk.combobox with entry in vala
i'm beginning with vala and i'm unable to set the width of a Gtk.ComboBox.
In Python i can do it like so:
combo = Gtk.ComboBox.new_with_entry()
entry = combo.get_child()
entry.set_width_chars(12)
...
0
votes
1answer
52 views
how to validate against a schema in Vala
I'm want to parse a xml file into a Xml.Doc object and validate it against a schema file in Vala. Does Vala provide this functionality? I've searched http://valadoc.org, but I cannot find anything.
I ...
-1
votes
1answer
153 views
Which programming language has complete implementation API of Gnome 3 (binding)? [closed]
As far as i know there are several programming language to develop program for Gnome 3 (Python, JavaScript, Vala, C, C++).
I was wondering which language has complete implementation API of Gnome 3 ...
3
votes
1answer
100 views
Vala reference counting and parameter passing
After experimenting with Vala and inspecting the generated C source code i came up with the following Vala code:
class Foo : GLib.Object {
public string baz;
}
class Main : GLib.Object {
...
0
votes
1answer
81 views
webkit : how to get the actual content of a page after content was added via javascript?
I want to get the actual content of a page I loaded into a webview after some content has been updated by some jquery
$(document).ready(function() {
...
0
votes
2answers
56 views
how to sort a list in Vala using custom Comparator
I'm trying to get a directory listing and sort it into last modified time order using Vala.
I've got the directory listing part into a List < FileInfo >.
But I cannot figure out how to sort the ...
2
votes
2answers
106 views
Vala: Pass String as Class
Scenario:
I have x number of classes. Lets say 10; Each class does different UI Functions. When a user loads a file, that extension tells the program the classname to load; but it's in the form of a ...
1
vote
2answers
144 views
GStreamer-CRITICAL **: gst_debug_log_valist: assertion `category != NULL' failed?
How might I chase down the root cause of this error message?
(test:1090): GStreamer-CRITICAL **: gst_debug_log_valist: assertion
`category != NULL' failed
I am using ...
2
votes
1answer
86 views
Vala interface generics compiler error
I have the following small example(vala 0.18.1):
namespace Learning
{
public interface IExample<T>
{
public abstract void set_to(T val);
public abstract T get_to();
}
...
2
votes
1answer
119 views
How to start a new Vala project in MonoDevelop?
I have Ubuntu 12.04, MonoDevelop 2.8 and some valac. I know MD supports Vala language but I don't see any support of Vala there actually. If a C solution is made from scratch, then GCC is used for ...
3
votes
1answer
96 views
How to receive UDP data in Vala?
another Vala problem occured: I try to send and receive data via UDP. The sending works and via Wireshark I can see that the server sends the expected result. Problem is: My program doesn't get the ...
0
votes
1answer
80 views
How to get version of program in Vala?
I'm starting to learn Vala and after just a few lines of code, I just encountered my first problem. It should be kinda easy but somehow I can't find anything on Google ('vala version number' or 'vala ...
0
votes
2answers
109 views
Valac “undefined reference” error with gtksourceview
I am currently working on a project in vala and I am having trouble getting the project to compile. The files pass through valac, just fine but then I get this error:
...
0
votes
1answer
161 views
How to repair warning: missing braces around initializer?
The warning is produced by the c code generated by vala.
warning: missing braces around initializer
The code works but the warning is annoying. The vala code referenced by the warning is
struct ...
0
votes
1answer
121 views
How to make a column with a string and pixbuf in GtkTreeview?
I'm working in a app with Gtk+2 and i need to implement a File treeview.
the actual code it's:
public FileTree() {
store = new TreeStore(2,typeof(string),typeof(string));
...
1
vote
1answer
163 views
vala / libxml2 : how to query xpath with namespace ? (xpathRegisterNs?)
how do you register namespace on context with vala so that you can query "//someNamespace:tag" (and not only "//tag")
My starting point is : https://live.gnome.org/Vala/XmlSample
...
-3
votes
1answer
328 views
Debugging Vala SOURCE CODE in an IDE [closed]
I am trying to write an IDE that allows me to debug VALA source code, and step directly into the VALA SOURCE instead of the "mangled" C code generated by valac.
Can anyone recommend a way (using ...
0
votes
1answer
120 views
Drawing 2D Points on a 3D Context
private void init_video () {
uint32 video_flags = SurfaceFlag.SWSURFACE | SurfaceFlag.OPENGL;
screen = Screen.set_video_mode (SCREEN_WIDTH, SCREEN_HEIGHT, SCREEN_BPP, video_flags);
if ...
2
votes
1answer
861 views
No space left on device?
According to df there is plenty (about 50G) space left on the device.
/ # df db
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/mmcblk0p3 61812032 11308736 50503296 ...
2
votes
1answer
138 views
Is this vala code a memory leak?
According to this
Vala doesn't have garbage collection. It does reference counting.
I'm not exactly sure what the difference is between garbage collection and reference counting nor could I ...
2
votes
1answer
121 views
Requires on setter/getter in vala
Is there any way to do something like the following in Vala ?
public int year {
get { return this.year; }
set requires (1500 < value && value < 2050) { this.year = value; }
}
0
votes
1answer
59 views
create grounp menuitem and excute. vala
i read each line from a file. add to menu. want to excute those commands. but when i click, got null command error.
GLib-CRITICAL **: g_spawn_command_line_async: assertion `command_line != NULL' ...
0
votes
0answers
85 views
How to draw a texture as background in gtk?
I want to add a texture as background in a gtk container, is it possible?
What I want is similar to the repeat-x repeat-y properties in css, but it's not supported in gtk yet, so, how to do it ...

