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
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
3answers
468 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
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
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 ...
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
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
948 views

gtk.StatusIcon and gtk.Menu on Windows

I have a crossplatform app that has a gtk.StatusIcon sitting in the tray, and a right click context menu. The problem is: on Windows machines the placement of the menu is awful. The top of the menu ...
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
1answer
174 views

refresh drawing area in gtk

I have a bunch of drawing areas (they are actually cairo surfaces, but I don't think it matters too much) in a scrolled window, and I would like to refresh the drawings. However, when I redraw the ...
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
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
126 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
480 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
2answers
100 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
616 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
411 views

Python AppIndicator to make tomate Unity compliant

I just discovered tomate : https://gitorious.org/tomate a very simple program that help get things done when you work on a computer. But tomate use gtk.status_icon instead of appindicator so I would ...
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 ...
3
votes
1answer
798 views

How to install GTK+/PyGTK on OSX?

I'm trying to install PyGTK on OSX 10.6 (snow leopard). I have followed this topic Where is PyGTK for Mac OS X?. When I run the last command : ~/.local/bin/jhbuild build meta-gtk-osx-python I have ...
3
votes
2answers
305 views

gtk treeview: place image buttons on rows

For each row in my treeview, I want 4 image buttons next to each other. They will act like radio buttons, with only one being activateable at a time. Each button has an 'on' and 'off' image. How do I ...
3
votes
2answers
862 views

Python GTK Listviews using Glade

I am currently developing an application for my Linux desktop that reads data from my Garmin Forerunner sports watch, parses the not-so-well-formed XML file, and writes the data to a MySQL database ...
3
votes
1answer
500 views

Python GTK “Getting started” tutorial problem

I have a problem with compiling a basic and really simple example of PyGTK usage listed on pygtk's website. This is the first example from this site: ...
3
votes
1answer
165 views

How to put arbitrary widgets into a gtk.Menu?

How can any gtk.Widget (eg. a progress bar) be put into a gtk.Menu as one of the menu items?
3
votes
1answer
93 views

How to display an icon in a menu item?

I know how to create a plain text menu item: item = gtk.MenuItem('text') but how can I display an icon? Like this:
3
votes
1answer
101 views

Does pygtk support absolute positioning?

I just want to put an Image on a screen given the X and Y.
3
votes
1answer
402 views

Get original row number from .get_model() and .get_path() after TreeView was resorted

So I have this TreeView/TreeStore, which I fill with data from a list. My application uses only said list as reference data. The TreeStore is just constructed for display. And the TreeView can be ...
3
votes
1answer
332 views

gtk get new selection in a treeview during the signal

I want to detect whenever the selection of my gtk.TreeView changes and, when it does, to call a function w/ this information. The only way I've found to do it so far is to attach to all these signals: ...
3
votes
1answer
137 views

gtk: _really_ disable treeview searching

How do I really disable gtk treeview interactive search? The docs say to set_enable_search(False), but if I do this, CTRL+F still causes an annoying search pop-up to appear. Connecting to ...
3
votes
1answer
338 views

gtk: trouble modifying TreeView model on CellRendererCombo 'changed' signal

I have a treeview with a CellRendererCombo in a given column. I use the following code to set up the column: crc = gtk.CellRendererCombo() crc.set_property('model', comboModel) ...

1 2 3 4 5 9