Tagged Questions
18
votes
10answers
3k views
Glade or no glade: What is the best way to use PyGtk?
I've been learning python for a while now with some success. I even managed to create one or two (simple) programs using PyGtk + Glade.
The thing is: I am not sure if the best way to use GTK with ...
13
votes
1answer
406 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 ...
8
votes
2answers
1k views
How can I determine the display idle time from Python in Windows, Linux, and MacOS?
I would like to know how long it's been since the user last hit a key or moved the mouse - not just in my application, but on the whole "computer" (i.e. display), in order to guess whether they're ...
7
votes
1answer
233 views
Resizing gtk TreeView in HPaned problem
I have a treeview in the left side of an hpaned but when I try to move the bar to the left to make the treeview smaller than its automatic size instead of resizing the treeview it expands the entire ...
7
votes
1answer
385 views
GTK and PYGTK difference
many programmers import both gtk and pygtk in this way:
import gtk
import pygtk
I have created a simple program using only gtk and it works:
import gtk
window = gtk.Window()
...
7
votes
8answers
1k views
Is there a Python library that allows to build user interfaces without writing much code?
I am writing editing front ends in Python since several years now, and I am fed up with micromanaging every UI detail of a window or dialog every single time.
Is there a technology that allows me to, ...
7
votes
6answers
2k views
pyGame within a pyGTK application
What is the best way to use PyGame (SDL) within a PyGTK application?
I'm searching for a method that allows me to have a drawing area in the GTK window and at the same time being able to manage both ...
6
votes
1answer
87 views
Display image without gtk
I would like to display an image in Python using gstreamer bindings, but without using GTK+ (I'm on ARM).
I know how to listen to music with python and gstreamer :
#!/usr/bin/python
# Simply ...
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
467 views
twisted + gtk: should I run GUI things in threads, or in the reactor thread?
From what I understand about twisted, nothing running in the reactor thread should block. All blocking activities should be delegated to other threads, to fire callbacks back into the reactor thread ...
6
votes
4answers
2k views
How do I render *parts* of a svg file?
I want to render parts of a svg file by name but for the life of me I cannot figure out how to do so (using python + gtk).
Here's the svg file in question: ...
6
votes
3answers
3k views
Run a function every X minutes - Python
I'm using Python and PyGTK. I'm interested in running a certain function, which gets data from a serial port and saves it, every several minutes.
Currently, I'm using the sleep() function in the time ...
6
votes
10answers
590 views
PHP desktop applications
I have quite a few years experience of developing PHP web applications, and have recently started to delve into Python as well. Recently I've been interested in getting into desktop applications as ...
6
votes
3answers
1k views
What is the fasted way to draw an image in Gtk+?
I have an image/pixbuf that I want to draw into a gtk.DrawingArea and refresh frequently, so the blitting operation has to be fast. Doing it the easy way:
def __init__(self):
self.drawing_area = ...
6
votes
4answers
1k views
How to handle a glade project with many windows
I'm working on a PyGTK/glade application that currently has 16 windows/dialogs and is about 130KB, and will eventually have around 25 windows/dialogs and be around 200KB. Currently, I'm storing all ...
6
votes
6answers
1k views
How do I coherently organize modules for a PyGTK desktop application?
I am working on a desktop application in PyGTK and seem to be bumping up against some limitations of my file organization. Thus far I've structured my project this way:
application.py - holds the ...
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
123 views
Stop a Python program until a user performs an action
My original program used input, like this:
n = input("Enter your favorite number: ")
# do stuff with number
Now, I have switched to a GTK GUI, but still want the accomplish the same thing. Now look ...
5
votes
1answer
428 views
use the system monospace font in gtk textview
I would like to have a GtkTextView in my (Python) program which shows text with the system monospace font. I found many ways which use an expicit font family name and size. However, I would like to ...
5
votes
2answers
308 views
Gtk: How can I get a part of a file in a textview with scrollbars relating to the full file
I'm trying to make a very large file editor (where the editor only stores a part of the buffer in memory at a time), but I'm stuck while building my textview object. Basically- I know that I have to ...
5
votes
3answers
2k views
Scale an image in GTK
In GTK, how can I scale an image? Right now I load images with PIL and scale them beforehand, but is there a way to do it with GTK?
5
votes
6answers
2k views
Progress bar not updating during operation
in my python program to upload a file to the internet, im using a GTK progress bar to show the upload progress. But the problems that im facing is that the progress bar does not show any activity ...
5
votes
3answers
862 views
How do I develop and create a self-contained PyGTK application bundle for MacOS, with native-looking widgets?
I have read that it is possible to build GTK+ on MacOS X. I know that it's possible to create a bundle of a GTK+ application on MacOS. I also know that it's possible to create widgets that look sort ...
5
votes
3answers
1k views
Undo with GTK TextView
I'm trying to keep dependencies to a minimum for a program I contribute to, it's a small text editor.
GTK Textview doesn't seem to come with a built-in undo function. Is there any reference ...
4
votes
3answers
208 views
Cookies with urllib2 and PyWebKitGtk
I am trying to get urllib2 to work with PyWebKitGtk to support cookies. I think it's mostly working, but cookies aren't working between sessions. The cookies.txt file is saved, and it does look like ...
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
2answers
126 views
Dumping a subclass of gtk.ListStore using pickle
I am trying to dump a custom class using pickle. The class was subclassed from gtk.ListStore, since that made it easier to store particular data and then display it using gtk. This can be reproduced ...
4
votes
1answer
338 views
PyGTK set icon of window with stock image
I feel like this should be pretty simple, but I guess I am missing something.
So I want to set the icon of a window with one of the stock images. I have tried:
windowIcon = ...
4
votes
1answer
332 views
Detecting blowing on a microphone with GStreamer (or another library)
Can I detect blowing on a microphone with GStreamer (or another Linux-compatible sound library)?
I can get some informations about the sound doing that:
import gtk, gst
def playerbinMessage(bus, ...
4
votes
2answers
653 views
How to auto-scroll a gtk.scrolledwindow?
i have a treeview-widget inside a scrolledwindow, which is populated during runtime. i want the scrolledwindow to auto-scroll to the end of the list. i "solved" the problem, by adjusting the ...
4
votes
1answer
204 views
How to reuse a widget tree from a glade file with GtkBuilder?
i want to populate a gtk.notebook on-the-fly. everytime a user opens a file, a new notebook-tab is generated. pretty straight forward. my problem is, that i use glade to build the ui and the ...
4
votes
2answers
698 views
Windows XP GTK App Glib Import Error
I am trying to run my GTK app on Windows XP and I am having troubles with an import. I have installed the following as needed and recommended:
python-2.6.msi
gtk2-runtime.2-16.6.exe
...
4
votes
1answer
121 views
How to transform a key pressed into a different one in pygtk
I'm trying to make my pygtk application behave the way openoffice calc does, regarding the decimal point. This means that when receiving a KP_Decimal key (the dot in the keypad) I want my entries to ...
4
votes
4answers
2k views
Stock Icons not shown on buttons
self.button = gtk.Button(stock=gtk.STOCK_DELETE)
Only Shows:
Delete
4
votes
2answers
395 views
pygtk: determine key is a modifier
I've got key-press-event handler and i need to determine which kind of key was pressed: modifier or not?
It's not in event.state, because this field works only when modifier was pressed with ...
4
votes
2answers
2k views
What's a good embedded browser for a pygtk application?
I'm planning on using an embedded browser in my pygtk application and I'm debating between gtkmozembed and pywebkitgtk. Is there any compelling difference between the two? Are there any third ...
3
votes
2answers
34 views
pygtk glib.timeout_add(): How to tell if timer not being destroyed?
In my application I use a function to show GtkInfoBars with a timeout (as described http://stackoverflow.com/a/1309257/406281) thanks to glib.timeout_add_seconds().
I understand that ...
3
votes
2answers
49 views
Can I add a column to an existing treemodel in gtk?
I have a treeview that is populated from a treemodel.
I would like to add a colum to the treeview. Is it possible to draw the data for that column from a seperate treemodel or can I append at ...
3
votes
2answers
56 views
How can i make tabs in pygtk closable?
i am using python with gtk, trying to make a simple text editor with tabs, i am still new, so i wonder how can i make the tabs closable and reordable ? it is much easier in qt, but i loved gtk more. ...
3
votes
2answers
125 views
Why does the hover animation ignore the transition time and function in Gtk3?
With the new gtk, it is possible to create graphical themes with a file in something like css.
Given this css file (named my-gtk-widgets.css):
.button {
border-radius: 0;
border-style: ...
3
votes
1answer
92 views
Declarative GTK
TL;DR: Is there a library for declarative UI creation using GTK? Preferrably with Python support.
I'm a Python/Django developer, most of my experience about user interfaces is from the web, where ...
3
votes
1answer
61 views
How to get the length of the current line (or the offset of the end of the line) in a Gedit plugin
In a Gedit plugin written in Python, I can get the offset of the beginning of the current line with
document = window.get_active_document()
offset = document.get_iter_at_mark(document.get_insert())
...
3
votes
2answers
256 views
Understanding gi.repository
I have troubles understanding gi.repository
I use this contruction in my code
from gi.repository import Gtk
But if I want to use some component I get import error
I searched and I got it worked ...
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
125 views
Enter-Notify-Event Signal not working on gtk.ToolButton
On a happy (if not irrevelent) note, this is the absolute last obstacle in this particular project. If I fix this, I have my first significant dot release (1.0), and the project will be going public. ...
3
votes
2answers
479 views
putting glade interface in python
I've made a gui in glade that I want to put in a python program. I was adapting the instructions from a tutorial I found online to load in my glade file ...
3
votes
1answer
613 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
124 views
gtk.StatusIcon with double click
I'm using python GTK under Gnome (Gnome 3 in Fedora 15).
I'd like to catch events when the user double clic on the icon in the tray area.
I found that "activate" signals is called when the user do a ...
3
votes
1answer
232 views
How can I get the full file path of an icon name?
How can I get the full file path from an icon name in GNOME?
3
votes
1answer
109 views
In PyGTK, how do I use a thread?
I have a class that draws a GUI, using gtk.
Clicking a button will call a method that will run some external
programs.
But the GUI may not redraw in the meantime.
One solution may be to use ...