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