From b0e84e7e2b2a6e7252cd24d6df9d0b93af127d77 Mon Sep 17 00:00:00 2001 From: Gehad elrobey Date: Fri, 21 Aug 2015 19:03:42 +0200 Subject: Printing: generate a Grantlee statistics template As there are two types of templates, Grantlee need to support both. This commit adds the support to generating a statistics HTML code from a statistics template. Signed-off-by: Lubomir I. Ivanov Signed-off-by: Gehad elrobey --- templatelayout.cpp | 47 +++++++++++++++++++++++++++++++++++++++++++++++ templatelayout.h | 4 ++-- 2 files changed, 49 insertions(+), 2 deletions(-) diff --git a/templatelayout.cpp b/templatelayout.cpp index 9245befbe..c52968f09 100644 --- a/templatelayout.cpp +++ b/templatelayout.cpp @@ -108,6 +108,53 @@ QString TemplateLayout::generate() return htmlContent; } +QString TemplateLayout::generateStatistics() +{ + QString htmlContent; + m_engine = new Grantlee::Engine(this); + + QSharedPointer m_templateLoader = + QSharedPointer(new Grantlee::FileSystemTemplateLoader()); + m_templateLoader->setTemplateDirs(QStringList() << getSubsurfaceDataPath("printing_templates/statistics")); + m_engine->addTemplateLoader(m_templateLoader); + + Grantlee::registerMetaType(); + Grantlee::registerMetaType(); + Grantlee::registerMetaType(); + + QVariantHash mapping; + QVariantList years; + + int i = 0; + while (stats_yearly != NULL && stats_yearly[i].period) { + YearInfo year(stats_yearly[i]); + years.append(QVariant::fromValue(year)); + i++; + } + + mapping.insert("years", years); + mapping.insert("template_options", QVariant::fromValue(*templateOptions)); + mapping.insert("print_options", QVariant::fromValue(*PrintOptions)); + + Grantlee::Context c(mapping); + + Grantlee::Template t = m_engine->loadByName(PrintOptions->p_template); + if (!t || t->error()) { + qDebug() << "Can't load template"; + return htmlContent; + } + + htmlContent = t->render(&c); + + if (t->error()) { + qDebug() << "Can't render template"; + return htmlContent; + } + + emit progressUpdated(100); + return htmlContent; +} + QString TemplateLayout::readTemplate(QString template_name) { QFile qfile(getSubsurfaceDataPath("printing_templates") + QDir::separator() + template_name); diff --git a/templatelayout.h b/templatelayout.h index 47ca31f4c..d9fa29295 100644 --- a/templatelayout.h +++ b/templatelayout.h @@ -10,7 +10,7 @@ int getTotalWork(print_options *printOptions); void find_all_templates(); -extern QList grantlee_templates; +extern QList grantlee_templates, grantlee_statistics_templates; class TemplateLayout : public QObject { Q_OBJECT @@ -18,6 +18,7 @@ public: TemplateLayout(print_options *PrintOptions, template_options *templateOptions); ~TemplateLayout(); QString generate(); + QString generateStatistics(); static QString readTemplate(QString template_name); static void writeTemplate(QString template_name, QString grantlee_template); @@ -198,7 +199,6 @@ if (property == "grayscale") { GRANTLEE_END_LOOKUP GRANTLEE_BEGIN_LOOKUP(YearInfo) - if (property == "year") { return object.year->period; } else if (property == "dives") { -- cgit v1.2.3-70-g09d2