summaryrefslogtreecommitdiffstats
path: root/templatelayout.cpp
diff options
context:
space:
mode:
authorGravatar Gehad elrobey <gehadelrobey@gmail.com>2015-07-02 22:26:31 +0200
committerGravatar Lubomir I. Ivanov <neolit123@gmail.com>2015-07-05 21:00:40 +0300
commitbc80fc8849a01ac156c5e54ba8ef3fe04e1aaee3 (patch)
treed235d43cf54d5c30653147f2d1d9baec55bacf27 /templatelayout.cpp
parent71561e720dbfd85b3cb724dd1eb509b0d230d5db (diff)
downloadsubsurface-bc80fc8849a01ac156c5e54ba8ef3fe04e1aaee3.tar.gz
Printing: pass the template_options struct to TemplateLayout
The template_options struct needs to be passed to TemplateLayout constructor. Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com> Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Diffstat (limited to 'templatelayout.cpp')
-rw-r--r--templatelayout.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/templatelayout.cpp b/templatelayout.cpp
index 81a4d5f03..2a5bb8ff7 100644
--- a/templatelayout.cpp
+++ b/templatelayout.cpp
@@ -19,10 +19,11 @@ int getTotalWork(print_options *printOptions)
return dives;
}
-TemplateLayout::TemplateLayout(print_options *PrintOptions) :
+TemplateLayout::TemplateLayout(print_options *PrintOptions, template_options *templateOptions) :
m_engine(NULL)
{
this->PrintOptions = PrintOptions;
+ this->templateOptions = templateOptions;
}
TemplateLayout::~TemplateLayout()
@@ -45,6 +46,7 @@ QString TemplateLayout::generate()
m_engine->addTemplateLoader(m_templateLoader);
Grantlee::registerMetaType<Dive>();
+ Grantlee::registerMetaType<template_options>();
QVariantHash mapping;
QVariantList diveList;
@@ -61,6 +63,7 @@ QString TemplateLayout::generate()
emit progressUpdated(progress * 100.0 / totalWork);
}
mapping.insert("dives", diveList);
+ mapping.insert("template_options", QVariant::fromValue(*templateOptions));
Grantlee::Context c(mapping);