Tagged Questions
GObject(GLib Object System) provides a portable object system and transparent cross-language interoperability.
12
votes
5answers
5k views
Material to learn GObject and Glib
I am comfortable with C. but need to learn GObject and Glib for gstreamer. All i found on net is Gobject reference manual. Its good but looking for tutorial for Gobject/Glib as the main focus is on ...
6
votes
2answers
176 views
image loading performance problems with python and gobject
I have a script with a GTK(GObject) interface I use for posting to my photo blog.
I'm trying to improve it's responsiveness by loading the images in a background thread.
I've had no luck trying to ...
6
votes
3answers
2k views
How do I create a new signal in pygtk
I've created a python object, but I want to send signals on it. I made it inherit from gobject.GObject, but there doesn't seem to be any way to create a new signal on my object.
5
votes
1answer
230 views
Get GTK+ theme colors with python and GObject introspection
With introduction of GObject introspection the way to access theme colors through widget.get_style() method is gone. I am interested on how to get theme colors when GTK+ is used through GOBject ...
4
votes
2answers
513 views
Is there a good way to copy a Gtk widget?
Is there a way, using the Gtk library in C, to clone a Gtk button (for instance), and pack it somewhere else in the app. I know you can't pack the same widget twice. And that this code obviously ...
3
votes
1answer
54 views
What does gobject.type_register() do?
In PyGTK, what does gobject.type_register() do? The documentation merely says
registers the specified Python class as a PyGTK type
Well, duh. What does registering a class as a PyGtk type do?
3
votes
2answers
98 views
Gtk Switch activate signal not firing
I'm trying to use a Gtk.Switch widget in an app but "activate" signal is not firing by clicks.
It works fine when using the widget with keyboard by hitting reture/space key on it but clicks don't ...
3
votes
1answer
598 views
Mysterious GObject warning: assertion `G_IS_OBJECT (object)' failed
I have a warning when I run my GTK (Python GObject introspection) application and I can't figure out its source. When the application is loading and I'm populating a GtkListStore, after the very first ...
3
votes
1answer
133 views
gobject/gnome/glib bindings for D using GIR?
Does anyone know if there are bindings for the gobject family of librares (glib, Gnome, clutter, etc) available for the D language that use the GIR introspection mechanism?
I would like to write an ...
3
votes
1answer
126 views
Are there any Linux alternatives to libgpod for reading/writing iPod databases?
I am writing a C program to sync my iPod, in the same spirit as gtkpod but for the console. Gtkpod uses their own library, libgpod, for connecting to ipod dbs. I want to know if there are any ...
3
votes
2answers
219 views
How are “out parameters” represented for Seed JavaScript GObject bindings?
I've just started using Seed for development. One thing that Seed's web page mentions is that it "Maps C-isms (say, out arguments, or enums) to things that make sense in JavaScript." Unfortunately, I ...
3
votes
1answer
384 views
Why does python gstreamer crash without “gobject.threads_init()” at the top of my script?
I have written a python script to use gstreamer (pygst and gst modules) to calculate replaygain tags, and it was crashing inconsistently with various gobject errors. I found somewhere that you could ...
3
votes
5answers
277 views
Strangest Error I Have Ever Seen, a.k.a. ) *
I'm writing this awesome application, at least I think it awesome, in C with the magnificent blend of GObject and after a while I start getting this very, extremely strange error. I also believe to ...
3
votes
2answers
648 views
In Gobject, how to override parent class's method belong to an interface?
GObject class A implements interface IA, B is a derived class of A. How can B override A's method that is part of the interface IA?
Or, is this possible in GObject?
I know how to override parent ...
2
votes
2answers
130 views
Casting ClutterActor* to ClutterStage*
I am exploring the possibility of creating a Clutter binding for the D
language ( http://d-programming-language.org/) and have started by
trying some simple tests using dynamic loading of libclutter. ...
2
votes
0answers
332 views
Using Cairo Regions in python with gi.repository
I can't seem to get cairo regions working in within
using the gintrospection.
For example
from gi.repository import cairo
reg = cairo.Region()
will give me
Traceback (most recent call last):
...
2
votes
2answers
141 views
PyGTK properties versus python properties
When deriving from a GObject class in PyGTK, you can define GObject properties like in C, using a __gproperties__ dict, and do_get_property/do_set_property methods, as described here in Sub-classing ...
2
votes
1answer
577 views
What does g_signal_connect_swapped() do?
According to GObject reference
g_signal_connect_swapped(instance, detailed_signal, c_handler, data); connects a GCallback function to a signal for a particular object. The instance on which the ...
1
vote
0answers
31 views
Disconnect a WiFi accespoint using NetworkManager and Python
I’m building an Python application that has to connect and disconnect from Wifi on linux box. I’m using NetworkManager layer, through the nice networkmanager lib found in cnetworkmanager (a python CLI ...
1
vote
1answer
39 views
gtk networking tutorials / resources / examples
Does anyone now where i can find some good tutorials / code samples regarding networking in gtk / glib.
I'm trying to write a client application that connects to a simple server that echos back what ...
1
vote
2answers
100 views
Questions about GObject
What does it offer to an object oriented language such as C++? or is it not possible to use GTK+ without it?
Is the GObject implementation of objects is of a similar quality to that of C++ in terms ...
1
vote
1answer
38 views
Shift focus by navigation key using clutter toolkit in c?
I have to create a vertical menu using clutter in C. Can anyone help me how to implement focus shift using the navigation keys for the menu where i want to highlight the focused menu option.
1
vote
1answer
163 views
Debouncing joystick button input
I have a joystick class written in python with gobject, it works great except for one minor problem. Button bounce when I run the code below, it picks up all the button presses multiple times. How can ...
1
vote
1answer
126 views
What is the gnome keyring api for PyGi?
Does anyone where I can find the gnome keyring api in PyGi?
I used to do:
import gnomekeyring
Now I want to use the new python/gobject introspection so it would be something like:
from ...
1
vote
2answers
202 views
How can I get a list of windows with Wnck, using PyGI?
I just started using PyGI (on Ubuntu Natty), although I have never used pygtk before.
I have used wnck in a wxPython program though, and it was easy enough to get a list of currently opened windows. ...
1
vote
1answer
101 views
How to create a gsignal without parameters in pygtk
The pygtk signal documentation is pretty clear about signals creation, but I could not create a signal that doesn't take parameters.
What I want is to define (like in the example):
class ...
1
vote
1answer
278 views
Using gobject.timeout_add_seconds - Segmentation Fault
I am writing a gui program that allows a user to repeatedly send a message to a phone number with a configurable delay and number of repetitions.
I used QT Designer to create a gui, and now I am ...
1
vote
2answers
251 views
Problem about g_signal_connect, g_cclosure_new, gpointer
// gcc 1.c -o 0 $(pkg-config --cflags --libs gtk+-2.0)
#include <gtk/gtk.h>
#include <gdk/gdkkeysyms.h>
struct tst
{
GtkWidget *win, *vb, *ent, *btn, *lbl;
GtkAccelGroup *acc;
...
1
vote
1answer
282 views
Using enum properties in PyGTK/GObject
This tutorial on using GObject in Python only covers using a property of type gobject.TYPE_FLOAT.
I've adapted it to use an enumerated type:
import pygtk
pygtk.require('2.0')
import gobject
...
1
vote
1answer
87 views
Up To Date Documentation on Wrapping gobjects with Python
I'm looking for up-to-date documentation and tutorials on creating Python bindings for gobjects. Everything I can find on the web is either incomplete or out of date.
1
vote
2answers
391 views
Should a g_object_new have a matching g_object_unref?
I'm using libnotify to show desktop notifications in my application; notify_notification_new() returns a NotifyNotification*, which should be passed as the first param to further function calls of ...
1
vote
1answer
118 views
How can I link to my own verson of GLib rather than the system installed one?
I have been looking through the source of GLib and GObject and writing programs to use certain features of each. But now I'd like to debug though something in the GLib source code without installing ...
1
vote
1answer
179 views
GObject Subclassing in Ruby for custom CellRenderer in GtkTreeView
I am trying to implement a customized CellRenderer in Ruby/GTK, and I've already found this suggestion:
GObject subclassing in Ruby
However, when I try the following:
class CellRendererCustom < ...
1
vote
3answers
719 views
gobject io monitoring + nonblocking reads
I've got a problem with using the io_add_watch monitor in python (via gobject). I want to do a nonblocking read of the whole buffer after every notification. Here's the code (shortened a bit):
class ...
0
votes
1answer
81 views
(GObjectIntrospection) Segmentation fault when trying to create ibus engine using javascript
GObjectIntrospection allows to use C object in any high level language. https://live.gnome.org/GObjectIntrospection
IBus is a input method framework for linux. code.google.com/p/ibus
I'm in bit of ...
0
votes
0answers
24 views
Getting a C GObject pointer from a Python gobject
I'm working with pywebkitgtk, which is a codegen'd binding- so there are a ton of GObject subclasses. The binding isn't complete, and I use ctypes to do a bunch of stuff in addition.
But now I need ...
0
votes
1answer
31 views
Why are GObject properties numbered from 1?
In all of the GObject examples involving properties, I see property #0 set aside for some reason. (Example)
Why is that?
0
votes
0answers
16 views
Issue while adding the clutteractor to a ClutterActor subclass
I have clutteractors to be added to a ClutterActor subclass.
Is it possible to add all the clutteractors after creating the clutteractor subclass . Because whenever i add it after creating the ...
0
votes
0answers
14 views
clutter_flow_layout does not show the images of a clutterActor subclass
I have a ClutterActor subclass which has images and texts grouped together in it.
When i use that actor inside a clutter_flow_layout it shows up. But when i position the same clutter_flow_layout over ...
0
votes
0answers
171 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
22 views
How to replace ClutterTexture with key action?
I want to change the background texture of a Gobject clutter actor whenever it is highlighted. Is there any way i can replace the texture during runtime ?
0
votes
1answer
64 views
Initialize a GObject with parameters which are not GObject properties?
I have a GObject "A" which creates an instance of another GObject "B" in its constructor. The "B" object needs to be passed several construction-only properties. Now when creating an instance of ...
0
votes
1answer
37 views
Is GObject the best way for creating menu options with signals in Clutter?
I want to create a vertical menus with focus switching ability.
Do i need to do it using GObject way to create a custom option with its own event signal or should i create it separately without ...
0
votes
3answers
86 views
Can't Understand Weird C Runtime Error. Need Help?
I am trying to master the GObject Library. So I tried to make a simple Gtk+ Custom Widget by inheriting from GtkHBox. I can't figure out what the problem is or even where the problem is so I'll have ...
0
votes
1answer
25 views
Weird Post-Run Animation Error
I have a Python 2.7/PyGTK 2.24 project. I'm building on Linux Ubuntu 11.
I am using the following code to animate an image's movement across the screen.
def move_fish():
global ...
0
votes
2answers
58 views
Motion Animation
I have a project in Python 2.7 and PyGTK 2.24. I am using the following code to create a motion animation of a gtk.Image inside a gtk.Fixed.
def fishmove():
global fishmove
if ...
0
votes
0answers
114 views
Python toggle text/pixbuf in GtkTextView for a preview / Code preview and incremental parsing
Introduction
I am writing an editor, which I want to use in school. It uses a special markup language which allows to insert formulas or some images. Now I want to replace the markup source with a ...
0
votes
1answer
96 views
How to use my own GObject instace with C++ programs
i would like to know how i can use my own created GObject objects with my c++ code.
I have a simple libary compiled in C that define a GObject object, i would like to use this object defined there in ...
0
votes
0answers
71 views
GObject: spawning threads based on USB events
Here is what I want to achieve:
I need to monitor insertion of new USB devices and spawn threads to handle those inserted devices. In short I need to do the following:
Whenever a new device is ...
0
votes
1answer
188 views
problem with configuring gobject-introspection for pygobject and pygtk
i am trying to install pygtk on my mac which then asked me to install pygobject which then asked me to get gobject-introspection . the problem i have in this installation is while configuring it shows ...