Engauge Digitizer  2
ChecklistGuidePageConclusion.cpp
Go to the documentation of this file.
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 
8 #include "Logger.h"
9 
11  ChecklistGuidePage (tr ("Conclusion"))
12 {
13  LOG4CPP_INFO_S ((*mainCat)) << "ChecklistGuidePageConclusion::ChecklistGuidePageConclusion";
14 
15  addHtml (QString ("<p>%1</p>"
16  "<br/><br/><br/>"
17  "<p><font color=\"red\">%2</font> "
18  "%3</p>")
19  .arg (tr ("A checklist guide has been created."))
20  .arg (tr ("Why does the imported image look different?"))
21  .arg (tr ("After import, a filtered image is shown in the background. This filtered image is produced from "
22  "the original image according to the parameters set in Settings / Color Filter. When the parameters "
23  "have been set correctly, unimportant information (such as grid lines and background colors) has been "
24  "removed from the filtered images so automated feature extraction can be performed. If desirable "
25  "features have been removed from the image, the parameters can be adjusted using Settings / Color Filter, "
26  "or the original image can be displayed instead using View / Background / Show Original Image.")));
27 }
28 
30 {
31  LOG4CPP_INFO_S ((*mainCat)) << "ChecklistGuidePageConclusion::validatePage";
32 
33  return true;
34 }
35 
#define LOG4CPP_INFO_S(logger)
Definition: convenience.h:18
virtual bool validatePage()
Perform final processing.
This class customizes QWizardPage for ChecklistGuideWizard.
log4cpp::Category * mainCat
Definition: Logger.cpp:14
void addHtml(const QString &html)
Insert html for display.