├── .gitignore ├── Makefile ├── README ├── add-listings.py ├── app-skeleton1 ├── .gitignore ├── Makefile.am └── configure.ac ├── app-skeleton2 ├── .gitignore ├── Makefile.am ├── configure.ac └── src │ ├── .gitignore │ ├── Makefile.am │ └── hello-world.c ├── app-skeleton3 ├── .gitignore ├── Makefile.am ├── app-skeleton.desktop ├── configure.ac ├── pixmaps │ ├── 16x16 │ │ └── apps │ │ │ └── app-skeleton.png │ ├── 22x22 │ │ └── apps │ │ │ └── app-skeleton.png │ ├── 24x24 │ │ └── apps │ │ │ └── app-skeleton.png │ ├── 32x32 │ │ └── apps │ │ │ └── app-skeleton.png │ ├── 48x48 │ │ └── apps │ │ │ └── app-skeleton.png │ └── Makefile.am └── src │ ├── .gitignore │ ├── Makefile.am │ └── hello-world.c ├── app-skeleton4 ├── .gitignore ├── Makefile.am ├── app-skeleton.desktop.in ├── autogen.sh ├── configure.ac ├── pixmaps │ ├── 16x16 │ │ └── apps │ │ │ └── app-skeleton.png │ ├── 22x22 │ │ └── apps │ │ │ └── app-skeleton.png │ ├── 24x24 │ │ └── apps │ │ │ └── app-skeleton.png │ ├── 32x32 │ │ └── apps │ │ │ └── app-skeleton.png │ ├── 48x48 │ │ └── apps │ │ │ └── app-skeleton.png │ └── Makefile.am ├── po │ ├── .gitignore │ ├── LINGUAS │ ├── Makevars │ ├── POTFILES.in │ └── nl.po └── src │ ├── .gitignore │ ├── Makefile.am │ └── hello-world.c ├── autoconf-project.page.in ├── automake-project.page.in ├── custom-container.page.in ├── custom.xslt ├── desktop-file.page.in ├── dynamic-actions.page.in ├── gettext-project.page.in ├── highlight.pack.js ├── index.css ├── index.page ├── infoapp1 ├── Makefile.am ├── autogen.sh ├── configure.ac ├── data │ ├── Makefile.am │ ├── info-app.menus.xml │ └── info-app.ui ├── git.mk ├── info-app.desktop.in ├── pixmaps │ ├── 16x16 │ │ └── apps │ │ │ └── info-app.png │ ├── 22x22 │ │ └── apps │ │ │ └── info-app.png │ ├── 24x24 │ │ └── apps │ │ │ └── info-app.png │ ├── 32x32 │ │ └── apps │ │ │ └── info-app.png │ ├── 48x48 │ │ └── apps │ │ │ └── info-app.png │ └── Makefile.am ├── po │ ├── LINGUAS │ ├── Makevars │ ├── POTFILES.in │ └── nl.po └── src │ ├── Makefile.am │ ├── main.c │ ├── pinfoapp.c │ ├── pinfoapp.h │ ├── pinfowidget.c │ ├── pinfowidget.h │ ├── pinfowindow.c │ └── pinfowindow.h ├── introduction.page ├── psquare ├── .gitignore ├── Makefile ├── psquare.c ├── psquare.h └── test-psquare.c ├── real-life-app-setup.page ├── real-life-app-writing.page ├── rocky-raccoon ├── .gitignore ├── Makefile ├── rocky-menus.xml ├── rocky.c └── rocky.ui └── rocky-screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/README -------------------------------------------------------------------------------- /add-listings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/add-listings.py -------------------------------------------------------------------------------- /app-skeleton1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton1/.gitignore -------------------------------------------------------------------------------- /app-skeleton1/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app-skeleton1/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton1/configure.ac -------------------------------------------------------------------------------- /app-skeleton2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton2/.gitignore -------------------------------------------------------------------------------- /app-skeleton2/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | 3 | -------------------------------------------------------------------------------- /app-skeleton2/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton2/configure.ac -------------------------------------------------------------------------------- /app-skeleton2/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton2/src/.gitignore -------------------------------------------------------------------------------- /app-skeleton2/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton2/src/Makefile.am -------------------------------------------------------------------------------- /app-skeleton2/src/hello-world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton2/src/hello-world.c -------------------------------------------------------------------------------- /app-skeleton3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton3/.gitignore -------------------------------------------------------------------------------- /app-skeleton3/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton3/Makefile.am -------------------------------------------------------------------------------- /app-skeleton3/app-skeleton.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton3/app-skeleton.desktop -------------------------------------------------------------------------------- /app-skeleton3/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton3/configure.ac -------------------------------------------------------------------------------- /app-skeleton3/pixmaps/16x16/apps/app-skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton3/pixmaps/16x16/apps/app-skeleton.png -------------------------------------------------------------------------------- /app-skeleton3/pixmaps/22x22/apps/app-skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton3/pixmaps/22x22/apps/app-skeleton.png -------------------------------------------------------------------------------- /app-skeleton3/pixmaps/24x24/apps/app-skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton3/pixmaps/24x24/apps/app-skeleton.png -------------------------------------------------------------------------------- /app-skeleton3/pixmaps/32x32/apps/app-skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton3/pixmaps/32x32/apps/app-skeleton.png -------------------------------------------------------------------------------- /app-skeleton3/pixmaps/48x48/apps/app-skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton3/pixmaps/48x48/apps/app-skeleton.png -------------------------------------------------------------------------------- /app-skeleton3/pixmaps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton3/pixmaps/Makefile.am -------------------------------------------------------------------------------- /app-skeleton3/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton3/src/.gitignore -------------------------------------------------------------------------------- /app-skeleton3/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton3/src/Makefile.am -------------------------------------------------------------------------------- /app-skeleton3/src/hello-world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton3/src/hello-world.c -------------------------------------------------------------------------------- /app-skeleton4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton4/.gitignore -------------------------------------------------------------------------------- /app-skeleton4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton4/Makefile.am -------------------------------------------------------------------------------- /app-skeleton4/app-skeleton.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton4/app-skeleton.desktop.in -------------------------------------------------------------------------------- /app-skeleton4/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton4/autogen.sh -------------------------------------------------------------------------------- /app-skeleton4/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton4/configure.ac -------------------------------------------------------------------------------- /app-skeleton4/pixmaps/16x16/apps/app-skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton4/pixmaps/16x16/apps/app-skeleton.png -------------------------------------------------------------------------------- /app-skeleton4/pixmaps/22x22/apps/app-skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton4/pixmaps/22x22/apps/app-skeleton.png -------------------------------------------------------------------------------- /app-skeleton4/pixmaps/24x24/apps/app-skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton4/pixmaps/24x24/apps/app-skeleton.png -------------------------------------------------------------------------------- /app-skeleton4/pixmaps/32x32/apps/app-skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton4/pixmaps/32x32/apps/app-skeleton.png -------------------------------------------------------------------------------- /app-skeleton4/pixmaps/48x48/apps/app-skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton4/pixmaps/48x48/apps/app-skeleton.png -------------------------------------------------------------------------------- /app-skeleton4/pixmaps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton4/pixmaps/Makefile.am -------------------------------------------------------------------------------- /app-skeleton4/po/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton4/po/.gitignore -------------------------------------------------------------------------------- /app-skeleton4/po/LINGUAS: -------------------------------------------------------------------------------- 1 | nl 2 | -------------------------------------------------------------------------------- /app-skeleton4/po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton4/po/Makevars -------------------------------------------------------------------------------- /app-skeleton4/po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton4/po/POTFILES.in -------------------------------------------------------------------------------- /app-skeleton4/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton4/po/nl.po -------------------------------------------------------------------------------- /app-skeleton4/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton4/src/.gitignore -------------------------------------------------------------------------------- /app-skeleton4/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton4/src/Makefile.am -------------------------------------------------------------------------------- /app-skeleton4/src/hello-world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/app-skeleton4/src/hello-world.c -------------------------------------------------------------------------------- /autoconf-project.page.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/autoconf-project.page.in -------------------------------------------------------------------------------- /automake-project.page.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/automake-project.page.in -------------------------------------------------------------------------------- /custom-container.page.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/custom-container.page.in -------------------------------------------------------------------------------- /custom.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/custom.xslt -------------------------------------------------------------------------------- /desktop-file.page.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/desktop-file.page.in -------------------------------------------------------------------------------- /dynamic-actions.page.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/dynamic-actions.page.in -------------------------------------------------------------------------------- /gettext-project.page.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/gettext-project.page.in -------------------------------------------------------------------------------- /highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/highlight.pack.js -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/index.css -------------------------------------------------------------------------------- /index.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/index.page -------------------------------------------------------------------------------- /infoapp1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/infoapp1/Makefile.am -------------------------------------------------------------------------------- /infoapp1/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/infoapp1/autogen.sh -------------------------------------------------------------------------------- /infoapp1/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/infoapp1/configure.ac -------------------------------------------------------------------------------- /infoapp1/data/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = app-skeleton.ui 2 | 3 | -include $(top_srcdir)/git.mk 4 | -------------------------------------------------------------------------------- /infoapp1/data/info-app.menus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/infoapp1/data/info-app.menus.xml -------------------------------------------------------------------------------- /infoapp1/data/info-app.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/infoapp1/data/info-app.ui -------------------------------------------------------------------------------- /infoapp1/git.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/infoapp1/git.mk -------------------------------------------------------------------------------- /infoapp1/info-app.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/infoapp1/info-app.desktop.in -------------------------------------------------------------------------------- /infoapp1/pixmaps/16x16/apps/info-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/infoapp1/pixmaps/16x16/apps/info-app.png -------------------------------------------------------------------------------- /infoapp1/pixmaps/22x22/apps/info-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/infoapp1/pixmaps/22x22/apps/info-app.png -------------------------------------------------------------------------------- /infoapp1/pixmaps/24x24/apps/info-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/infoapp1/pixmaps/24x24/apps/info-app.png -------------------------------------------------------------------------------- /infoapp1/pixmaps/32x32/apps/info-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/infoapp1/pixmaps/32x32/apps/info-app.png -------------------------------------------------------------------------------- /infoapp1/pixmaps/48x48/apps/info-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/infoapp1/pixmaps/48x48/apps/info-app.png -------------------------------------------------------------------------------- /infoapp1/pixmaps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/infoapp1/pixmaps/Makefile.am -------------------------------------------------------------------------------- /infoapp1/po/LINGUAS: -------------------------------------------------------------------------------- 1 | nl 2 | -------------------------------------------------------------------------------- /infoapp1/po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/infoapp1/po/Makevars -------------------------------------------------------------------------------- /infoapp1/po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/infoapp1/po/POTFILES.in -------------------------------------------------------------------------------- /infoapp1/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/infoapp1/po/nl.po -------------------------------------------------------------------------------- /infoapp1/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/infoapp1/src/Makefile.am -------------------------------------------------------------------------------- /infoapp1/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/infoapp1/src/main.c -------------------------------------------------------------------------------- /infoapp1/src/pinfoapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/infoapp1/src/pinfoapp.c -------------------------------------------------------------------------------- /infoapp1/src/pinfoapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/infoapp1/src/pinfoapp.h -------------------------------------------------------------------------------- /infoapp1/src/pinfowidget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/infoapp1/src/pinfowidget.c -------------------------------------------------------------------------------- /infoapp1/src/pinfowidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/infoapp1/src/pinfowidget.h -------------------------------------------------------------------------------- /infoapp1/src/pinfowindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/infoapp1/src/pinfowindow.c -------------------------------------------------------------------------------- /infoapp1/src/pinfowindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/infoapp1/src/pinfowindow.h -------------------------------------------------------------------------------- /introduction.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/introduction.page -------------------------------------------------------------------------------- /psquare/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | test-psquare 3 | -------------------------------------------------------------------------------- /psquare/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/psquare/Makefile -------------------------------------------------------------------------------- /psquare/psquare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/psquare/psquare.c -------------------------------------------------------------------------------- /psquare/psquare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/psquare/psquare.h -------------------------------------------------------------------------------- /psquare/test-psquare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/psquare/test-psquare.c -------------------------------------------------------------------------------- /real-life-app-setup.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/real-life-app-setup.page -------------------------------------------------------------------------------- /real-life-app-writing.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/real-life-app-writing.page -------------------------------------------------------------------------------- /rocky-raccoon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/rocky-raccoon/.gitignore -------------------------------------------------------------------------------- /rocky-raccoon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/rocky-raccoon/Makefile -------------------------------------------------------------------------------- /rocky-raccoon/rocky-menus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/rocky-raccoon/rocky-menus.xml -------------------------------------------------------------------------------- /rocky-raccoon/rocky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/rocky-raccoon/rocky.c -------------------------------------------------------------------------------- /rocky-raccoon/rocky.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/rocky-raccoon/rocky.ui -------------------------------------------------------------------------------- /rocky-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptomato/advanced-gtk-techniques/HEAD/rocky-screenshot.png --------------------------------------------------------------------------------