Engauge Digitizer  2
TutorialStateChecklistWizardPoints.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 
7 #include "Logger.h"
8 #include "TutorialButton.h"
10 #include "TutorialStateContext.h"
11 
14 {
15  LOG4CPP_INFO_S ((*mainCat)) << "TutorialStateChecklistWizardPoints::TutorialStateChecklistWizardPoints";
16 }
17 
19 {
20  LOG4CPP_INFO_S ((*mainCat)) << "TutorialStateChecklistWizardPoints::begin ()";
21 
23  connect (previous(), SIGNAL (signalTriggered ()), this, SLOT (slotPrevious ()));
24 }
25 
27 {
28  LOG4CPP_INFO_S ((*mainCat)) << "TutorialStateChecklistWizardPoints::end ()";
29 
31 }
32 
34 {
35  LOG4CPP_INFO_S ((*mainCat)) << "TutorialStateChecklistWizardPoints::slotPrevious";
36 
38 }
#define LOG4CPP_INFO_S(logger)
Definition: convenience.h:18
virtual void begin()
Common begin processing.
TutorialStateChecklistWizardPoints(TutorialStateContext &context)
Single constructor.
TutorialStateContext & context()
Context class for the tutorial state machine.
Abstract class that supports checklist wizard panels.
TutorialButton * previous()
Previous button for hooking up button to slot.
log4cpp::Category * mainCat
Definition: Logger.cpp:14
Context class for tutorial state machine.
void requestDelayedStateTransition(TutorialState tutorialState)
Request a transition to the specified state from the current state.
void slotPrevious()
Slot called to return to previous panel.