Tagged Questions
PyGObject is a Python module that provides bindings (through introspection) for GObject and associated libraries, most notably GTK+.
26
votes
1answer
376 views
What's the recommended way to unittest Python GUI applications?
I'm currently foolish enough to try to maintaintain two parallel code bases for a Python desktop application, one using PyGObject introspection for GTK 3 and one using PyGTK for GTK 2. I work mainly ...
13
votes
1answer
403 views
Has threading in GTK w/ Python changed in PyGObject introspection?
I'm in the process of converting a program from PyGTK to PyGObject introspection for the first time and I've hit a roadblock with threading. I have a process that takes some time to complete, so I pop ...
6
votes
3answers
220 views
Introspection on pygtk3 possible?
One of the great things of python is the ability to have introspection on methods and functions. As an example, to get the function signature of math.log you can (in ipython) run this:
In [1]: ...
5
votes
1answer
468 views
Gtk.StatusIcon PopupMenu in python
im trying to port some small examples from PyGTK to the new PyGobject bindings, but ive hit a roadblock with a popupmenu, despite getting no errors, no menu is being shown on rightclick, here is the ...
4
votes
2answers
106 views
How do you attach a popup menu to a column header button in GTK2 using PyGObject?
I want to popup a context menu when the user right-clicks on the header row of a Gtk.TreeView. In GTK3, Gtk.TreeViewColumn has a get_button() method, which makes this easy; simply attach the menu to ...
4
votes
3answers
815 views
I'm completly confused with PyObject, PyGTK and GNOME 3 as well
I installed Fedora 15 to use Python3 and GObject do develop a desktop-application, because PyGTK looks outdated:
PyGTK 2.24.0 released
Friday 01 April 2011 by Rafael Villar Burke
PyGTK 2.24.0 ...
4
votes
2answers
1k views
Use glade with pygobject Gtk3
I am converting a script to use Gtk3 using the migration guide (Porting GTK2 to GTK3). I converted my import pygtk to a from gi.repository import Gtk and so on...
I'm stuck because the glade module ...
3
votes
1answer
353 views
Python & GTK3: How to create a Liststore
In PyGtk I always used this to create a ListStore with an Image (using it with an IconView for displaying files):
store = gtk.ListStore(str, gtk.gdk.Pixbuf, bool)
But I can't figure out how to do ...
3
votes
3answers
127 views
Buildout: use dependencies from system Python
I'm trying to use buildout for a Python package which, when used, depends on 2 extension modules: dbus-python and pygobject. Both modules make buildout fail: dbus-python lacks a setup.py file, while ...
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
395 views
How to install PyGObject with Python 3 support
I've been trying to install PyGObject using a variety of methods. First, using apt-get but that only installs it for Python 2.x. Next I attempted to compile it myself but I have been having problems ...
3
votes
1answer
607 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
2answers
106 views
Find / Generate documentation for Gtk, Gdk, GdkPixbuf,
Where can I find proper documentation on the Python objects Gtk, Gdk,... from gi.repository ?
I'm stuck with using dir() and it's of the utmost annoyance...
To sum it up: heelp!
(NOTE: the pygtk doc ...
3
votes
3answers
4k views
How do I install PyGTK / PyGobject on Windows with Python 2.6?
I have an application which depends on PyGTK, PyGobject, and PyCairo that I built to work on Linux. I want to port it over to windows, but when I execute import gobject I get this:
Traceback (most ...
2
votes
2answers
49 views
Create python object from memory address (using gi.repository)
Sometimes I need to call a gtk/gobject function that only exists in C, but returns an object that has a python wrapper. Previously I used a solution based on ctypes that worked well:
...
2
votes
1answer
167 views
Python. Doing some work on background with Gtk GUI
python 3.2.2
gtk3 3.2.2
python-gobject 3.0.2
I'm trying to display a GUI and do some work in the background. As I understand it should look something like this:
#!/usr/bin/env python3
# -*- ...
2
votes
2answers
686 views
installing pygobject on mac for Python 2.6
Does anyone know how to install PyGObject on Mac OSX for Python 2.6. The current distribution available on darwinports is using Python2.4. I want a package using Python2.6
Alternatively, has anyone ...
1
vote
0answers
7 views
Dialog breaks when using GtkBuilder to automatically connect signals, but works when manually connecting signals
I want to have a dialog window where some buttons close the dialog and others don't. The way I do this is by using the response signal from the Gtk.Dialog to call emit_stop_by_name('response') on the ...
1
vote
1answer
18 views
How do I raise a window that is minimized or covered with PyGObject?
I'd been using the answer provided in the PyGTK FAQ, but that doesn't seem to work with PyGObject. For your convenience, here is a test case that works with PyGTK, and then a translated version that ...
1
vote
2answers
55 views
Gtk+ 3 - Issues writing and autoscrolling in a TextView
I have a Gtk.ScrolledWindow() with inside a Gtk.TextView(), (I'm using PyGObject introspection).
After I insert some text and autoscroll from another thread, calling several times in a row the method ...
1
vote
0answers
44 views
pango attributes with pygobject
I have the following code, that uses pygtk:
attr = pango.AttrList()
attr.change(pango.AttrSize((
50 * window_height / 100) * 1000, 0, -1))
attr.change(pango.AttrFamily("Sans", 0, -1))
...
1
vote
1answer
73 views
Python GTK+ Canvas
I'm currently learning GTK+ via PyGobject and need something like a canvas. I already searched the docs and found two widgets that seem likely to do the job: GtkDrawingArea and GtkLayout. I need a few ...
1
vote
1answer
142 views
Python GUI both compatible GTK2 and GTK3
I'd like to create a graphical interface in python2 with GTK+.
For now I'm using gobject-introspection to use GTK3 but I'd like, if possible, to be compatible with GTK2 as well.
#!/usr/bin/python2
...
1
vote
2answers
67 views
Install pygobject without root permissions
I am trying to install pygobject-2.11.3 without root permissions. I downloaded the source, and when running ./configure --prefix=/home/my_username/local i get :
checking for GLIB - version >= ...
1
vote
1answer
93 views
pygobject creating a drag and drop source
from gi.repository import Gtk, Gdk
def drag_data_get_cb(widget, drag_context, selection_data, info, time):
print selection_data.get_data_type()
print widget.get_text()
return ...
1
vote
1answer
315 views
How to install PyGI (Python Gobject Introspection) on Windows?
Installing the python interpreter:
http://python.org/ftp/python/2.7.2/python-2.7.2.msi
and:
http://ftp.gnome.org/pub/GNOME/binaries/win32/pygtk/2.24/pygtk-all-in-one-2.24.0.win32-py2.7.msi
run:
python
...
1
vote
1answer
132 views
PyGObject - left-click menu on a status icon
I'm starting to write a small panel applet for Gnome and I'd like the user to be able to left-click on the status icon to see some options and information e.g. similar to sound icon in Gnome 3, where ...
1
vote
1answer
127 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
1answer
207 views
Create Gtk.Atom with PyGobject Introspection and Gtk+3
Context:
There was once a post on preventing window overlap with Gtk+2.x Recent changes in Gtk+3 have however affected the gdk_property_change() function, which has the PyGobject Introspection ...
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
701 views
Python and d-bus: How to set up main loop?
I have a problem with python and dbus. I checked out the developer docs and specifications, but I don't understand how to set up a main loop. I want to listen for notification events.
See
...
1
vote
1answer
88 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
1answer
698 views
Problem building PyGTK on CentOS
I am trying to build PyGTK on CentOS for a non-standard Python (2.6, vs the out-of-the-box 2.4). It requires that I first build pygobject. pygobject-2.18.0 fails at the configure step. The error ...
1
vote
1answer
707 views
Linux/Python: Monitor /proc/acpi files without polling?
Is there any way to monitor /proc files, such as
/proc/acpi/battery/BAT0/state
/proc/acpi/ac_adapter/ADP0/state
in a non-polling fashion, similar to inotify on a normal filesystem?
I want to do ...
1
vote
3answers
1k views
How to connect to a GObject signal in python, without it keeping a reference to the connecter?
The problem is basically this, in python's gobject and gtk bindings. Assume we have a class that binds to a signal when constructed:
class ClipboardMonitor (object):
def __init__(self):
clip = ...
0
votes
0answers
18 views
Formatting a spinbutton's display in PyGObject/GTK+3
I'm in the process of porting an application from PyGTK to PyGObject. Mostly it's going well because mostly I did conventional things with PyGTK. But there's one somewhat ugly hack I was using to ...
0
votes
1answer
83 views
Save the contents of a Gtk.DrawingArea or Cairo pattern to an image on disk
I've got a small PyGI project which uses a Cairo image surface, which I then scale with a surface pattern and render on a Gtk.DrawingArea.
I'd like to write the scaled version to a PNG file. I've ...
0
votes
0answers
34 views
Is it possible to mix PyGObject with CPython?
I have an application that I am writing in C that will embed a Python interpreter. In the past, I had to write CPython function wrappers for any extension point I wanted to expose to the interpreter. ...
0
votes
1answer
130 views
Cannot Overlay over Gstreamer Video with Gtk.Overlay
I have a project with Python, PyGObject (Gtk 3), and GStreamer (0.11)
I have video in my application, so I'm using a Gtk.Overlay widget so I can put other visual elements over the video background. ...
0
votes
1answer
128 views
DrawingArea Cannot Get XID
I have the following Python 2.7/PyGObject 3.0/PyGST 0.10 module:
from gi.repository import Gtk, Gdk, GdkPixbuf
import pango
import pygst
pygst.require('0.10')
import gst
import Trailcrest
import os, ...
0
votes
1answer
34 views
Variable in Pango Markup
I am using Python 2.7 and PyGObject 3.0. (This is VERY important! the PyGObject syntax changed with 3.0!)
I need to put a variable in place of a string in a markup, so the output is formatted. This ...
0
votes
1answer
71 views
gtk3 get settings value from GtkSettings
I want to programmatically retrieve the value of the word wrap setting for GEdit3 from inside a Python plugin.
The GtkSettings class provides a method to set a string property, but how does one ...
0
votes
1answer
209 views
Can't import Webkit from gi.repository
When I try to import Webkit from gi.repository, it gives ImportError...
from gi.repository import Webkit
ERROR:root:Could not find any typelib for Webkit
Traceback (most recent call last):
File "", ...
0
votes
0answers
67 views
unresponsive drag and drop in pygobject
im trying to get drag and drop working well in pygobject, but it is slow and unresponsive, 90% of the time i have to wave the item i am dragging around before i can drop it successfully, can anyone ...
0
votes
1answer
190 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 ...
0
votes
1answer
303 views
pydev on aptana3 unable to import gi.repository
the following code should work
import gi
import gi.repository
this works in a python shell. And it also works if I save the file as a script then launch it in a terminal.
but in aptana3 i get ...
0
votes
3answers
567 views
Python bindings for a vala library
I am trying to create python bindings to a vala library using the following IBM tutorial as a reference.
My initial directory has the following two files:
test.vala
using GLib;
namespace Test {
...
0
votes
1answer
105 views
GObject.add_emission_hook usage
I was kindly directed to use GObject's "add_emission_hook" following a recent question on SO but I can't seem to find a usage example.
Does anyone have one to share, please?
0
votes
2answers
370 views
Alternative to PyGObject?
Does anyone have an alternative to using PyGObject? I can't seem to get it to run at all in Mac OS X. I'm trying to use papyon, which fails amazingly well if GObject isn't around.