1
vote
1answer
45 views
Is PyGTK or PyQT preferred for making GTK-native Python apps?
I'm a web developer looking to get my feet wet with coding up a little desktop app for Ubuntu in Python. I've scoured the web looking for the pros and cons of PyGTK vs. PyQT and ca …
1
vote
3answers
41 views
Is there a way to uncheck all radio buttons in a group? (PyGTK)
Is there a way to uncheck all radio buttons in a group with PyGTK? No radio buttons are checked on startup, so I think there must be a way to return them all to that unchecked stat …
1
vote
2answers
41 views
Are there any examples of a Python PyGTK Pango editor toolbar?
I am looking for an example application written in Python and PyGTK.
There should be an editor out there somewhere that already does this.
Some app with a text editor row of butt …
0
votes
2answers
224 views
Watching sockets 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 …
1
vote
1answer
27 views
How to escape characters in Pango markup?
My program has a gtk.TreeView which displays a gtk.ListStore. The gtk.ListStore contains strings like this:
"<span size='medium'><b>"+site_title+"</b></span& …
1
vote
3answers
143 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_ …
0
votes
2answers
38 views
Wildcard for PyGTK States
How do I combine:
button.modify_bg(gtk.STATE_NORMAL, gtk.gdk.color_parse("Green"))
button.modify_bg(gtk.STATE_ACTIVE, gtk.gdk.color_parse("Green"))
button.modify_bg(gtk.STATE_SELE …
2
votes
2answers
33 views
change gtk.Paned handle size
gtk.Paned contains a style property called 'handle-size' which i assume will change the size of the handle, it's read only, so how do i change it?(in PyGtk)
2
votes
1answer
62 views
pyGTK ComboBox List Height
I'm just getting started with pyGtk programming, so bear with me. I have a dialog with a ComboBox. The list that shows up when I click on the combo box has 70+ times in it. It e …
0
votes
2answers
88 views
Pygtk StatusIcon not loading?
Hey everyone,
I'm currently working on a small script that needs to use gtk.StatusIcon(). For some reason, I'm getting some weird behavior with it. If I go into the python interac …
3
votes
3answers
444 views
Virtualenv on Ubuntu with no site-packages
I've been using virtualenv lately while developing in python. I like the idea of a segregated development environment using the --no-site-packages option, but doing this while deve …
1
vote
1answer
19 views
Visibility_notify event in pyGTK
Hello,
I am on windows and I am developing a pygtk app. I need to know when a window is visible or hidden by another window. In order to stop an heavy drawing process.
http://www …
0
votes
3answers
85 views
py2exe’d version of GTK app can’t read png files
I'm working on making a py2exe version of my app. Py2exe fails at copying some
modules in. My original app loads .png files fine, but the exe version does not:
Traceback (most rec …
0
votes
1answer
42 views
Widget Transparency in PyGTK?
What is the best way to have transparency of specific widgets in a PyGTK application? I do not want to use themes because the transparency of each of the widgets will be changing t …
0
votes
1answer
37 views
how can i create this item in pygtk using glade?
Please take a look at this picture:
http://www.uzbozor.com/uploads/Screenshot.png
I want to create a list container as shown in that picture. How do i do it in pygtk using glade? …
