{"id":13559978,"url":"https://github.com/GNOME/glade","last_synced_at":"2025-04-03T15:31:27.706Z","repository":{"id":3479572,"uuid":"4534937","full_name":"GNOME/glade","owner":"GNOME","description":"Read-only mirror of https://gitlab.gnome.org/GNOME/glade","archived":false,"fork":false,"pushed_at":"2024-07-29T20:40:33.000Z","size":41397,"stargazers_count":227,"open_issues_count":0,"forks_count":32,"subscribers_count":12,"default_branch":"master","last_synced_at":"2024-10-07T12:51:09.151Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://gitlab.gnome.org/GNOME/glade","language":"C","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GNOME.png","metadata":{"files":{"readme":"README.md","changelog":"ChangeLog.old.gz","contributing":"CONTRIBUTING.md","funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2012-06-03T05:01:34.000Z","updated_at":"2024-10-04T16:34:19.000Z","dependencies_parsed_at":"2023-10-16T23:37:35.283Z","dependency_job_id":"eb5e3d1a-a33d-45b2-9e20-ca5647649817","html_url":"https://github.com/GNOME/glade","commit_stats":null,"previous_names":[],"tags_count":121,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GNOME%2Fglade","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GNOME%2Fglade/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GNOME%2Fglade/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GNOME%2Fglade/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GNOME","download_url":"https://codeload.github.com/GNOME/glade/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246819785,"owners_count":20839095,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T13:00:35.746Z","updated_at":"2025-04-03T15:31:22.690Z","avatar_url":"https://github.com/GNOME.png","language":"C","readme":"# Glade\n\nUser interface designer for Gtk+ and GNOME\n\n* Web - \u003chttps://glade.gnome.org\u003e\n* Git - \u003chttps://gitlab.gnome.org/GNOME/glade\u003e\n\nMailing Lists: \n\nBoth users and devel mailing list have been archived, you can find the archives at\n\n* https://mail.gnome.org/archives/glade-users-list/\n* https://mail.gnome.org/archives/glade-devel-list/\n\n## Development status\n\nGlade is not being actively developed or maintained anymore. \nIf you are interested in becoming a maintainer please contact us on gitlab. \n\n## General Information\n\nGlade is a RAD tool to enable quick and easy development of user interfaces\nfor the GTK+ 3 toolkit and the GNOME desktop environment. \n\nThe user interfaces designed in Glade are saved as XML and these can be loaded\nby applications dynamically as needed by using GtkBuilder or used directly to\ndefine a new GtkWidget derived object class using Gtk+ new template feature.\n\nBy using GtkBuilder, Glade XML files can be used in numerous programming \nlanguages including C, C++, C#, Vala, Java, Perl, Python, and others. \n\nThis version of Glade targets GTK 3\nIf you need to work with GTK 2, you can still use Glade 3.8\n([more information](http://blogs.gnome.org/tvb/2011/01/15/the-glade-dl/))\n\n## License\n\nGlade is distributed under the\n[GNU General Public License](https://www.gnu.org/licenses/gpl-2.0.en.html),\nversion 2 (GPL) and\n[GNU Library General Public License](https://www.gnu.org/licenses/old-licenses/lgpl-2.0.en.html),\nversion 2 (LGPL) as described in the COPYING file.\n\n## Manual instalation\n\nRequirements\n\n* C compiler like [gcc](https://gcc.gnu.org/)\n* [Meson](http://mesonbuild.org) build system\n* [GTK](http://www.gtk.org) 3.24.0 or above\n* [libxml](http://xmlsoft.org/) 2.4.1 - used to parse XML files\n* libgirepository1.0 - Build-time dependency\n* xsltproc - for man pages generation\n\nOptional dependencies:\n\n* glib-networking plugins for TLS support (Needed for survey)\n* libwebkit2gtk-4.0 - For Webkit plugin\n* python-gi - For Python plugin\n* libgjs - For JavaScript plugin\n* gettext, itstool - For translation support\n\nDownload sources from git and build using meson/ninja\n\n\t# Install dependencies, for example in debian\n\tsudo apt install gcc meson libgtk-3-dev libxml2-dev libgirepository1.0-dev xsltproc gettext itstool\n\t\n\t# Optional dependencies\n\tsudo apt install libgjs-dev libwebkit2gtk-4.0-dev python-gi-dev glib-networking\n\n\t# Clone the source repository or download tarball\n\tgit clone https://gitlab.gnome.org/GNOME/glade.git\n\n\t# Create build directory and configure project\n\tmkdir glade/build \u0026\u0026 cd glade/build\n\tmeson --prefix=~/.local\n\n\t# Build and install\n\tninja\n\tninja install\n\nTo run it you might need to set up LD_LIBRARY_PATH depending on your\ndistribution defaults\n\n\tLD_LIBRARY_PATH=~/.local/lib/x86_64-linux-gnu/ glade\n\n## Linux\n\nDebian\n\n\tapt install glade\n\nFedora\n\n\tyum install glade\n\nAny distribution with Flatpak\n\n\tflatpak install flathub org.gnome.Glade\n\n[\u003cimg width='240' alt='Download on Flathub' src='https://flathub.org/assets/badges/flathub-badge-i-en.png'/\u003e](https://flathub.org/apps/details/org.gnome.Glade)\n\n## Windows\n\nAvailable as a\n[package](https://packages.msys2.org/package/mingw-w64-x86_64-glade) in\n[MSYS2](https://www.msys2.org/)\n\n\tpacman -S mingw-w64-x86_64-glade\n\n## OSX\n\nAvailable as a [package](https://formulae.brew.sh/formula/glade) in\n[Brew](https://brew.sh/)\n\n\tbrew install glade\n\n\n\n\n\n\n","funding_links":[],"categories":["Applications","应用"],"sub_categories":["Development","开发"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FGNOME%2Fglade","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FGNOME%2Fglade","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FGNOME%2Fglade/lists"}