Tagged Questions

PyGTK is the Python binding for the GTK widget library.

learn more… | top users | synonyms

26
votes
1answer
372 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 ...
22
votes
1answer
6k views

Pygtk VS Pyqt VS WxPython VS Tkinter

What is the most used of these library and why ? What are the differences ?
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
399 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 ...
13
votes
3answers
4k 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 developing a PyGTK app ...
11
votes
4answers
1k views

Recommended .gitignore file for Python projects?

I'm trying to collect some of my default settings, and one thing I realized I don't have a standard for is .gitignore files. There's a great thread showing a good .gitignore for Visual Studio ...
10
votes
8answers
974 views

What is the most popular GUI library for Python in Windows?

What is the most popular GUI library for Python in Windows ?
9
votes
2answers
332 views

Python AppIndicator bindings -> howto check if the menu is open?

Here is a minimal example of an AppIndicator: #!/usr/bin/python import gobject import gtk import appindicator if __name__ == "__main__": ind = appindicator.Indicator("example-simple-client", ...
9
votes
3answers
7k views

Where is PyGTK for Mac OS X?

Is there a binary out there for the current mac os x, python for PyGTK? I work with multiple desktop environments (mac, windows, gnome) and really consider python's lack of cross platform GUI's a ...
8
votes
3answers
2k 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 can't really find any ...
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
116 views

Bundling GTK resources with py2exe

I'm using Python 2.6 and PyGTK 2.22.6 from the all-in-one installer on Windows XP, trying to build a single-file executable (via py2exe) for my app. My problem is that when I run my app as a script ...
7
votes
1answer
231 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
377 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
2answers
528 views

What's the newest way to develop gnome panel applets (using python)

Today I've switched to GNOME (from XFCE) and found some of the cool stuff missing and I would like to (try to) do them on my own. I tried to find information on how to develop Gnome applets (items you ...
7
votes
3answers
153 views

How do I deal with multiple common user interfaces?

I'm working on a python application that runs on 2 different platforms, namely regular desktop linux and Maemo 4. We use PyGTK on both platforms but on Maemo there are a bunch of little tweaks to make ...
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
217 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]: ...
6
votes
1answer
139 views

Creating Segments in Video

I'm using Python 2.7, PyGTK 2.24, and PyGST (Gstreamer). To ensure smooth playback from one clip to another (without a blink), I combined all the clips I needed into one larger video. This lets me ...
6
votes
0answers
105 views

An up to date Quickly(ubuntu) Guide [closed]

Does anyone know of an up to date guide for Quickly, it has changed a lot since I have lasted used it. I'm trying to link a button to an function. I believe all you need to do is name the function in ...
6
votes
2answers
332 views

Python - Separate program logic and GUI code?

What would be the best way of separating program logic to the GUI code? I wanted different GUI (GTK, KDE, CLI) code using the same program logic. I was thinking of using different python module ...
6
votes
3answers
464 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
1answer
2k views

Error install PyGtk

I tried to install pygtk on mac. I downloaded the pygtk file, opened up terminal and set it to my working directory, then ran the command "python setup.py install". There was an import error because ...
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
588 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
999 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
463 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 ...
5
votes
1answer
310 views

GTK+ Filechooser to open both files and folders

How do I get my filechooser to be able to select both files and folders when the open button on the filechooser dialog is hit ? I want to squeeze the ability to open files and filders in just one ...
5
votes
1answer
340 views

Localization of GUI built with Glade and Python (Gtk)

I have made an application using Glade and Python and I would like to make several localizations. I know how to localize strings that are in the Python code, I just encapsule all the strings that are ...
5
votes
1answer
526 views

How to make a simple clipboard monitor in python

I was wondering how to make a simple Clipboard Monitor in python, for GUI I'm using PyGTK. I found gtk.clipboard class and all that but I couldn't find any solution to get the "signals" to trigger the ...
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
4answers
597 views

pygtk how to embed external application within my pygtk GUI

I'm desiging a pygtk GUI and want to embed an external application into it. Does anyone have any idea how this can be done?
5
votes
2answers
723 views

Running function 5 seconds after pygtk widget is shown

How to run function 5 seconds after pygtk widget is shown?
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
859 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
1answer
31 views

Show PyGTK Window on all virtual desktops/workspaces

I am working on a timer which should after a certain time show a popup window. I want to force the user to accept the fact that the time is up. I would like to set the window to be visible on all ...
4
votes
2answers
102 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
127 views

Custom objects in ListStore/TreeStore

I have a list L of objects of my class A. This class implements str/_repr_, so each object has it's own string representation (not necessary unique). I have a GUI in pygtk, where I have a TreeView ...
4
votes
3answers
805 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
1answer
169 views

PyGTK blocking non-GUI threads

I want to play with the thread-bugs with PyGTK. I have this code so far: #!/usr/bin/python import pygtk pygtk.require('2.0') import gtk import threading from time import sleep class ...
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 ...
4
votes
1answer
337 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
328 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
394 views

authentication in python script to run as root

I am doing a project in Linux at system level in Python. So that, I want to know that if i am running my code as a normal user and if i am accessing system files then it should have root permissions ...
4
votes
2answers
645 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
3answers
173 views

What tool can run in Linux, create an installer for a Python program, and install it on Windows?

I have a Python program that runs in Linux. My customers may want to run the Python program on Windows. Assume that they do not want to install Python, PyGTK, or Linux. Is there a tool, preferably ...

1 2 3 4 5 18