Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
99 views

It's legal to mix c++0x threads with gio GCancellable?

If I'm not wrong there is no easy way to make a c++0x thread cancellable. I'm wondering if it's legal to use GCancellable mixing it with c++0x thread. If the answer is No I guess I should use ...
1
vote
1answer
33 views

GIO: get_icon() always returns None

According to the GIO Documentation, it is possible to get the Icon of a file through g_file_info_get_icon () http://developer.gnome.org/gio/stable/GFileInfo.html#g-file-info-get-icon But this doesnt ...
1
vote
2answers
95 views

g_file_new_for_path () causes segmentation fault

// gcc -o 0 $(pkg-config --cflags --libs gtk+-2.0) 1.c #include <gtk/gtk.h> int main (int argc, char *argv[]) { GFile *f1 = NULL; f1 = g_file_new_for_path ("/home/user/1.txt"); ...
1
vote
1answer
124 views

Problem about GThread and file copy

// gcc -o 0 $(pkg-config --cflags --libs gtk+-2.0) 1.c #include <gtk/gtk.h> #include <gdk/gdkkeysyms.h> struct tst { GtkWidget *win, *w2, *hb, *vb, *ent, *btn, *b2, *pbar; ...
1
vote
0answers
294 views

glib network connection example

Can you advice some network connection example made with glib/gio libraries. There is quite a good reference manual, but no full example even for basic things. It will be used for simple sending and ...
1
vote
2answers
136 views

How do I set an emblem with GTK/GIO?

I'm trying to set an emblem using gio #include <gtk/gtk.h> #include <gdk/gdk.h> #include <glib.h> #include <gio/gio.h> #include <stdio.h> int main (int argc, char ...
1
vote
2answers
130 views

Where can I find the Python bindings for GIO's GSocket?

Where are the Python bindings, or what is the current status of the Python bindings for GIO's GSocket and other lowlevel network support?
1
vote
1answer
421 views

Async HTTP request using GIO

I would appreciate an example on how to perform an async HTTP POST request using Python's GIO binding. Edit: Example sought without using Twisted.
1
vote
1answer
848 views

Accessing samba shares with gio in python

I am trying to make a simple commandline client for accessing shares via the python bindings of gio (yes, the main requirement is to use gio). I can see that comparing with it's predecessor ...
1
vote
4answers
910 views

Watching sockets with Glib on Windows puts them in non-blocking mode

The following code does not work correctly on Windows (but does on Linux): sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.setblocking(True) sock.connect(address) ...
0
votes
1answer
104 views

Android video play issue

I'm developing an application on Android which heavily uses video playback (an interactive movie) which is already on the market. The problem is that the video playback does not work on a Samsung ...
0
votes
0answers
175 views

gobject-introspection not building

I am trying to compile gobject-introspection-1.31.0 (GI) for i686-cm-linux from a i686-pc-linux-gnu machine. Please find the part of config.log for the same. While configuring GI, libraries of glib, ...
0
votes
1answer
153 views

Vala : Networking with GIO / Socket example doesn't work

I'm trying to copy the "server example" from http://live.gnome.org/Vala/GIONetworkingSample. But when I try to compile, I have the following error : ./src/server/Anais.vala:51.4-51.34: error: 2 ...
0
votes
1answer
61 views

How to create InputStream from string in Vala

Given a string named command, I need to create GLib InputStream object How? Thanks
0
votes
0answers
158 views

Setting up client connection with GIOChannel in C

I'm trying to use GLib's GIO library to create a client app that can communicate with a server over a TCP connection. At the moment I have a simple echo server that simply sends back whatever it ...
0
votes
1answer
84 views

how to use libxml2 to parse data from GInputStream (GLibGIO/GVFS)?

In a GTK application, I'm using xmlParseFile() from libxml2. However, that function can only read local files. How can I instead make it use the GIO framework, so that it can read remote files as ...
0
votes
2answers
226 views

gio: check if volume is mounted

I'm doing something like: mo = gio.MountOperation() mo.connect('ask-password', ask_password_cb) location = gio.File("ssh://leon@concepts.tim-online.nl/home/leon/test.txt") ...
0
votes
1answer
258 views

g_io_channel + socket = client, and GIO not work properly

dude here im gonna create client and combine with GIO Channel, and after i put it all together, it seems appears to work on socket, but the g_io_channel not as watching, like crashing or such.. ...
0
votes
2answers
185 views

chat socket + gio_channel doesnt show incoming packet immediately in c language?

folks please see following code : #include <gio/gio.h> #include <sys/socket.h> //socket(); #include <netinet/in.h> //sockaddr_in #include <arpa/inet.h> #include ...
0
votes
2answers
127 views

how to get dirname of a GFile?

When using GIO and GVFS, how do I best get the directory name of a GFile object? There is a get_basename() function but no get_dirname(). The function should work for remote URIs as well. Also, it ...
0
votes
1answer
119 views

What platforms are supported by gio and gvfs library?

When writing an application using the GIO and GVFS libraries from the GNOME stack what platforms will my application be available for? Will it be possible to compile the application on Windows, ...
0
votes
1answer
89 views

GMount and GVolume

I am new to GIO and I am totally confused between GMount and GVolume. The GIO reference says that GMount is a "mounted" filesystem that you can access while GVolume represents user-visible objects ...
0
votes
1answer
96 views

Multiple mount events on mounting iPod

I am working on an app which has to detect if a storage volume is mounted or unmounted. I am using GIO for that. I listening for the mount-added and mount-removed signals. Everything works fine when I ...
0
votes
1answer
139 views

gtkmm application with Gio file monitors

I need to monitor multiple directories for changes. I'm using Gtk::Main, calling Gio::Init, and adding directory monitors exactly as the documentation suggests. However, the callback is never called, ...
0
votes
1answer
122 views

vala FileInfo get_file_type is UNKNOWN

I've been trying to make a function that goes through a directory and lists all the files in the directory and any sub-directories: void get_listing (string dir) { try { var directory = ...
0
votes
1answer
84 views

Problem with GFile

I have a: GFile* gf = g_file_new_for_path(file_path); in my code. But when i try to compile it, I see error: Undefined reference to: 'g_file_new_for_path' In include section I have #include ...
0
votes
1answer
132 views

gnomevfs or gio?

For async IO using Python, is it preferable to rely on gio or gnomevfs? Also, which one is more "cross-platform"?