KTextTemplate::AbstractNodeFactory Class
class KTextTemplate::AbstractNodeFactoryBase class for all NodeFactories. More...
Header: | #include <KTextTemplate/Node> |
CMake: | find_package(KF6 REQUIRED COMPONENTS TextTemplate) target_link_libraries(mytarget PRIVATE KF6::TextTemplate) |
Inherits: | QObject |
Public Functions
AbstractNodeFactory(QObject *parent = {}) | |
virtual KTextTemplate::Node * | getNode(const QString &tagContent, KTextTemplate::Parser *p) const = 0 |
Protected Functions
QList<KTextTemplate::FilterExpression> | getFilterExpressionList(const QStringList &list, KTextTemplate::Parser *p) const |
QStringList | smartSplit(const QString &str) const |
Detailed Description
This class can be used to make custom tags available to templates. The getNode method should be implemented to return a Node to be rendered.
A node is represented in template markup as content surrounded by percent signed tokens.
text content {% some_tag arg1 arg2 %} text content {% some_other_tag arg1 arg2 %} text content {% end_some_other_tag %} text content
It is the responsibility of an **%AbstractNodeFactory** implementation to process the contents of a tag and return a Node implementation from its getNode method.
The getNode method would for example be called with the tagContent "some_tag arg1 arg2". That content could then be split up, the arguments processed and a Node created
Node* SomeTagFactory::getNode(const QString &tagContent, Parser *p) { QStringList parts = smartSplit( tagContent ); parts.removeFirst(); // Remove the "some_tag" part. FilterExpression arg1( parts.first(), p ); FilterExpression arg2( parts.at( 1 ), p ); return new SomeTagNode( arg1, arg2, p ); }
The getNode implementation might also advance the parser. For example if we had a {% times %}
tag which rendered content the amount of times it was given in its argument, it could be used like this:
Some text content. {% times 5 %} the bit to be repeated {% end_times %} End text content
The argument to {% times %}
might not be a simple number, but could be a FilterExpression such as "someobject.some_property|getDigit:1".
The implementation could look like
Node* SomeOtherTagFactory::getNode(const QString &tagContent, Parser *p) { QStringList parts = smartSplit( tagContent ); parts.removeFirst(); // Remove the "times" part. FilterExpression arg( parts.first(), p ); auto node = new SomeTagNode( arg, p ); auto childNodes = p->parse( node, "end_times" ); node->setChildNodes( childNodes ); p->removeNextToken(); return node; }
Note that it is necessary to invoke the parser to create the child nodes only after creating the Node to return. That node must be passed to the Parser to perform as the parent QObject to the child nodes.
See also Parser::parse.
Member Function Documentation
[explicit]
AbstractNodeFactory::AbstractNodeFactory(QObject *parent = {})
Constructor.
parent The parent QObject
[protected]
QList<KTextTemplate::FilterExpression> AbstractNodeFactory::getFilterExpressionList(const QStringList &list, KTextTemplate::Parser *p) const
Returns a list of FilterExpression objects created with Parser p as described by the content of list.
This is used for convenience when handling the arguments to a tag.
[pure virtual]
KTextTemplate::Node *AbstractNodeFactory::getNode(const QString &tagContent, KTextTemplate::Parser *p) const
This method should be reimplemented to return a Node which can be rendered.
The tagContent is the content of the tag including the tag name and arguments. For example, if the template content is {% my_tag arg1 arg2 %}
, the tagContent will be "my_tag arg1 arg2".
The Parser p is available and can be advanced if appropriate. For example, if the tag has an end tag, the parser can be advanced to the end tag.
[protected invokable]
QStringList AbstractNodeFactory::smartSplit(const QString &str) const
Splits str into a list, taking quote marks into account.
This is typically used in the implementation of getNode with the tagContent.
If str is 'one "two three" four 'five " six' seven', the returned list will contain the following strings:
- one
- "two three"
- four
- five " six
- seven
Note: This function can be invoked via the meta-object system and from QML. See Q_INVOKABLE.