glade  3.40.0
About: Glade is a User Interface Designer for the GTK+ toolkit and the Gnome desktop environment.
  Fossies Dox: glade-3.40.0.tar.xz  ("unofficial" and yet experimental doxygen-generated source code documentation)  

glade Documentation

Some Fossies usage hints in advance:

  1. To see the Doxygen generated documentation please click on one of the items in the steelblue colored "quick index" bar above or use the side panel at the left which displays a hierarchical tree-like index structure and is adjustable in width.
  2. If you want to search for something by keyword rather than browse for it you can use the client side search facility (using Javascript and DHTML) that provides live searching, i.e. the search results are presented and adapted as you type in the Search input field at the top right.
  3. Doxygen doesn't incorporate all member files but just a definable subset (basically the main project source code files that are written in a supported language). So to search and browse all member files you may visit the Fossies glade-3.40.0.tar.xz contents page and use the Fossies standard member browsing features (also with source code highlighting and additionally with optional code folding).
README.md

Glade

User interface designer for Gtk+ and GNOME

Mailing Lists:

Both users and devel mailing list have been archived, you can find the archives at

Development status

Glade is not being actively developed or maintained anymore. If you are interested in becoming a maintainer please contact us on gitlab.

General Information

Glade is a RAD tool to enable quick and easy development of user interfaces for the GTK+ 3 toolkit and the GNOME desktop environment.

The user interfaces designed in Glade are saved as XML and these can be loaded by applications dynamically as needed by using GtkBuilder or used directly to define a new GtkWidget derived object class using Gtk+ new template feature.

By using GtkBuilder, Glade XML files can be used in numerous programming languages including C, C++, C#, Vala, Java, Perl, Python, and others.

This version of Glade targets GTK 3 If you need to work with GTK 2, you can still use Glade 3.8 (more information)

License

Glade is distributed under the GNU General Public License, version 2 (GPL) and GNU Library General Public License, version 2 (LGPL) as described in the COPYING file.

Manual instalation

Requirements

  • C compiler like gcc
  • Meson build system
  • GTK 3.24.0 or above
  • libxml 2.4.1 - used to parse XML files
  • libgirepository1.0 - Build-time dependency
  • xsltproc - for man pages generation

Optional dependencies:

  • glib-networking plugins for TLS support (Needed for survey)
  • libwebkit2gtk-4.0 - For Webkit plugin
  • python-gi - For Python plugin
  • libgjs - For JavaScript plugin
  • gettext, itstool - For translation support

Download sources from git and build using meson/ninja

# Install dependencies, for example in debian
sudo apt install gcc meson libgtk-3-dev libxml2-dev libgirepository1.0-dev xsltproc gettext itstool

# Optional dependencies
sudo apt install libgjs-dev libwebkit2gtk-4.0-dev python-gi-dev glib-networking

# Clone the source repository or download tarball
git clone https://gitlab.gnome.org/GNOME/glade.git

# Create build directory and configure project
mkdir glade/build && cd glade/build
meson --prefix=~/.local

# Build and install
ninja
ninja install

To run it you might need to set up LD_LIBRARY_PATH depending on your distribution defaults

LD_LIBRARY_PATH=~/.local/lib/x86_64-linux-gnu/ glade

Linux

Debian

apt install glade

Fedora

yum install glade

Any distribution with Flatpak

flatpak install flathub org.gnome.Glade

Download on Flathub

Windows

Available as a package in MSYS2

pacman -S mingw-w64-x86_64-glade

OSX

Available as a package in Brew

brew install glade