Grantlee
5.1.0
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
templates
lib
context.h
1
/*
2
This file is part of the Grantlee template system.
3
4
Copyright (c) 2009,2010 Stephen Kelly <steveire@gmail.com>
5
6
This library is free software; you can redistribute it and/or
7
modify it under the terms of the GNU Lesser General Public
8
License as published by the Free Software Foundation; either version
9
2.1 of the Licence, or (at your option) any later version.
10
11
This library is distributed in the hope that it will be useful,
12
but WITHOUT ANY WARRANTY; without even the implied warranty of
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
Lesser General Public License for more details.
15
16
You should have received a copy of the GNU Lesser General Public
17
License along with this library. If not, see <http://www.gnu.org/licenses/>.
18
19
*/
20
21
#ifndef GRANTLEE_CONTEXT_H
22
#define GRANTLEE_CONTEXT_H
23
24
#include "abstractlocalizer.h"
25
#include "grantlee_templates_export.h"
26
27
#include <QtCore/QVariantHash>
28
29
namespace
Grantlee
30
{
31
32
class
RenderContext;
33
34
class
ContextPrivate;
35
37
117
class
GRANTLEE_TEMPLATES_EXPORT
Context
118
{
119
public
:
123
Context
();
128
explicit
Context
(
const
QVariantHash &hash);
129
133
Context
(
const
Context
&other);
134
138
Context
&operator=(
const
Context
&other);
139
140
#ifndef Q_QDOC
141
147
bool
autoEscape()
const
;
148
155
void
setAutoEscape(
bool
autoescape);
156
#endif
157
160
~
Context
();
161
165
QVariant lookup(
const
QString &str)
const
;
166
171
void
insert(
const
QString &name, QObject *
object
);
172
177
void
insert(
const
QString &name,
const
QVariant &variant);
178
183
void
push();
184
189
void
pop();
190
191
#ifndef Q_QDOC
192
195
QVariantHash stackHash(
int
depth)
const
;
196
201
bool
isMutating()
const
;
202
207
void
setMutating(
bool
mutating);
208
212
void
addExternalMedia(
const
QString &absolutePart,
213
const
QString &relativePart);
214
218
void
clearExternalMedia();
219
#endif
220
226
void
setLocalizer(QSharedPointer<AbstractLocalizer> localizer);
227
231
QSharedPointer<AbstractLocalizer> localizer()
const
;
232
236
QList<QPair<QString, QString>> externalMedia()
const
;
237
241
enum
UrlType
{
242
AbsoluteUrls
,
243
RelativeUrls
244
};
245
250
void
setUrlType(
UrlType
type);
251
255
UrlType
urlType()
const
;
256
262
void
setRelativeMediaPath(
const
QString &relativePath);
263
267
QString relativeMediaPath()
const
;
268
276
RenderContext
*renderContext()
const
;
277
278
private
:
279
Q_DECLARE_PRIVATE(
Context
)
280
ContextPrivate *const d_ptr;
281
};
282
}
283
284
#endif
Grantlee::Context
The Context class holds the context to render a template with.
Definition:
context.h:117
Grantlee::Context::AbsoluteUrls
Absolute URLs should be put in the template.
Definition:
context.h:242
Grantlee::RenderContext
Provides storage facility for state while rendering a template.
Definition:
rendercontext.h:47
Grantlee::Context::UrlType
UrlType
Definition:
context.h:241
Grantlee
The Grantlee namespace holds all public Grantlee API.
Definition:
Mainpage.dox:7
Generated by
1.8.11