Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
41 views

Tl;Dr - Clicking and dragging a GtkButton or other widget into a GtkFixed doesn't make that button or other widget a child of GtkFixed, it makes it a sibling, and it sits in front of GtkFixed when I ...
the_endian's user avatar
  • 2,567
1 vote
1 answer
75 views

This is my ui glade file: <?xml version="1.0" encoding="UTF-8"?> <!-- DO NOT EDIT! This file was @generated by blueprint-compiler. Instead, edit the corresponding .blp ...
Joel's user avatar
  • 2,043
2 votes
2 answers
1k views

I'm using glade to design an application for a gtk4 program. I convert the xml code that's gtk3 into gtk4 code because glade isn't ported into gtk4. I tried connecting the window that I want to have ...
Ryan Casey's user avatar
0 votes
1 answer
65 views

When i try to run GTK3 with Clion, CMake & Glade with the below config i get the following warning: Could not find signal handler 'on_dumpButton_clicked'. Did you compile with -rdynamic? So GTK ...
Joe Gasewicz's user avatar
  • 1,555
1 vote
1 answer
82 views

Background I have a photo gallery generator written in Ruby. Configuration for each photo gallery and the generator itself are both in one YAML file. This tool already works in as a terminal tool. Now ...
Mailo Světel's user avatar
0 votes
2 answers
155 views

i am trying to make the Linux GTK Dialog Close after clicking the exit Button, any help? void on_linux_exit_clicked() { // gtk_main_quit (); << this closes entire Program // ...
voidprg's user avatar
0 votes
1 answer
122 views

I am working on a user interface for a project using Glade in which I create a GtkGrid with dimension 22 rows by 36 columns. While no children widgets are added to the grid, Glade behaves normally in ...
Dave Buchan's user avatar
0 votes
1 answer
27 views

I'm working on a glade python project. I'm using Gtk 3, and I have a notebook widget with several tabs. I cannot get the tabs to work. I double click on a tab and the interface does nothing. What I ...
D Liebman's user avatar
  • 347
0 votes
1 answer
219 views

I can add a custom widget to GTK, as shown here. Now I'd like to add properties to the custom widget and have them show up in glade. Is this possible? I have added properties to the custom widget as ...
Olumide's user avatar
  • 5,905
1 vote
1 answer
134 views

my code compiles with no errors and no warnings, but, when i run it, the buttons doesnt work, even thought the signals are connected. I am using C language, GTK3 and Glade, and using Code::Blocks as ...
gustavo moretto itikawa's user avatar
0 votes
1 answer
67 views

I'm in the process of writing a program that is supposed to display the Sierpinski triangle. To this end, I first created a demonstration for cairo, since I've never worked with cairo before; it just ...
AlgebraicsAnonymous's user avatar
2 votes
0 answers
92 views

I can add things like a GtkButton to GtkPopoverMenu in Glade, but how to add menu items? Is it possible in Glade, or do I have to do it programmatically? Generated Glade code <?xml version="1....
Damn Vegetables's user avatar
0 votes
1 answer
196 views

I have seen the existing question but I am not sure if adding actual data in Glade is possible or not. I have created a TreeView and added two columns. I created a TreeStore and set it to the TreeView....
Damn Vegetables's user avatar
0 votes
1 answer
307 views

I'm trying to get a motion-notify-event working to drag images in a GTK Haskell project and to get a WidgetMotionNotifyEventCallback signal the documentation says that I need to enable a mask, but I ...
leonaden's user avatar
0 votes
0 answers
114 views

I'm trying to develop an application using GNOME Builder and Glade, but it will not render. Here's the .ui code. https:// pastebin.com/JbfqC6Mt The window is supposed to render 3 buttons in a row. i'm ...
Bloxxel64's user avatar
0 votes
1 answer
140 views

I have a GUI application written in python, that uses GTK and runs on Ubuntu, and it has been working well for many months. The GTK application uses gtk.Builder() and a Glade input file (a user ...
Walt's user avatar
  • 113
0 votes
1 answer
379 views

I have a small problem, I have used GTK with other languages but with C ++ being new I cannot find tutorials that allow me to use interfaces created with Glade and the ones I have found explain ...
ExagonX's user avatar
  • 149
1 vote
0 answers
262 views

I am currently building a UI in Glade. My widget tree looks like this: My homescreen (GtkFixed) is horizontally and vertically expanded. navigationbar (GtkFixed) is horizontally expanded and has a ...
Laura's user avatar
  • 161
4 votes
1 answer
725 views

I have built a GUI using Glade, GTK and Julia. I want to add a plot in my GUI (in my window / layout) but cannot find a way to add a plot as a widget. How can I implement a plot in my GUI using Plots....
aight101's user avatar
0 votes
0 answers
301 views

This attribute error appeared when I try to run my code using Gtk and Python. Would anyone know how to solve it? This is my code: import gi gi.require_version('Gtk','3.0') from gi.repository import ...
Chris Berenguer's user avatar
0 votes
1 answer
150 views

I have a Glade GTK Gui which is meant to be a Front End for a CLI program I wrote a couple of years ago. There are a number of fields for the user to fill in. These will be theoretically processed ...
Bryan Zimmer's user avatar
1 vote
0 answers
45 views

In Glade, I created a Liststore that shows me a list of people. When I click on a line, then the line number is inserted into the self.radek_k_editaci variable in the list_list method. It's alright. ...
Radek's user avatar
  • 67
1 vote
0 answers
363 views

I have a Windows-10 PyGTK3 app (python 3.8 + GTK3.24) structured as follows: it has a non-modal main window, which opens a modal dialog (A), which in turn opens another modal dialog (B). I use glade ...
TimothyF's user avatar
1 vote
1 answer
134 views

I'm using Glade to design a UI, and I'm struggling to figure out how to reorder elements such that one element is on top of the other vertically. As an example, I added a draw element after a slider, ...
Duncan Van Keulen's user avatar
0 votes
0 answers
79 views

I have 3 figure canvas, 3 buttons and a GTK Box. I first initialize the box with one canvas and I want to change widget of the box whenever I click a button: Here is the pseudocode from matplotlib....
Đỗ Quang Huy's user avatar

1
2 3 4 5
19