PyGObject is a Python module that provides bindings (through introspection) for GObject and associated libraries, most notably GTK+.
0
votes
1answer
13 views
Using Gtk.spinner with a long time function
I am trying to get working a gtk.spinner using Pygobject in python. The main thing is that I use this element to show the user that a long time action is in progress. The problem is that the spinner ...
0
votes
0answers
32 views
How to make global keyboard shortcuts with python (and Gtk3)?
I want to make keyboard shortcuts like t, that would work, when the main window is closed (but process is running, as the programme has a unity appindicator). I saw a package keybinder, but it seems, ...
0
votes
1answer
27 views
Different models for different level TreeView nodes
Let's say I have a TreeView (with a backing TreeStore) that represents a list of products.
A Product has the following specifications:
Name
Catalog Number
Comment
Also, each product has a list of ...
0
votes
1answer
34 views
Show drop-down list without entry by using PyGObject ComboBox
Actually, I have a list (fooId, fooName) and I need to show a drop-down list wich only shows fooName from this list. But, when I need to get the selected item from the user, I just want to get the ...
0
votes
1answer
17 views
How to center a window with PyGObject
I'm currently trying to center my application window, but it seems to be impossible with PyGObject (GTK+ 3). Indeed, with pyGTK, I was doing it this way:
window.set_position(gtk.WIN_POS_CENTER)
So ...
1
vote
1answer
41 views
Python threads don't work with pygobject?
Take a look at this trivial python gobject program:
import threading
import gobject
import time
def f():
while True:
print "HELLO"
time.sleep(1)
...
0
votes
0answers
28 views
Attributes are called from a wrong object?
I am trying to make an Appindicator for Unity with Python (PyGI), it uses GTK menu to be build. I am trying to reorder the items in the menu, when they are clicked, and put their labels into ...
1
vote
0answers
45 views
How to change GTK menu in Unity Indicator Applet?
There is a similar question here, but it didn't help me: Changing items while running
The problem is, if I define the changing function outside of Gtk.main(), it would be never executed, and inside ...
0
votes
1answer
37 views
How to set a BeautifulSoup.Tag as a label in Gtk3 using Python
I'm working on a program to fetch pictures from APOD web site and show its information (the part called Explanation in the site, right below the picture). I'm going to show a simplified class that ...
2
votes
0answers
36 views
Why does Gtk.Dialog response signal spits 2 arguments instead of 3?
I am trying to learn Python and PyGObject, so I have written a simple program that adds user inputted two numbers and shows the result and created the user interface using Glade.
It has also an ...
0
votes
2answers
72 views
How can a program that uses GUI be constructed?
I have just started Python, about 2 weeks ago. Now, I am trying to create GUIs with PyGObject using Glade.
However, I am puzzled on how the general layout of the program should be.
Should I use a ...
-1
votes
0answers
31 views
How to get Ubuntu AppIndicator icon coordinates [closed]
I'm working on Ubuntu Linux 12.04 and create software built on top of GTK+ 3 using pygobject.
I've got a task of showing popup windows just below the app indicator icon of my application and I can't ...
0
votes
0answers
34 views
Layout breaks if using Glade UI in Python program (pygobject)
I created an user interface using Glade 3.12. In Glade's previewer it is layouted perfectly and resizes properly, see the first screenshot linked below.
If I load this file in my Python program, the ...
0
votes
0answers
32 views
How to pass null parameter in webkit/python GTK
I am using a simple webkit view using GTK. I need to fire some xpath queries. At certain point after document is loaded, I fire following code to get xpath results.
from gi.repository import WebKit
...
1
vote
2answers
120 views
Gtk.ProgressBar not working in Python
I'm trying to use a progress bar in Python and Gtk3, but it doesn't get updated. I have read this documentation and some questions in this forum (mostly for pygtk) and I really don't get it!
I made a ...
0
votes
1answer
49 views
How can I create a GTK ComboBox with images in Python?
How can I create a ComboBox that displays a list of entries, each containing some text and an icon?
I'm using Python and GTK3 with GObject introspection.
0
votes
1answer
23 views
PyGObject: Setting ComboBoxText's Active Text
How can I set the active text of a ComboBoxText (with entry)?
There is no such method in the documentation.
0
votes
0answers
28 views
PyGobject TreeView Columns re-sized when selected
I am writing an Application in Python which uses a TreeView with a few columns.
When a row is double clicked or selected, the TreeView's column start changing their size a few times and then settle ...
2
votes
1answer
58 views
Gnumeric Python plugin : service file_opener and file_saver
Is it possible to write a gnumeric python plugin for the file_opener and file_saver service?
It seems implemented in the python-loader plugin, there are corresponding sections in the Gnome ...
1
vote
1answer
52 views
How to adjust the size of a GtkGrid cell?
I'm programming a little application in Python + Gtk3. I'm using a GtkGrid with one column and two rows.
In the first row I put: a GtkScrolledWindow, and inside it a TreeView with two columns.
In ...
1
vote
1answer
121 views
Gtk.ScrolledWindow without horizontal scroll bar
Using Python and Gtk3, I have created a Gtk.TreeView and put it inside a Gtk.ScrolledWindow. I don't like horizontal scroll bars, so I removed it using the Gtk.PolicyType.NEVER, but now I can't resize ...
0
votes
1answer
149 views
import errors with Python and Gtk+ 3
I'm working in a program that is written in Gtk+ 3 and Python. A related question I asked about my program is here.
Now, that I advanced a bit more, I have the following imports:
import aplpy
import ...
0
votes
1answer
60 views
Python PyGOobject treeview: confirm edit after move between cells with Tab key
After searching for a long time I found a solution (pretty simple) to move between cells of a treeview grid using Tab key and mantaining cells in edit mode.
Now I've got a problem: cell edit ...
0
votes
1answer
93 views
How to show a png image in Gtk3 with Python?
First of all, it is important to mention that I'm learning Python and Gtk+ 3, so I'm not an advanced programmer in these languages.
I'm trying to make a graphical interface in Gtk3 for a Python ...
1
vote
1answer
47 views
How to set the user-agent of an HTTP request using Gio?
I'm trying to do asynchronous HTTP requests using Gio, and I would like to set up a custom user-agent for my requests, but I can't find anything related.
I'm using PyGObject to access Gio, but I ...
1
vote
1answer
36 views
How can I retrieve from a GTK Builder the name of an object? [duplicate]
How do I get the name of a Gtk.Widget retrieved from a Builder object?
I specifically mean the name seen in Glade (eg: button1), not the name of the class (GtkWindow).
This question is exactly the ...
1
vote
1answer
27 views
Construct class from superclass instance
So you have some function, say Gtk.Builder.get_object(), which returns some widget. In our case a Gtk.Window().
I have a subclass of Gtk.Window() which adds some signal handlers.
class ...
0
votes
1answer
91 views
DOM events in webkitgtk /python
I am trying to use webkit_dom_event_target_add_event_listener function in python. After lot of research, I am reaching to the conclusion that this function is available only in C. My current interest ...
1
vote
1answer
81 views
Gtk3: Dynamically adding to and removing a button from an EventBox: Button won't receive mouse press signals
I'm using python and PyGObjects (the introspection lib) for Gtk 3 here.
Consider the following code:
from gi.repository import Gtk
class InternalWidget(Gtk.Button):
def __init__(self):
...
0
votes
3answers
51 views
Editing GtkWidget attributes/properties
In most pygtk widget pages, they contain sections called 'Attributes', 'Properties', and 'Style Properties'. How can I change these properties and attributes?
0
votes
1answer
42 views
Group Gtk.RadioToolButtons?
I've been trying for days to find a way to group RadioToolButtons in pygobject without success. There is no *.RadioToolButton.join_group(*) method like RadioButtons.
Here is what I've been trying:
...
0
votes
1answer
88 views
Set placeholder text in Gtk.ComboBoxText?
I know how to set the default selection in a ComboBox, but I have a ComboBoxText widget that allows the user to enter his/her gender. So, I could use Gtk.ComboBox.set_active(), but that would express ...
0
votes
1answer
170 views
How to write custom Gtk.CellRenderer in python and GTK 3?
i must write my own cell renderer with button, i came up with this:
#!/usr/bin/env python3
from gi.repository import Gtk
class CellRendererButton(Gtk.CellRenderer):
def __init__(self):
...
0
votes
1answer
59 views
Missing text in GUI (PyGObject)
I have created a GUI with pyGObject using a xml description file and I'm trying to create a sidebar with GtkTreeView. GtkTreeView doesn't show any text in the headers and children in my GUI even ...
0
votes
1answer
99 views
How to append rows to Gtk.ListStore?
im trying to switch my application from python2.7 pyGTK to Python3 and pyGObject and having hard time with appending rows to my Gtk.ListStore :/
This code:
#!/usr/bin/env python3
from gi.repository ...
0
votes
1answer
37 views
Blank window when lanching about dialogue twice?
I have an application design done, without any useful stuff happening, but I have two windows. One is the main window, and one is the about dialogue. They are all on one .ui file from Glade.
When I ...
1
vote
1answer
103 views
How to create sidebar in GTK+3 (Python)?
I'm fairly new to GTK+3 (I use PyGObject) and I need to create a sidebar that has a structure like this:
Header 1
Subheader 1
Subheader 2
Header 2
Subheader 3
Subheader 4
What ...
0
votes
1answer
251 views
how to install pygobject for python3 in fedora18
i try to install pygobject for python 3 in fedora 18
i read this doc https://python-gtk-3-tutorial.readthedocs.org/en/latest/install.html and i try to install jhbuild after that when i type $ jhbuild ...
0
votes
0answers
20 views
What standard gtk widget should I use to draw 2d game elements?
I want to draw vector images on a standard Gtk+ widget, I am thinking of using Gtk.DrawingArea in a viewport. Is there something better?
0
votes
0answers
41 views
How to save or open WebKit global history in python gtk3?
I've been learning some webkit programming from the documentation here webkitgtk and applying it to python.
There are few python webkit docs, but it's been easy adapting the C docs to python.
The ...
1
vote
1answer
56 views
How do I take a screenshot using GdkPixbuf?
Using PyGTK, I used to be able to take a screenshot using gtk.gdk.pixbuf.get_from_drawable.
I can't seem to figure out how to do that using PyGObject and GdkPixbuf. I've tried get_from_drawable and ...
1
vote
1answer
57 views
Build instructions for pygobject on OSX
How do you build pygobject (GTK+ 3 in Python with introspection) on OSX? I'm not a mac user--I'm hoping to help my colleagues run an application I wrote for Linux on their mac books.
0
votes
1answer
148 views
GTK TreeView with ListStore don't display anything. Python and SQLite3 used
I use GTK and Python for developing an application.
I want to load TreeView elements (1 column) from SQLite3 database.
But something go wrong (without any error)!
Here is a whole code:
...
1
vote
0answers
21 views
Why the method set_color_foreground and its companions set_color_XXX don't work in Vte ( Python - Gtk3)?
I am writing an application using Vte in Python + Gtk3.
I am not able to change all the color.
For example, for the foreground color, I tried this code, but the text color doesn't change:
class ...
0
votes
1answer
46 views
How to get text from VTE using PyGObject ( Gtk3 in Python)
In the Gnome documentation of vte is described the method get_text : vte_terminl_get_text.
Executing dir() on vte.Terminal ( Gtk2) I can see that the method get_text is available, instead in ...
0
votes
1answer
81 views
How to resize a PythonGtk.Window under the size that a child label needs for showing its text?
I have a toplevel Gtk.Window which only child is a Gtk.Label.
If the width needed by the label to show its text is XXX pixels, I am not able to resize the top-level window with under XXX pixels. This ...
1
vote
1answer
59 views
How to disable all default keystrokes on Gtk
I'm writing a source code editor, and I want to disable any of the pre-defined keystrokes, e.g Ctrl-V for paste, how can I do that?
2
votes
1answer
206 views
Python GI Notify How can I call the Gtk.main()?
I'm trying to create a Python notification application. To make it short here is what I wanted to do :
1. Checking my gmail account
2. Display a notification with the number of unread mails
3. ...
0
votes
1answer
75 views
Correct way of listening for a specific key with pygobject?
I am very new to programming with python and gtk. After a day of googling and trying to find documentation i came up with the following solution for reacting on a press of a given button:
from ...
0
votes
1answer
48 views
Where to find reference for PyGObject
I'm working on a Python based source code editor. I've created a clean layout with a Gtk.Notebook. Creating a main layout was easy with Glade, but right after I imported gi.repository, everything got ...



