NuriaProject Framework  0.1
The NuriaProject Framework
templateprogram.hpp
1 /* Copyright (c) 2014-2015, The Nuria Project
2  * The NuriaProject Framework is free software: you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public License as
4  * published by the Free Software Foundation, either version 3 of the License,
5  * or (at your option) any later version.
6  *
7  * The NuriaProject Framework is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public License
13  * along with The NuriaProject Framework.
14  * If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef NURIA_TEMPLATEPROGRAM_HPP
18 #define NURIA_TEMPLATEPROGRAM_HPP
19 
20 #include <nuria/callback.hpp>
21 #include "templateerror.hpp"
22 #include "twig_global.hpp"
23 #include <QSharedData>
24 #include <QStringList>
25 
26 namespace Nuria {
27 
28 class TemplateProgramPrivate;
29 class TemplateEngine;
30 
70 class NURIA_TWIG_EXPORT TemplateProgram {
71 public:
72 
74  TemplateProgram ();
75 
77  TemplateProgram (const TemplateProgram &other);
78 
80  TemplateProgram &operator= (const TemplateProgram &other);
81 
83  ~TemplateProgram ();
84 
86  bool isValid () const;
87 
92  QStringList dependencies () const;
93 
97  QStringList neededVariables () const;
98 
100  QVariant value (const QString &variable) const;
101 
106  bool setValue (const QString &variable, const QVariant &value);
107 
109  QLocale locale () const;
110 
112  void setLocale (const QLocale &locale);
113 
125  void addFunction (const QString &name, const Callback &function);
126 
130  bool hasFunction (const QString &name);
131 
139  bool canRender () const;
140 
147  QString render ();
148 
150  TemplateError lastError () const;
151 
152 private:
153  friend class TemplateEngine;
154 
155  TemplateProgram (TemplateProgramPrivate *dptr);
156  void refNode ();
157  void derefNode ();
158  bool checkVariable (int index) const;
159 
160  QSharedDataPointer< TemplateProgramPrivate > d;
161 
162 };
163 
164 }
165 
166 Q_DECLARE_METATYPE(Nuria::TemplateProgram)
167 
168 #endif // NURIA_TEMPLATEPROGRAM_HPP
A modern style callback mechanism which can be bound to various method types including slots...
Definition: callback.hpp:140
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