PyGTK is the Python binding for the 2.x series of the GTK+ widget library.

learn more… | top users | synonyms

0
votes
0answers
15 views

case-insensitive text search using gtk 2.2, python

I checked all the flags that can be passed to forward_search/backward_search method of gtk2+, but I could not find a way to search text case insensitively for my application written in gtk2+ python. ...
1
vote
2answers
17 views

How to convert .glade file to python class?

I'm learning the Python and now I'm trying to choose cross-platform-GUI-framework. As I see, the PyGTK is the best one, which fits my goals completely. The only question: is there any analog of ...
-1
votes
1answer
20 views

Application crashes after adding elements to TreeView/ListStore

My program is working fine when adding small number of files but crashes when list of files >500. The error: The program 'gui.py' received an X Window System error. This probably reflects a bug in ...
1
vote
1answer
10 views

Float HTML like PyGTK Container

I'm making an application using Python and PyGTK. The application consists basically in a disc catalog where the covers are shown. My question is: Is there any container that supports a behaviour like ...
0
votes
1answer
26 views

How to fit an Image inside a GtkScrolledWindow? (pygtk)

My program is supposed to display images and fit the size of the window to the image being displayed. However, if the image is larger than the screen, the window shouldn't grow larger than the screen, ...
0
votes
0answers
16 views

Automatic start new lines while appending long text in gtk.TextBuffer

I'm programming a really simple gtk interface with python and I have a gtk.TextView inside a gtk.ScrolledWindow. This interface is really narrow and when printing long texts like exceptions messages ...
0
votes
0answers
63 views

Calculate size of textstring in pygtk pango for text fill

I'm searching for a method to pre calculate the width of a text string with variable length with python gtk/pango. I want to use it for adjusting text size automatically fill a given space, for a GUI ...
0
votes
1answer
18 views

With GTK+ 3, how can I make a GtkScale trigger “value-changed” on mouse release?

I have a GtkScale and I'd like it to only fire value-changed events when mouse button is release, i.e. not while you're dragging the scale around. In GTK+ 2, there was a function called ...
3
votes
0answers
58 views

Working around a big memory leak in GTK when redrawing a label

I'm using the latest release of the PyGTK All-in-One installer (2.24.2) for Python 2.7 which includes Cairo 1.10.8, Pango 1.29.4, PyGTK 2.24.0, and PyGobject 2.28.3 (I think). The following code ...
1
vote
1answer
24 views

how to set pygtk scrolledwindow vscrollbar at bottom

I am using a python 2.5 + pygtk. I have added a text area in a scrolled window. Text area buffer will be updates with program output. I want to set scrolledwindow->vscrollbar at the bottom. I tried ...
0
votes
1answer
10 views

PyGTK event definition class

In many PyGTk tutorials, event handlers are defined like below. window.connect("destroy", self.close) button.connect("clicked", self.print_hello_world) Is there any class encapsulating "destroy", ...
0
votes
1answer
50 views

Status icon in GTK+ on MacOSX, Windows, and Linux(Gnome) and python

I'm developing an application in python and it will be used in Windows MacOsX and Linux, and now i'm developing system (status icon) icon (and the menu when you click) in Mac OSX bar. Can I use PyGTK ...
1
vote
1answer
69 views

Is it possible to generate random object variable names and return them from python method ? How?

I am working on a python GTK project and was wondering if it is possible to generate random variable names for naming widget objects and returning them so that it could be used in other parts of ...
0
votes
1answer
23 views

pygtk: Changing style of <a href>-label

gtk.Label(....) gives a label as a clickable link if the label-text is formatted as a link (text within a "a href-tag"). It is then automatically shown in blue and underlined. (How) can I change the ...
0
votes
1answer
12 views

Placing PYGTK IMAGE at a particular pixel position

How to place an image at a particular x and y pixel position on a window by code in pygtk? I have tried xalign and yalign after reading this post but it only aligns the image. I will use this code to ...
0
votes
1answer
12 views

Allighning cell renderer for treeview in GTK2 won't work

I'm trying to build some program with GTK and python. I've created the GUI in glade, and assigned a model for the treeview. THen When i set the alignment in the cell renderer, it doesn't work The ...
0
votes
1answer
38 views

In pygtk, how can I combine font selection and color selection dialogs in one dialog? [closed]

I'm using pygtk and searches for the best way to combine font and color dialogs in one, which is the most pythonic way to do it ?
0
votes
1answer
50 views

python GTK: Dialog with information that app is closing

I have a problem My application on close has to logout from web application. It's take some time. I want to inform user about it with " logging out" information class Belt(gtk.Window): def ...
1
vote
0answers
29 views

Error with multiprocessing package

I am trying to use the multiprocessing module within a PyGtk application used to generate a huge report.This application is running on windows. Following is the snippet of code, p1 = ...
0
votes
2answers
42 views

gtk progressbar doesn't work anymore after matplot event?

Hi I'm new at programming in python and gtk. I'm writing a program to do some measurement. For plotting the measurement, I use matplotlib. The program will have a function to turn a heater on and off ...
1
vote
2answers
56 views

Cairo + rubber band selection: gui very very slow

I'm working on an application written in Cairo + Gtk. Please note that, due to retrocompatibility issues, I am forced to use Python as programming language, PyGTK as wrapper, and GTK libraries, ...
0
votes
1answer
26 views

How to Keep Live Video in pythoncard

I have a PythonCard GUI Form with the Image, Signatue filelds. I need to capture the image from the Live stream, I am trying to inject my live video as a pythoncard component like staticbox or ...
0
votes
0answers
25 views

PyGI textview buffer signal emited when cursor position changed / help needed

As in topic I'm looking for a way to get "ONE" signal emitted whenever cursor position get changed... I've already tried "mark-set" signal: self.buffer.connect("mark-set", self.test) but the ...
0
votes
1answer
43 views

what is best way to implement thread maximum execution time (in python/gtk)?

What is the best known practice to implement a thread job timeout (ie: kill the job after a maximum of X seconds) ? I wrote the following python code. I read a lot of different way to implement this ...
0
votes
1answer
73 views

ComboBoxText in Glade / GTK+3 / Python - disappears when displayed 2nd time

I'm trying to implement a drop down list in an Ubuntu app using Glade (GTK+3) and Python. I can get the ComboBoxText to display, populated with strings. However when I close the window it is contained ...
1
vote
1answer
50 views

cannot .pop() list while using pygtk and multiprocessing ( python )

I am having trouble trying to make a program that uses multiprocessing to infinitely loop while checking on a queue (list) The simplified version of my code is here (it includes the gui): ...
0
votes
0answers
17 views

Nested Containers in pygtk

I'm working on a larger program in pygtk which is behaving badly. I have narrowed the problem down to the simplest example that I can: #!/usr/bin/env python import pygtk pygtk.require('2.0') import ...
1
vote
1answer
44 views

How To Make Mini Example For DrawingArea Display Something

I've written a mini example for DrawingArea which, when started, displays nothing. If I insert a raw_input() just for waiting for a keyboard press at a specific place, it functions, so this is a ...
0
votes
0answers
50 views

Sample application using python-gdl

I'm trying to use python-gdl (python bindings for gdl library, which features some docking windows for gtk+2). Even the origianl C gdl itself is awfully documented; its python bindings seems very ...
0
votes
1answer
40 views

pygtk drawing area not showing

Hi guys I have the following code. I create an instanciation of this class in another file. This gives me a drawing area but the image as well as the points I have drawn are not showing. I am trying ...
0
votes
0answers
60 views

pygtk treeView BadDrawable (invalid Pixmap or Window parameter) error

Well, my problem is right that, I have a pygtk application and sometimes raises an X Window System error when a treeView is updating, y say sometimes because it sames to be randomly (I know that can't ...
1
vote
2answers
55 views

Copy-Pasteable Text in pygtk's TreeView

I came across this rather unexpected problem. I have a gtk.TreeView with a single text column, that is rendered by gtk.CellRendererText. What I want is that the user can mark the displayed text using ...
2
votes
1answer
73 views

Python CSV file parsing into datetime, throwing time format error

Good afternoon ladies and gentlemen, I have a question for you today =) I'm using pygtk and glade (python 2.7 32bit interpreter is the most recent it supports) to make an application for a research ...
0
votes
0answers
20 views

pyGTK sourceview undo/redo

I cannot find any documentation on how to use the undo/redo in gtk sourceview2 from pygtk. The buffer has can_undo(), can_redo(), undo(), redo(), begin_not_undoable_action(), ...
2
votes
1answer
36 views

Gtk/python and portability

Basic question is how do people write portable UI code that works on multiple distributions? For the purpose of discussion I am considering desktop distributions and not specialized/embedded ...
0
votes
0answers
22 views

Acess frame by frame of the video using external timer

For my project , I would like to access frame by frame of the video using external timer. Using gstreamer you can easily display the video. But I would like to use external timer for displaying the ...
0
votes
1answer
34 views

How to stack column headers with GTK?

I use PyGTK's gtk.TreeView and gtk.TreeViewColumn to build lists with multiple columns. For the columns I want to render standard headers, but stacked on top another row of headers spanning multiple ...
2
votes
1answer
51 views

Twisted+GTK app becomes unresponsive while downloading files

I'd like to use Twisted and GTK+ in the same application. I'm using the gtk2reactor, made all my code properly non-blocking, and generally it works pretty well. However, when I have a (HTTP) ...
0
votes
1answer
39 views

Thread works only on gui events pygtk

I am developing a multithreaded application in pygtk using quickly and stuck with threads. So i am experimenting with various possibilities and found out that my thread work only when i do something ...
1
vote
0answers
52 views

Getting the text based on context in webkit

I am working on scraping robot where I have to scrape web pages and "infer" the contents. What I have: Webkit/python API available on Ubntu and it's full API including DOM access and manipulation ...
0
votes
1answer
30 views

Multithreading in pygtk

I am trying to learn pygtk and I am developing a GUI for axel. My problem is I need to show progress of download in my main window. I used two threads one for downloading and second for progress ...
0
votes
2answers
105 views

How do I change the built-in button labels on a gtk.Assistant?

I want to change the label of the 'Apply' button of a gtk.Assistant to 'Start'. I can't find the corresponding gtk.Button widget in the Assistant instance. Here's some basic code for a two-page ...
0
votes
0answers
17 views

Destroy pygtk gui automatically on latest image

im trying to make simple gui, using pygtk but im having hard time , how can i destroy the gui automatically to display on latest image ? here is my video of my problem ...
0
votes
1answer
37 views

PyGTK + threading; windows unexpectedly freezes

I'm trying to manage files containing "other files" (lots of small files stored in a few large files). The "engine" works quite good, but I have some problems with GUI. Some functions are threaded ...
0
votes
3answers
156 views

Issue launching X11 app via NSTask

My app uses NSTask to execute shell scripts, one of those scripts launches an X11 app (specifically meld). I would have expected this to work: #!/bin/bash source ~/.profile # ...
0
votes
0answers
9 views

Pygtk Iconview not setting the columns dynamically

I have a Iconview nicely wrapped within a Scrollwindow. The model of the Iconview contains a Pixbuf, where I change the size at runtime. My problem is the number of columns used in the Iconview. When ...
0
votes
1answer
33 views

Thread to add items in Treeview - pygtk

I am trying to develop a downloader app in pygtk So when a user adds a url following actions happen addUrl() which calls validateUrl() getUrldetails() So it ...
0
votes
1answer
19 views

pygtk creating error on inheritance with treewiew and container.add

I am using python and pygtk I have a class that inherits the TreeView class: from gtk import TreeView class FolderView(TreeView): But when I add it to an HBox container: folderView = FolderView ...
0
votes
1answer
11 views

How to receive the folder from FileChooserButton [PyGTK]

I'm trying to use FileChooserButton to get the path to folder selected by the user. I've read the documentation on FCB and I think I should use get_current_folder() but when I do that i get a global ...
-3
votes
2answers
59 views

Confusion about Linux related terms [closed]

I am confused with various terms associated with linux. GNU Gnome Kde gtk2 and gtk3 pygtk qt gtk+ I am trying learn application development for ubuntu. I come across with ...

1 2 3 4 5 27