Questions tagged [glade]

Glade is a visual user interface designer for the GTK+ toolkit and the GNOME desktop environment.

User interface description files are saved as GtkBuilder XML files, which can then be easily loaded into a GTK+ app written in C, C++, C#, Vala, Java, Perl, Python, and others.

Although primary used on Linux, binaries are also available for Windows and Mac, and GTK+ apps developed with Glade can be written to run unmodified on Linux, Windows, and Mac.

Glade is Free Software released under the GNU GPL License

907 questions
5
votes
0 answers

Creating a Windows Executable With Pyinstaller

I'm running Python 2.7 on a windows 64 system using glade and gtk to build a simple UI. I am trying to create an executable from the python script I have written below: import gi gi.require_version('Gtk', '3.0') from gi.repository import Gtk class…
mdicrist
  • 175
  • 2
  • 12
5
votes
2 answers

How to install Glade in Mac OSX El capitan

I am trying to install Glade on mac OSX el capitan. I downloaded sources on https://glade.gnome.org/sources.html I followed instructions with the text "Install" in the sources. Then when I am trying to configure "build", I received following…
Mia Chen
  • 173
  • 2
  • 10
5
votes
1 answer

GtkInfoBar doesn't show again after hide

I'm hide Gtk widget, then try to show it, but none of the methods "show()", "show_all()" or "show_now()" does't work. If not call "hide()" widget shows. python 3.5.2 gtk3 3.20.8 pygobject-devel 3.20.1 test.py: import gi gi.require_version('Gtk',…
Atterratio
  • 445
  • 2
  • 9
  • 25
5
votes
1 answer

Using GTK+ with Broadway

I consider to use GTK+ with Broadway backend for development of device control application. Device is with functionality similar to broadband modem/router (I intentionally selected example which is familiar for all :-) ). Device should be…
ivbsd1
  • 93
  • 8
5
votes
1 answer

Windows Binary for Glade 3.18.3?

Is there any build of Glade 3.18.3 as a Windows Binary? Would really like to make use of GTK3+ with Glade however they seem to have stopped at 3.8.5 :( which only supports GTK 2.24.
Snorklebort
  • 123
  • 2
  • 10
5
votes
0 answers

gtk custom widget - Shows in Glade but not when builded

I've made a simple custom widget for GTK+3 in C, named AwLed, and added it to a custom Glade catalog. It works as expected inside Glade or when created using the aw_led_new() function. However, when I make a simple program that loads the Glade file…
LRMAAX
  • 301
  • 3
  • 10
5
votes
1 answer

Using a predefined response ID in a GtkDialog in a GtkBuilder XML?

Is there any way to use a predefined response (e.g., GTK_RESPONSE_OK) in a GtkDialog, without hard-coding the ID? Glade generates XML with "0" there by default, and gives me a numeric entry. While I suppose I could enter -5, that seems to defeat the…
Thanatos
  • 42,585
  • 14
  • 91
  • 146
5
votes
2 answers

Radio button grouping with glade

I am programming a GUI in Haskell using the editor Glade with the gtk2hs bindings. Currently I am failing miserably at grouping the radio buttons. It will not let me select the group name. Can someone help?
Stuart Paton
  • 291
  • 4
  • 13
5
votes
1 answer

How to use dialog boxes using Glade in python running, destroying, and reusing

I am using Glade to write a python GUI with a dialog box. If I weren't using Glade, I would use a class to create a dialog window (dialag), run it (dialog.run), do whatever it does, then removing it (dialog.destroy). I would then just re-instantiate…
narnie
  • 1,742
  • 1
  • 18
  • 34
5
votes
2 answers

Use entry combobox when migrating to pygobject, glade and gtk3

I develop in python with glade and pygtk since 3 months, but even before I had time to get used to it, it was already obsolete. Using Archlinux, my system is constantly up to date, so I am forced to use gtk3 even if I found it a bit lacking of…
Zoé Martin
  • 1,887
  • 1
  • 16
  • 28
4
votes
1 answer

capturing right-click event on treeview row [haskell gtk2hs]

I have searched thoroughly (at least I believe so) and I didn't find any answer for my problem, so I'd like to ask you for help. I'm trying to determine when a user right-clicks a row in my treeView (list of users) and then show a pop-up window with…
jban
  • 149
  • 1
  • 10
4
votes
4 answers

GtkBuilder ignores .ui file

I am trying to create a really simple GUI using GtkBuilder and glade. To achive this I follow the official Gtk+ 3 Reference manual's tutorial. The only difference to the original code is, that I do not connect to the widget's signals for simplicity…
drakide
  • 1,757
  • 2
  • 15
  • 23
4
votes
0 answers

3D visualization of complex geometries in a GUI

I would like to develop a small cross-platform for (structured) mesh generation software (similar to Gmesh) and possibly 3D pre/post processing (like Salome). In order to make things easier I'd like to use already made libraries, to better focus…
ray
  • 301
  • 2
  • 10
4
votes
1 answer

GtkSpinButton disabled by default in Glade

I added GtkSpinButton to my dialog from Glade and it is disabled by default: What should I do to make arrows enabled?
umpirsky
  • 9,902
  • 13
  • 71
  • 96
4
votes
1 answer

Adding Plot from Plot.jl to GTK window Julia

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.jl? Adding the following does not make anything…
aight101
  • 63
  • 6