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

Glade : disparity when trying to remove a row of a liststore

I am building an app using Glade and Gtk. I have a treeview. In Glade I configured this treeview so that its model would be a GtkListstore called liststore. This liststore has two columns of type gcharray. I use pyinotify to detect when a usb media…
M.Brbr
  • 83
  • 7
3
votes
2 answers

How to subclass GTK IconView in Vala with Glade

When I try to subclass a GTK IconView in Vala using Glade, I get a segmentation fault. Is this a bug in Vala, or am I just doing something wrong? This is using vala 0.42.3. Maybe this is related to how IconView doesn't have a base() constructor?…
user9889635
  • 123
  • 7
3
votes
0 answers

Include parent and child items of GtkTreeStore in GtkEntryCompletion

I have a GtkEntryCompletion declared as follows: menu_treestore 0 The model is a…
joaopaulopaiva
  • 363
  • 3
  • 16
3
votes
1 answer

Glade detects wrong version of Gtk+

I have a program (written by someone else) that I am trying to run. Traceback (most recent call last): File "gui/gui.py", line 387, in gui = GUI(filepath=filename) File "gui/gui.py", line 166, in __init__ …
lcordier
  • 93
  • 1
  • 6
3
votes
1 answer

GTK, Glade and Python connecting Handlers from Multiple Classes with the connect_signals

I hope you are all having a great day! I can not figure out for the life of me how I can link Multiple Class Handlers to a window object with connect_signals(obj_or_class). I would like to have both classes Overview and Navigation injected into the…
Kris Kizlyk
  • 151
  • 8
3
votes
2 answers

Column-Size on GtkTreeViews

How can I set the horizontal size of a specific column on a GtkTreeView? I have 4 columns on my TreeView and the last one expands on the rest of the free space. How can I set the first or second column to be expanded on the free space to set a fixed…
f00860
  • 3,486
  • 7
  • 41
  • 59
3
votes
2 answers

adding Gtkstatusbar in Glade3

I'm new to the world of building application GUIs in linux and I'm finding the tools I'm using do not have much in the way of tutorials and documentation that is relevant to the latest versions. I am using Glade3 (3.22.1) and trying to follow…
Madivad
  • 2,999
  • 7
  • 33
  • 60
3
votes
2 answers

Is there any Glade3 installer for Windows?

I downloaded file: http://downloads.sourceforge.net/gladewin32/glade-3.4.3-win32-1.zip and when I extract it an run glade-3.exe from /bin folder, I get "no libxml2.dll" error. Now, I want to find installer (like GTK+ bundle for GTK+) that would…
kliketa
  • 1,276
  • 3
  • 17
  • 23
3
votes
1 answer

Retrieving data from GtkListStore

I have a created a GUI with a tree view in Glade. This is the XML file:
user4918296
3
votes
1 answer

what are advantages of template based UI in GTK+

Is there an advantage of using a "Template" based method in GTK+ apps? I am making my first GTK+ app, and I am finding on the internet that there are many variations of creating a GTK+ apps, some older looking methods, some newer, I looked at the…
sprocket12
  • 5,368
  • 18
  • 64
  • 133
3
votes
2 answers

Signal Handlers for Message Dialogs in GTK+ using Glade (and C)

I am having trouble figuring out how to write signal handlers in my C code for the message dialogs that I am creating in GLADE. If I were not using GLADE, the signal handler would include the necessary information to construct the message dialog…
Leigh K
  • 561
  • 6
  • 20
3
votes
1 answer

GLADE & Pygtk: how to split dynamically windows?

I made a GLADE file, a main window of type "GtkNotebook" and there are several pages in it (Window1 = Page1, Page2, Page3, Page4). a) Is it possible, like a web-browser, to take one of this page and separate it from the main windows? Example Page4…
floppy_molly
  • 175
  • 1
  • 10
3
votes
1 answer

check if tab with defined text in gtk.notebook exists +gtk3

Is there a function to check if there is a Tab in a gtk.notebook with a defined text? Just found the function "get_menu_label_text ()", but it just returns the text of the tab from it's transmitted child. Just want to find out if there is a already…
Benny H.
  • 429
  • 1
  • 4
  • 16
3
votes
1 answer

Glade-3 for Ada

I am trying to use Glade 3 for my Ada programs on Windows 7. I found a way with version 3.6 but gtk-builder-convert was not recognized as a script. I have tried Google to find a site that explains how to get it working. But it always is for Linux or…
user587468
  • 31
  • 1
3
votes
2 answers

How to use Glade XML file to generate c++ code for GTK?

I know how to use Glade generated XML file (*.glade) and to load it in c++ code. But for educational purpose I need to see the c++ source code alternative to the XML file. I just want to see the same GUI (made on Glade with output in XML format),…
Pekov
  • 527
  • 1
  • 9
  • 23