Engauge Digitizer  2
ChecklistGuidePageIntro.cpp
1 /******************************************************************************************************
2  * (C) 2014 markummitchell@github.com. This file is part of Engauge Digitizer, which is released *
3  * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file *
4  * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. *
5  ******************************************************************************************************/
6 
7 #include "ChecklistGuidePageIntro.h"
8 #include "Logger.h"
9 
11  ChecklistGuidePage (tr ("Introduction"))
12 {
13  LOG4CPP_INFO_S ((*mainCat)) << "ChecklistGuidePageIntro::ChecklistGuidePageIntro";
14 
15  addHtml (QString ("<p>%1</p>"
16  "<p>%2</p>"
17  "<p>%3</p>")
18  .arg (tr ("Engauge converts an image of a graph or map into numbers, as long as the image has axes and/or grid lines "
19  "to define the coordinates."))
20  .arg (tr ("This wizard creates a checklist of steps that can serve as a helpful guide. By following those steps, you "
21  "can obtain digitized data points in an exported file. This wizard also provides a quick summary of the "
22  "most useful features of Engauge."))
23  .arg (tr ("New users are encouraged to use this wizard.")));
24 }
This class customizes QWizardPage for ChecklistGuideWizard.
void addHtml(const QString &html)
Insert html for display.
ChecklistGuidePageIntro()
Single constructor.