C Tiffany Antopolski tiffany.antopolski@gmail.com Bastian Ilso bastianilso@gnome.org Tutorials and code samples in C. Mario Blättermann mario.blaettermann@gmail.com 2011, 2013 Platform Demos in C
Prerequisites

To compile these platform demos you will need a C compiler, for example gcc. You will also need GTK+ 3 including headers and pkg-config files. Linux distributions usually abstract GTK+ 3 headers and pkg-config files into separate packages called gtk3-devel, gtk3-dev or similar.

Richtlinien für neue Entwickler

Beyond the prerequisites mentioned above, several tools has been developed to assist you further in developing your GNOME application. GNOME also recommends a specific coding style and conventions which this section will elaborate further upon.

Coding Style

Most applications in the GNOME project is written in the GNU style of indentation. The tutorials and code examples presented are following this convention and you are recommended to do so too.

Executing Code

To run the code samples:

Copy and paste the code into filename.c

Geben Sie Folgendes im Terminal ein:

gcc Dateiname.c `pkg-config --cflags --libs gtk+-3.0` -o Dateiname ./filename

For more information about compiling GTK+ programs see Compiling GTK+ Applications on UNIX.

Einführungen
Widget Code Examples
Fenster

Display widgets
Buttons and toggles
Numeric and text data entry
Ein mehrzeiliger Texteditor
TreeView widget
Selectors
File selectors
Font selectors
Farbwähler
Layout containers
Ornamente
Bildlauf
Verschiedenes