summaryrefslogtreecommitdiff
path: root/examples/application2
Commit message (Collapse)AuthorAgeFilesLines
* Update ui files to new stack syntaxMatthias Clasen2019-02-081-4/+1
| | | | This conversion was done with the help of gtk4-builder-tool.
* examples: Rename the pkg-config file for GTK 4Emmanuele Bassi2019-02-051-2/+2
| | | | | We dropped the '+' and the major.minor version from the pkg-config file name.
* examples: Simplify .ui filesMohammed Sadiq2018-05-071-4/+0
| | | | Run gtk4-builder-tool recursively
* examples: Fix Makefiles to use gtk4 for buildMohammed Sadiq2018-05-071-2/+2
|
* Drop Autotools buildEmmanuele Bassi2017-08-141-30/+0
| | | | | We are officially switching to Meson as the default build system for GTK+.
* meson: examples: updateTim-Philipp Müller2017-05-031-15/+5
| | | | | Mostly style changes. Don't create resource source files with spaces in them, that's tempting our luck.
* Build examplesTimm Bäder2017-05-031-0/+17
|
* Make gdk.la and gsk.la a noninst helper libraryAlexander Larsson2016-10-261-1/+0
| | | | | | | | This merged gtk, gdk and gsk into one library, making it possible to have internal private APIs between gtk them, as well as producing more efficient code. https://bugzilla.gnome.org/show_bug.cgi?id=773100
* Rename Makefile references from 3.0 to 4.0Matthias Clasen2016-10-071-2/+2
| | | | | This is almost certainly incomplete. Needs careful scrutiny
* examples: use G_DECLARE_FINAL_TYPE in applicationsMohammed Sadiq2016-09-104-22/+2
| | | | | | | | G_DECLARE_FINAL_TYPE was introduced in glib 2.44. We shall use that now so that lots of boilerplate code can be reduced. https://bugzilla.gnome.org/show_bug.cgi?id=770278
* Fix example MakefilesMatthias Clasen2016-07-031-1/+1
| | | | | | | Put OBJS before LIBS on the commandline to make things work better. https://bugzilla.gnome.org/show_bug.cgi?id=768142
* tutorial: Drop excessive margin from headerbarMatthias Clasen2016-02-271-1/+0
| | | | | It is no longer necessary to add extra margins around the center child in a headerbar.
* examples: Clean up the standalone MakefilesEmmanuele Bassi2015-05-261-7/+8
| | | | | Do not hardcode GCC as the compiler; use $(shell) expansion instead of backticks; split the built source into its own variable.
* examples: Fix clean rule in stand alone MakefilesEmmanuele Bassi2014-12-061-0/+1
| | | | Remove all the built files, including the exampleapp binary.
* Add standalone Makefile for the examplesEmmanuele Bassi2014-12-021-0/+24
| | | | | | | We want to allow people to build the examples easily, without necessarily requiring them to build the whole of GTK+. https://bugzilla.gnome.org/show_bug.cgi?id=741041
* Beautify example Makefiles a bitMatthias Clasen2014-11-291-14/+13
|
* Make include order consistent in example applicationsMatthias Clasen2014-11-282-2/+4
| | | | | Pointed out in https://bugzilla.gnome.org/show_bug.cgi?id=740537
* example: Fix up marginsMatthias Clasen2014-04-171-0/+1
| | | | | | This makes the code match what we show in the screenshots. This broke when headerbars were changed to allow titles to extend into the margin.
* examples: Use git.mkJasper St. Pierre2013-08-071-0/+2
|
* Getting started: Coding style updatesMatthias Clasen2013-07-245-37/+41
| | | | Make the new examples use GTK+ coding style.
* Add a new example appMatthias Clasen2013-07-208-0/+220
Add a new example to the getting started part of the docs. The focus of this example is on 'new stuff': GtkApplication, templates, settings, gmenu, gaction, GtkStack, GtkHeaderBar, GtkSearchBar, GtkRevealer, GtkListBox, GtkMenuButton, etc. It is being developed in several steps. Each step is put in a separate directory below examples/: application1, ..., application8. This is a little repetitive, but lets us use the code of all examples in the documentation.