17 #ifndef NURIA_TEMPLATEENGINE_HPP
18 #define NURIA_TEMPLATEENGINE_HPP
20 #include <nuria/callback.hpp>
21 #include "twig_global.hpp"
25 #include "templateprogram.hpp"
26 #include "templateerror.hpp"
30 class TemplateEnginePrivate;
188 QLocale locale ()
const;
191 void setLocale (
const QLocale &locale);
197 int maxCacheSize ()
const;
203 void setMaxCacheSize (
int size);
206 int currentCacheSize ()
const;
209 bool isTemplateInCache (
const QString &templateName)
const;
218 QVariant value (
const QString &name)
const;
221 QVariantMap values ()
const;
224 void setValues (
const QVariantMap &map);
232 void mergeValues (
const QVariantMap &map);
235 void setValue (
const QString &name,
const QVariant &value);
245 void addFunction (
const QString &name,
const Callback &
function,
bool isConstant =
false);
250 bool hasFunction (
const QString &name);
273 QString render (
const QString &templateName);
292 TemplateProgramPrivate *createProgram (
const QString &templateName);
293 void removeChangedTemplateFromCache (
const QString &templateName);
295 void connectToLoaderSignals ();
297 TemplateEnginePrivate *d_ptr;
303 #endif // NURIA_TEMPLATEENGINE_HPP
A modern style callback mechanism which can be bound to various method types including slots...
Definition: callback.hpp:140
Loader of template data for TemplateEngine.
Definition: templateloader.hpp:40
Container for exposing Twig errors to user code.
Definition: templateerror.hpp:75
Definition: abstractsessionmanager.hpp:24
Templating engine for rendering Twig code.
Definition: templateengine.hpp:174
Represents a compiled Twig code program.
Definition: templateprogram.hpp:70