KTextTemplate
Integrating KTextTemplate into applications is very simple. This page describes
- How to render a Template with a Context
- How to load Templates
- How to extend the syntax of KTextTemplate
- Patterns of use of KTextTemplate
If you are not already familiar with Django template syntax and structure, start with KTextTemplate for theme artists. If you are already familiar with Django, you might find Differences between Django and KTextTemplate informative.
Rendering Templates
Creating Templates
Rendering templates is very easy in application code. A single Template may be rendered multiple times with different Context objects.
Usually, applications do not create a Template directly, but instead use a KTextTemplate::Engine to load external files. This allows artists to define the template without needing to recompile.
Variables
A Context object maps a string to another object for reference in the template. String keys in the Context object are available as variables in the Template, and can be used with the {{ variable }}
syntax or inside {% control tags %}
. In the above example, we mapped the string "name"
to the string "Grainne"
and then to the string "Henry"
. We can create more than just string mappings though.
It is additionally possible to insert any type of object or any container (not just QVariantHash and QVariantList) into the Context.
- See also
- Generic type and template support.
Extending KTextTemplate
KTextTemplate has 5 extension points.
- Custom object variables
- Generic types and containers
- Filters
- Tags
- Loaders
Custom objects
Instances of QObject*
can be inserted into templates. The recommended way to insert custom objects into templates is to create QObject wrappers for your objects. As QObject is introspectable, this will allow lookups to work in a way you define.
- Note
- If you are already familiar with Django you will know that creating wrappers is not necessary in Django. That is because python objects are already fully introspectable.
Note that the 'name'
of PersonWrapper
is accessible in the template, but the 'age'
is not. Note also that rendering fails silently if the method can not be found. Only methods which have a corresponding Q_PROPERTY
declaration are accessible from templates. To make age
accessible in the template, we would need to add
Q_PROPERTY(int age READ age)
to the class. Note also that those methods are const
. Rendering a template should never change an object it is rendering. Always make sure the READ properties of your wrapper objects are const
. It is also possible to lookup dynamic properties of QObject
s. In the case of dynamic properties, the property name must be UTF-8 encoded.
If you already have QObject
s in your application which would be suitable for use in templates, you only need to add some Q_PROPERTY
entries to the classes to make them accessible to KTextTemplate.
- Note
- If you are familiar with Django you may be aware of the
alters_data
attribute for methods. This method of using wrappers andconst
is the equivalent to thealters_data
attribute. You the wrapper writer choose the properties which will be accessible from the templates and makes themconst
, so there's no need to mark other methods asalters_data
.
For most uses of KTextTemplate, this is enough to get make an application themable easily and quickly. For more advanced usage, see Extending the template system. For some example uses of KTextTemplate, see Examples of KTextTemplate use.
Custom Object Properties
The broad introspection features of Qt5 are relied upon by KTextTemplate via the Q_PROPERTY
macro. Most types used with that macro may be accessed in KTextTemplate templates without further code.
We can define a Home
type like this:
And we can use it in a Q_PROPERTY
macro in our PersonWrapper
type:
And then use it in a template:
Using containers such as QList and QSharedPointer with the Q_PROPERTY
macro is also possible.
Classes which do not derive from QObject, but which are decorated with the Q_GADGET
and <Q_PROPERTY
macros may also be used as expected.
generic_variables
An alternative to writing wrapper QObject classes with Q_PROPERTY
macros is to use the KTextTemplate::MetaType system to provide introspection for any type or any container. This subject is treated in detail in Generic type and template support
Enumerators
KTextTemplate has built-in support for enumerators which use the Q_ENUMS
macro.
The enums can be used and accessed in various ways. See QMetaEnum for details.
Enumerators in the Qt namespaces are also supported.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Mon Nov 18 2024 12:17:29 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.