1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
|
<?xml version="1.0" encoding="utf-8"?>
<page xmlns="http://projectmallard.org/1.0/" xmlns:its="http://www.w3.org/2005/11/its" xmlns:ui="http://projectmallard.org/experimental/ui/" type="guide" id="c" xml:lang="de">
<info>
<!-- The text title is used on the help.gnome.org -->
<title type="link">C</title>
<link type="guide" xref="index#tutorials"/>
<revision version="3.4" date="2012-04-28" status="stub"/>
<credit type="editor">
<name>Tiffany Antopolski</name>
<email its:translate="no">tiffany.antopolski@gmail.com</email>
</credit>
<credit type="editor">
<name>Bastian Ilso</name>
<email its:translate="no">bastianilso@gnome.org</email>
</credit>
<include xmlns="http://www.w3.org/2001/XInclude" href="legal.xml"/>
<desc>Tutorials und Codebeispiele in C.</desc>
<mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
<mal:name>Mario Blättermann</mal:name>
<mal:email>mario.blaettermann@gmail.com</mal:email>
<mal:years>2011, 2013, 2016, 2018, 2021</mal:years>
</mal:credit>
</info>
<title>Plattform-Demos in C</title>
<section id="prerequisites">
<title>Voraussetzungen</title>
<p>To compile these platform demos you will need a C compiler, for example
<link href="https://gcc.gnu.org/">gcc</link>.
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 <em>gtk3-devel</em>, <em>gtk3-dev</em>
or similar.</p>
</section>
<section id="for-beginners" ui:expanded="false">
<title>Richtlinien für neue Entwickler</title>
<p>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.</p>
<section id="recommended-tools">
<title>Empfohlene Werkzeuge</title>
<list>
<item>
<p><link href="https://wiki.gnome.org/Apps/Devhelp">DevHelp</link>: Ein API-Dokumentationsbrowser für GNOME.</p>
</item>
<item>
<p>A GNOME IDE (Integrated Development Environment).
An IDE can assist you in writing and debugging C code,
for example <link href="https://wiki.gnome.org/Apps/Builder">Builder</link>
or <link href="https://wiki.gnome.org/Apps/Anjuta">Anjuta</link>.</p>
</item>
<item>
<p><link href="http://glade.gnome.org/">Glade</link>: Ein Designer für Benutzeroberflächen von GTK+-Anwendungen.</p>
</item>
<item>
<p>An IRC Client, for example
<link href="https://wiki.gnome.org/Apps/Polari">Polari</link> or
<link href="https://wiki.gnome.org/Apps/Empathy">Empathy</link>.
If you run into problems while following the beginner tutorials,
join #gnome on <em>irc.gnome.org</em>.</p>
</item>
</list>
</section>
<section id="coding-style">
<title>Code-Stil</title>
<p>Most applications in the GNOME project is written in the
<link href="http://en.wikipedia.org/wiki/Indent_style#GNU_style">GNU style</link>
of indentation. The tutorials and code examples presented are following
this convention and you are recommended to do so too.</p>
</section>
<section id="executing-code">
<title>Ausführen von Code</title>
<p>So führen Sie die Codebeispiele aus:</p>
<steps>
<item>
<p>Kopieren Sie den Code und fügen Sie ihn in <var>Dateiname</var>.c ein</p>
</item>
<item>
<p>Geben Sie Folgendes im Terminal ein:</p>
<screen>gcc <var>Dateiname</var>.c `pkg-config --cflags --libs gtk+-3.0` -o <var>Dateiname</var></screen>
<screen>./<var>filename</var></screen>
</item>
</steps>
<note>
<p>For more information about compiling GTK+ programs see
<link href="http://developer.gnome.org/gtk3/3.4/gtk-compiling.html">Compiling GTK+ Applications on UNIX</link>.</p>
</note>
</section>
</section>
<section id="examples">
<title>Einführungen</title>
</section>
<section id="samples">
<title>Widget-Codebeispiele</title>
<section id="windows" style="2column"><title>Fenster</title>
<p/>
</section>
<section id="display-widgets" style="2column"><title>Widgets anzeigen</title>
</section>
<section id="buttons" style="2column"><title>Knöpfe und Auslöser</title>
</section>
<section id="entry" style="2column"><title>Numerische und Textdateneingabe</title>
</section>
<section id="multiline" style="2column"><title>Ein mehrzeiliger Texteditor</title>
</section>
<section id="menu-combo-toolbar" style="2column"><title>Menü-, Kombinationsfeld- und Werkzeugleisten-Widgets</title>
</section>
<section id="treeview" style="2column"><title>TreeView-Widget</title>
</section>
<section id="selectors"><title>Auswähler</title>
<section id="file-selectors" style="2column"><title>Dateiwähler</title>
</section>
<section id="font-selectors" style="2column"><title>Schriftwähler</title>
</section>
<section id="color-selectors" style="2column"><title>Farbwähler</title>
</section>
</section>
<section id="layout" style="2column"><title>Layout-Container</title>
</section>
<section id="ornaments" style="2column"><title>Ornamente</title>
</section>
<section id="scrolling" style="2column"><title>Bildlauf</title>
</section>
<section id="misc" style="2column"><title>Verschiedenes</title>
</section>
</section>
</page>
|