The GIMP ToolKit (GTK+) in its version 3.x. GTK+ is a highly usable, feature-rich toolkit for creating graphical user interfaces (GUIs) that boasts cross platform compatibility and an easy to use API.
1
vote
0answers
11 views
Remove border from a notebook
I have a GtkNotebook and inside a GtkScrollView with a GtkImage. The Notebook is at the bottom-right side of the window (above is the toolbar, to the left is an options pane), and I would like to ...
0
votes
1answer
28 views
Theming GTK CSS doesn't work properly
I have a Python/Gtk+3.0 application with the following layout
Gtk.Window
Gtk.Box
CustomClass : Gtk.ScrolledWindow
Gtk.ViewPort # created automatically
Gtk.Grid
Gtk.Box # ...
0
votes
0answers
11 views
How to create a PixBuf from file with Gdk3?
Environment: Python3
Libraries:
from gi.repository import Gtk, Gdk
import cairo
I want to create a 'pixbuf from file' but the method does not longer exist in Gdk3.
pb = ...
1
vote
1answer
35 views
async task in python gtk3
My app has a Gtk.Grid and her children are loaded dynamically
for item in self.read_items_from_file():
# ...
self.my_grid.attach(self.build_widget(item), col, row, 1, 1)
for each item is ...
0
votes
1answer
33 views
Must GTK “callbacks” be static functions?
In all of the gtk examples I've read, callbacks are always static functions. I think I remember reading somewhere that there is a reason for that, but I can't find it now.
Must GTK callback functions ...
0
votes
1answer
15 views
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, ...
1
vote
0answers
26 views
How to use a custom font in a GTK app
I have a font file /path/to/app/fonts/custom-font.ttf and I want to use it. How do you import a custom TTF for use in a GTK+3.0 app?
from gi.repository import Gtk, Pango
# ...
lbl = Gtk.Label()
...
1
vote
1answer
43 views
Build complex layout in a dynamic list/grid
I'm building a simple app with python3 and GTK3.0 looking for the correct element for display a layout like the following image
I need display N items this items are load from a database (can be ...
-1
votes
1answer
18 views
better practice for work with saved buffer
I am working on a gtk_list_store, that will save the rows to a file (g_file_set_contents(file, buffer))
After saving the datas to a file, without exiting, I will like to edit the file (as buffer) ...
0
votes
1answer
20 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 ...
0
votes
1answer
60 views
GTK motion notify event, is_hint always true
I'm new to GTK and am trying Vala to get a feel. (I'm using gtk+3.0)
Can anyone explain why the event->is_hint always seems to return 1? From the docs I get the impression it's supposed to help ...
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 ...
0
votes
0answers
23 views
Indent block in Python Gtk.TextView or how to integrate an editing library?
Reading the Python GTK-3 Tutorial I wonder how to nicely extend the editing functionality.
Is there a current project where I could see how to achieve e. g. block-wise (selection of multiple lines) ...
0
votes
0answers
15 views
Is there an equivalent way to load a GMenu from XML?
I've been using Glade to create my Application menus in the menu-bar for Gtk3.4/3.6 based apps like this:
<object class="GtkMenu" id="popup_menu">
<property ...
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 ...
0
votes
2answers
54 views
automake-ing in bison which works fine with handwritten makefile
Friends,
I am trying to create Makefile via gnu-autotools for a flex+bison+C code (toy code, you ma say). The Handwritten Makefile works fine
CC=gcc #-g -Wall
FLEX=flex
BISON=bison
LIBS=lfl
...
0
votes
0answers
29 views
Does python gtk vte have a way to populate a dropdown menu?
Edit: Looks like im_append_menuitems is not the function to get a popup menu. Vte inherits from Gtk.Widget so the way to get a menu is probably to connect to a right mouse click and generate a custom ...
0
votes
1answer
76 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
20 views
How to delete the user_data in a custom TreeModel in in gtkmm?
I create user_data something like this:
bool
MyTreeModel::iter_nth_root_child_vfunc (int index, iterator & iter) const
{
iter .gobj () -> user_data = new UserData (...);
return true;
}
...
3
votes
2answers
34 views
GtkNotebook: Appending to the Default Popup Menu
Is there a way to append a menu item to the popup menu that appears by default on right-clicking a GtkNotebook's tab (the one that contains the names of all the open tabs)?
0
votes
1answer
62 views
Python GtkBuilder can't import Box widget from Glade 3.14
In my layout, I use a ton of box layouts. In most tutorials I looked, people would use HBox and VBox's. I didn't think that a Box would be that much different.
The GtkBuilder chokes miserably anytime ...
1
vote
1answer
28 views
Setting sensitivity to specific Gtk3 MenuActions (python)
I have an app where some menu-actions are not supposed to be sensitive before some other things have happened (as in the minimal code below, 'Save' makes no sense before 'New' has been clicked).
It ...
1
vote
2answers
122 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
52 views
How do I add a menu to a toolbar? gtk3
OK I figured out a way. If you have another way you can still give your answer. You may have an easier way. I'll be trying to format a reply for my answer in the meantime. The method I discovered is a ...
0
votes
0answers
103 views
GDBus.Error:org.freedesktop.DBus.Error.NoReply when using GtkApplicationCommandLine
The following code shows a window when run. When a different instance is started, the
existing window gets focus, (Gtk.Application provides uniqueness) but when the window is closed, the second ...
1
vote
0answers
69 views
How to create a live updating matplotlib graph in gtk3
I wanted to put my live plotting app into a nice gtk3 programm and so far I got this but it doesn't show a window. What am I missing? Thanks in advance!
import serial
import numpy as np
from ...
0
votes
1answer
36 views
How to dynamically insert and remove rows
I'm looking for a widget which can be dynamically resized. I need to append and remove rows.
There are a methods coming with Grid, like gtk_grid_insert_row or gtk_grid_insert_next_to, but I don't find ...
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 ...
0
votes
0answers
21 views
gtk3mm radio buttons/actions
I am using gtk3mm and glade to create a GUI for my program.
I want to create a GtkMenuBar with some grouped radio buttons inside. If I wrote this in plain C++ without glade, I could follow this ...
1
vote
1answer
122 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
152 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
76 views
How I can maximize GtkGrid to fill the entire GtkWindow?
I made a basic GtkGrid application with a simple layout but I can't make the GtkGrid fill the entire GtkWindow. This is the code for creating the layout:
GtkWidget *window = ...
1
vote
2answers
51 views
How can I create a fixed size Gtk.TextView in Gtk+3?
I have a Gtk.TextView inside a Gtk.Fixed and I set it its width and height and wrap mode.
My problem is that I need to avoid the TextView expanding when the user inserts more text than what fits in ...
-1
votes
1answer
73 views
gtk3 keep crashing
trying to gtk-3 based application
(audacious:10165): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:289:20: Not using units is deprecated. Assuming 'px'.
(audacious:10165): Gtk-WARNING **: ...
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
108 views
gtkmm - multiple windows/popup window
I've been searching a lot and I still can't find a good example of how to have multiple windows inside the same application with GTK. My program is in C++ but I don't mind an example in C which would ...
0
votes
1answer
96 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 ...
0
votes
1answer
39 views
GtkEntry don't get keyboard input
I have the following peace of GTK3 code:
(...)
cmd_bar = gtk_entry_new();
gtk_editable_set_editable(GTK_EDITABLE(cmd_bar), TRUE);
gtk_entry_set_visibility(GTK_ENTRY(cmd_bar), TRUE);
...
0
votes
0answers
19 views
libfm SIGSEGV on fm_standard_view_new
objPreView=fm_standard_view_new(FM_FV_LIST_VIEW, NULL, NULL);
I got:
Process terminating with default action of signal 11 (SIGSEGV)
Access not within mapped region at address 0x2C
at 0x53A114E: ...
1
vote
1answer
82 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
1answer
84 views
How do I change a Gtk3 Entry text color in Python3?
I have a list of Gtk.Entry() in my application, and I would like to change the color of the text of some of them.
I tried the following :
#!/usr/bin/python3
# Filename: mywindow.py
from ...
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
103 views
GTK popup menu position in python
I would like my pop-up menu is placed under the GtkToggleButton not at current mouse position Gtk pop-up menu is created on GtkToggleButton click. See my example below:
What I have:
What I would ...
2
votes
1answer
125 views
python webkit webview: Why does the history have dates that equal 0.0, and what needs to be fixed?
I'm using GTK3 with python.
While accessing the backforward list the get_last_visited_time returns 0.0
The get_last_visited_time is being called in the notify status signal callback on load_status = ...
0
votes
1answer
75 views
Get background color of GtkEntry
Getting colors of regular widgets (GtkWidget) is pretty easy.
I am just getting GtkStyleContext and calling get_background_color function. But I can't get background colors of widgets like ...
0
votes
1answer
175 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):
...


