KTextTemplate::Context Class
class KTextTemplate::ContextThe Context class holds the context to render a Template with. More...
Header: | #include <KTextTemplate/Context> |
CMake: | find_package(KF6 REQUIRED COMPONENTS TextTemplate) target_link_libraries(mytarget PRIVATE KF6::TextTemplate) |
Public Types
enum | UrlType { AbsoluteUrls, RelativeUrls } |
Public Functions
Context() | |
Context(const QVariantHash &hash) | |
QList<std::pair<QString, QString>> | externalMedia() const |
void | insert(const QString &name, QObject *object) |
void | insert(const QString &name, const QVariant &variant) |
QSharedPointer<KTextTemplate::AbstractLocalizer> | localizer() const |
QVariant | lookup(const QString &str) const |
void | pop() |
void | push() |
QString | relativeMediaPath() const |
KTextTemplate::RenderContext * | renderContext() const |
void | setLocalizer(QSharedPointer<KTextTemplate::AbstractLocalizer> localizer) |
void | setRelativeMediaPath(const QString &relativePath) |
void | setUrlType(KTextTemplate::Context::UrlType type) |
KTextTemplate::Context::UrlType | urlType() const |
Detailed Description
For application developers, using the Context class is a matter of inserting keys and values as appropriate for rendering a Template using the insert method.
auto t = engine->newTemplate( "Name is {% name %} and age is {% age %}.", "some_template" ); Context c1; c1.insert( "name", "Tom" ); c1.insert( "age", 34 ); Context c2; c2.insert( "name", "Harry" ); c2.insert( "age", 43 ); t->render(c1); // Returns "Name is Tom and age is 43." t->render(c2); // Returns "Name is Harry and age is 34."
Note that one Template may be rendered multiple times with different contexts. Note also that any QVariant may be inserted into a Context object. Most commonly, QObjects will be used here.
Context Stack
For template tag developers, some other Context API is relevant.
It is possible to push and pop layers of context while a template is being rendered. This is useful if your template tag makes additional variables temporarily available in a part of a template. %Template tags should only modify layers of context that they push themselves, and should pop any layers created before finishing its rendering step.
See for example the {% with %}
tag. In a template such as
Some content {% with person.name|toUpper as lowerName %} Name is {% lowerName %} {% endwith %}
In this case, lowerName is available in the context only between the {% with %}
and {% endwith %}
tags. The implementation of the {% with %}
tag render method is:
void WithNode::render( OutputStream *stream, Context *c ) const { c->push(); // {% with m_filterExpression as m_name %} c->insert( m_name, m_filterExpression.resolve( c ) ); m_list.render( stream, c ); c->pop(); // The section of context defining m_name is removed. }
Note that a Context may temporarily override a variable in a parent context. This is why it is important to push a new context when adding items to context and pop it when finished.
Some content {% with "foo" as var %} Var is {% var %} // Var is "foo" {% with "bar" as var %} Var is {% var %} // Var is "bar" {% endwith %} Var is {% var %} // Var is "foo" {% endwith %}
Member Type Documentation
enum Context::UrlType
The type of urls to external media that should be put in the template.
Constant | Value | Description |
---|---|---|
KTextTemplate::Context::AbsoluteUrls | 0 | Absolute URLs should be put in the template. |
KTextTemplate::Context::RelativeUrls | 1 | Relative URLs should be put in the template. |
Member Function Documentation
Context::Context()
Creates an empty context
[explicit]
Context::Context(const QVariantHash &hash)
Sets every key in the hash as a property name with the variant as the value.
QList<std::pair<QString, QString>> Context::externalMedia() const
Returns the external media encountered in the Template while rendering.
void Context::insert(const QString &name, QObject *object)
Insert the context object object identified by name into the Context.
void Context::insert(const QString &name, const QVariant &variant)
Insert the context object variant identified by name into the Context.
QSharedPointer<KTextTemplate::AbstractLocalizer> Context::localizer() const
Returns the localizer currently in use.
See also setLocalizer().
QVariant Context::lookup(const QString &str) const
Returns the context object identified by the key str
void Context::pop()
Pops the context.
void Context::push()
Pushes a new context.
QString Context::relativeMediaPath() const
The relative path to external media to be used in templates.
See also setRelativeMediaPath().
KTextTemplate::RenderContext *Context::renderContext() const
Returns a modifiable RenderContext. This may be used to make Template rendering threadsafe so that render state does not need to be stored in the Node implementation itself.
void Context::setLocalizer(QSharedPointer<KTextTemplate::AbstractLocalizer> localizer)
Sets the localizer to be used.
The Context takes ownerwhip of the localizer.
See also localizer().
void Context::setRelativeMediaPath(const QString &relativePath)
Sets the relative path to external media to be used in templates to relativePath
See also relativeMediaPath().
void Context::setUrlType(KTextTemplate::Context::UrlType type)
Sets the type of external media URL to be used in the template to type.
See also urlType().
KTextTemplate::Context::UrlType Context::urlType() const
The type of URL used in the template.
See also setUrlType().