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
6
votes
0 answers

Widgets of type PopoverMenu need placeholders to add children

I'm trying to make an app in Glade and Builder using Vala, and I've gotten stuck while making the menu. Basically, what I want is the button in the titlebar with three lines, and when you click it, it shows a menu. I know how to do this with a…
kettle
  • 412
  • 1
  • 4
  • 11
6
votes
1 answer

how to embed plot in gtk and glade

I'm trying to create a simple gui using glade and gtk in C. In the GUI I want to add a widget that plots data (a line plot and a histogram are all I want) (constantly updating) and I dont know what to use. I've seen that gnuplot is popular, but I…
user169808
  • 503
  • 1
  • 6
  • 27
6
votes
6 answers

Where can I find a GUI designer for Python?

Does anyone know of any GUI designer for python like Glade but for windows?
TehFreak
6
votes
1 answer

How To Show Hello World with Glade/GtkD and the D Programming Language

On Ubuntu Linux, I can use the Glade application to create a Hello World dialog. Now how do I get the D programming language to display it?
Volomike
  • 23,743
  • 21
  • 113
  • 209
6
votes
1 answer

Make a GtkHeaderBar application using Glade

I'm trying to develop a Gtk application using glade, but got stuck with creating GtkHeaderBars. In this video, it says, the feature of HeaderBars would already be implemented in Glade: https://www.youtube.com/watch?v=Sw3Gn7Ms76E But neither the…
user4209617
6
votes
1 answer

How can I reduce the number of arguments I have to pass around in Haskell?

I'm very slowly getting up to speed in Haskell, trying to get a gui toolgit usable, etc. I followed a basic tutorial on using glade to create a simple GUI app and now I'm trying to modularize it. In particular, I wanted to leverage functions…
David
  • 5,991
  • 5
  • 33
  • 39
6
votes
1 answer

Adding custom widget to GLADE

Hi am using gtk3 and glade 3.14...I want to add a custom widget to glade so that i can add that to my user interface easily. I found knob widget is missing in glade and i found knob widget in http://sourceforge.net/projects/giw/ I downloaded and…
ganeshredcobra
  • 1,881
  • 3
  • 28
  • 44
6
votes
2 answers

Python GTK (Glade) Notebook

I'm currently developing a small application in Python with the use of GTK+ (and Glade). Everything has been fairly simple to integrate so far, until I came up with the idea to add tabs instead of pop-ups. Note: Still using Python 2.7+ Is there any…
Mark
  • 61
  • 4
6
votes
1 answer

In Glade, how do I add a page to an assistant?

After creating an Assistant window in Glade, I am presented with a window with three labels, each representing a page. But how do I add another page and its corresponding widget?
Flimm
  • 136,138
  • 45
  • 251
  • 267
6
votes
1 answer

Set Gtk.ComboBoxText default item?

I would like to make an item in my ComboBoxText the default value, instead of a blank combo box until the user selects something. Apparently, this is set by changing Active value in Glade to [the item I want to be default]. This does not work. Here…
Marco Scannadinari
  • 1,774
  • 2
  • 15
  • 24
5
votes
1 answer

Bold/Unbold rows in PyGTK TreeView

I want to make some rows in my TreeView bold, and some not as I append them to TreeView, later on, I want to unbold rows on click. What is the easiest way to do this?
umpirsky
  • 9,902
  • 13
  • 71
  • 96
5
votes
2 answers

What are the steps to convert from using libglade to GtkBuilder? (Python)

I have a small project that uses libglade and use the following to load the xml file: self.gladefile = "sdm.glade" self.wTree = gtk.glade.XML(self.gladefile) self.window = self.wTree.get_widget("MainWindow") if (self.window): …
lfaraone
  • 49,562
  • 17
  • 52
  • 70
5
votes
2 answers

How to install Glade 3.22 on Windows 10?

I'm trying to figure out how to install Glade on Windows, but I can't find anything helpful (I have never dealt with manual installs before so if that's required, please point me to a walkthrough). The Glade homepage…
WPullen
  • 85
  • 1
  • 1
  • 4
5
votes
2 answers

glade aboutDialog doesn't close

I have an AboutDialog box made in glade, but the Close button doesn't work. I don't know how to connect this button to a separate function, since it sits in a widget called dialog-action_area. Another problem is if I use the close button created…
wodemoneke
  • 343
  • 4
  • 13
5
votes
1 answer

gnome-builder don't find my glade file

I try to write GUI programs with gnome-builder and try to make the layout with Glade. I made a tutorial on Programmer's Notes. C #include int main(int argc, char *argv[]){ GError *err = NULL; GtkBuilder …
user8092846
1 2
3
60 61