gtk/examples/application1
Matthias Clasen 9f068866e2 examples: Use #pragma once consistently
It is our current coding style.
2023-12-20 10:29:45 -05:00
..
exampleapp.c Replace "gchar" with "char" 2020-07-25 00:47:36 +02:00
exampleapp.h examples: Use #pragma once consistently 2023-12-20 10:29:45 -05:00
exampleapp.png Getting started: Add icon and desktop file 2013-07-24 07:31:05 -04:00
exampleappwin.c examples: use G_DECLARE_FINAL_TYPE in applications 2016-09-10 09:01:08 -04:00
exampleappwin.h examples: Use #pragma once consistently 2023-12-20 10:29:45 -05:00
main.c Make include order consistent in example applications 2014-11-28 23:57:16 -05:00
Makefile.example examples: Rename the pkg-config file for GTK 4 2019-02-05 10:27:57 +01:00
meson.build examples: Add common_cflags to executables 2020-05-18 11:30:08 +02:00
org.gtk.exampleapp.desktop examples: Use appliction id as desktop file base name 2018-08-02 11:10:21 +02:00
README Refresh the tutorial examples 2020-05-11 08:15:56 -04:00

Step 1: A trivial application

To make gnome-shell use the desktop file and icon for this example
while running it uninstalled, do the following:

mkdir -p ~/.local/share/applications
sed -e "s#@bindir@#$PWD#" org.gtk.exampleapp.desktop \
  > ~/.local/share/applications/org.gtk.exampleapp.desktop

mkdir -p ~/.local/share/icons/hicolor/48x48/apps
cp exampleapp.png ~/.local/share/icons/hicolor/48x48/apps