File: examples.dox

package info (click to toggle)
kf6-ktexttemplate 6.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 3,272 kB
  • sloc: cpp: 19,464; javascript: 6,043; python: 297; ruby: 24; makefile: 5
file content (76 lines) | stat: -rw-r--r-- 4,370 bytes parent folder | download
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

namespace KTextTemplate
{

/**

  @page examples Examples of KTextTemplate use

  @section books_example Books

  The Books application from %Qt Demos is modified to export the available data to a rendered html file. The example shows a use of the <tt>extends</tt> tag to override some parts of a base template. The templates can be edited to change the exported content without any recompiling. The themer has broad control over how the data os rendered and can even alter the structure of the presented data.

  <center><b>
  @image html ktexttemplate_book_simple.png "A simple export of the data"
  <br/>
  @image html ktexttemplate_book_coloured.png "A coloured export of the data showing the use of the &quot;<tt>cycle</tt>&quot; tag."
  <br/>
  @image html ktexttemplate_book_coloured_grouped.png "A restructured export of the data showing the use of the &quot;<tt>ifchanged</tt>&quot; tag."
  </b></center>

  @section codegen_example Codegen

  The codegen example shows how to use %KTextTemplate for code generation in multiple languages. The application can be used to generate classes in C++, python and ruby based on the content of the dialog. The user can define properties, which are generated appropriately to the language. For C++ it uses the <tt>Q_PROPERTY</tt> macro and creates an accessor a mutator and a notify signal. It can also be used to generate methods with arguments of any type in each language.

  <center><b>
  @image html codegen.png "The property and method configuration UI"
  <br/>
  @image html codegen-output.png "The output of the codegen tool"
  </b></center>

  @subsection codegen_blogs Related blog article
  <a href="http://steveire.wordpress.com/2010/04/06/using-grantlee-for-code-generation/">Using Grantlee for code generation</a>

  @section contacts_example Contacts

  The contacts application demostrates the use of the internationalization and localization features in %KTextTemplate. The user can select several contacts, whose details are formatted in templates for display in different themes. All strings in the templates are translatable, and the numbers, dates and currencies can be localized. The Contacts example can be used with the %Qt or the KDE localization systems.

  <center><b>
  @image html contacts_multi_lang_tables.png "A theme showing selected contacts in localized tables"
  <br/>
  @image html contacts_multi_lang_headers.png "An alternative theme showing a single table with localized headers."
  </b></center>


  @subsection contacts_blogs Related blog article
  <a href="http://steveire.wordpress.com/2010/11/11/localization-tricky-issue/">Localization: Tricky issue</a>

  @section htmlapps_example Html application framework

  The htmlapps example demonstrates how string templates can form part of a larger platform for html based applications. The application consists of a an extensible set of templates containing html applications, a %KTextTemplate plugin to extract data from rss feeds, and various infrastructure to handle local and remote network requests and render the result in WebKit.

  Several html applications are part of the example, such as capabilities for showing weather information, flickr feeds, identica microblogging etc.

  <center><b>
  @image html htmlapps.png "A weather application written in HTML"
  <br/>
  @image html htmlapps1.png "A flickr application written in HTML"
  </b></center>

  @subsection htmlapps_blogs Related blog article
  <a href="http://steveire.wordpress.com/2011/02/06/templating-html-applications-with-grantlee/">Templating HTML Applications with Grantlee</a>

  @section textedit_example Textedit application example

  The textedit application example is a modified version of the same example which is bundled with %Qt. The example shows how a custom type can be used in a text document and processed with the KTextTemplate::Textdocument library. It further demostrates how to add theming to the output using the KTextTemplate::Templates library.

  @subsection textedit_blogs Related blog article
  <a href="http://steveire.wordpress.com/2010/04/05/grantleerichtextbuilders/">KTextTemplate::RichTextBuilders</a>

  @section kdepim KDE PIM 4.6

  KDE PIM started using %KTextTemplate in its 4.6.0 release. The applications KJots and KAddressBook already use KTextTemplate::Templates to render content for user consumption.

*/

}