Engauge Digitizer  2
Public Slots | Public Member Functions | List of all members
TutorialStateChecklistWizardPoints Class Reference

Checklist wizard panel for points discusses the checklist wizard, and returns to TRANSITION_STATE_POINT_MATCH. More...

#include <TutorialStateChecklistWizardPoints.h>

Inheritance diagram for TutorialStateChecklistWizardPoints:
Inheritance graph
Collaboration diagram for TutorialStateChecklistWizardPoints:
Collaboration graph

Public Slots

void slotPrevious ()
 Slot called to return to previous panel. More...
 

Public Member Functions

 TutorialStateChecklistWizardPoints (TutorialStateContext &context)
 Single constructor. More...
 
virtual void begin ()
 Common begin processing. More...
 
virtual void end ()
 Common end processing. More...
 
- Public Member Functions inherited from TutorialStateChecklistWizardAbstract
 TutorialStateChecklistWizardAbstract (TutorialStateContext &context)
 Single constructor. More...
 
- Public Member Functions inherited from TutorialStateAbstractBase
 TutorialStateAbstractBase (TutorialStateContext &context)
 Single constructor. More...
 
virtual ~TutorialStateAbstractBase ()
 

Additional Inherited Members

- Protected Member Functions inherited from TutorialStateChecklistWizardAbstract
TutorialButtonprevious ()
 Previous button for hooking up button to slot. More...
 
- Protected Member Functions inherited from TutorialStateAbstractBase
int buttonMargin () const
 Buttons are placed up against bottom side, and left or right side, separated by this margin. More...
 
TutorialStateContextcontext ()
 Context class for the tutorial state machine. More...
 
QGraphicsPixmapItem * createPixmapItem (const QString &resource, const QPoint &pos)
 Factory method for pixmap items. More...
 
QGraphicsTextItem * createTextItem (const QString &text, const QPoint &pos)
 Factory method for text items. More...
 
QGraphicsTextItem * createTitle (const QString &text)
 Factory method for title items. More...
 

Detailed Description

Checklist wizard panel for points discusses the checklist wizard, and returns to TRANSITION_STATE_POINT_MATCH.

Definition at line 17 of file TutorialStateChecklistWizardPoints.h.

Constructor & Destructor Documentation

◆ TutorialStateChecklistWizardPoints()

TutorialStateChecklistWizardPoints::TutorialStateChecklistWizardPoints ( TutorialStateContext context)

Single constructor.

Definition at line 12 of file TutorialStateChecklistWizardPoints.cpp.

12  :
14 {
15  LOG4CPP_INFO_S ((*mainCat)) << "TutorialStateChecklistWizardPoints::TutorialStateChecklistWizardPoints";
16 }

Member Function Documentation

◆ begin()

void TutorialStateChecklistWizardPoints::begin ( )
virtual

Common begin processing.

Reimplemented from TutorialStateChecklistWizardAbstract.

Definition at line 18 of file TutorialStateChecklistWizardPoints.cpp.

19 {
20  LOG4CPP_INFO_S ((*mainCat)) << "TutorialStateChecklistWizardPoints::begin ()";
21 
23  connect (previous(), SIGNAL (signalTriggered ()), this, SLOT (slotPrevious ()));
24 }

◆ end()

void TutorialStateChecklistWizardPoints::end ( )
virtual

Common end processing.

Reimplemented from TutorialStateChecklistWizardAbstract.

Definition at line 26 of file TutorialStateChecklistWizardPoints.cpp.

27 {
28  LOG4CPP_INFO_S ((*mainCat)) << "TutorialStateChecklistWizardPoints::end ()";
29 
31 }

◆ slotPrevious

void TutorialStateChecklistWizardPoints::slotPrevious ( )
slot

Slot called to return to previous panel.

Definition at line 33 of file TutorialStateChecklistWizardPoints.cpp.

34 {
35  LOG4CPP_INFO_S ((*mainCat)) << "TutorialStateChecklistWizardPoints::slotPrevious";
36 
38 }

The documentation for this class was generated from the following files:
TutorialStateAbstractBase::context
TutorialStateContext & context()
Context class for the tutorial state machine.
Definition: TutorialStateAbstractBase.cpp:31
TUTORIAL_STATE_POINT_MATCH
Definition: TutorialStateAbstractBase.h:22
TutorialStateChecklistWizardPoints::slotPrevious
void slotPrevious()
Slot called to return to previous panel.
Definition: TutorialStateChecklistWizardPoints.cpp:33
TutorialStateChecklistWizardAbstract::previous
TutorialButton * previous()
Previous button for hooking up button to slot.
Definition: TutorialStateChecklistWizardAbstract.cpp:73
LOG4CPP_INFO_S
#define LOG4CPP_INFO_S(logger)
Definition: convenience.h:18
TutorialStateContext::requestDelayedStateTransition
void requestDelayedStateTransition(TutorialState tutorialState)
Request a transition to the specified state from the current state.
Definition: TutorialStateContext.cpp:86
mainCat
log4cpp::Category * mainCat
Definition: Logger.cpp:14
TutorialStateChecklistWizardAbstract::begin
void begin()
Common begin processing.
Definition: TutorialStateChecklistWizardAbstract.cpp:29
TutorialStateChecklistWizardAbstract::end
void end()
Common end processing.
Definition: TutorialStateChecklistWizardAbstract.cpp:65
TutorialStateChecklistWizardAbstract::TutorialStateChecklistWizardAbstract
TutorialStateChecklistWizardAbstract(TutorialStateContext &context)
Single constructor.
Definition: TutorialStateChecklistWizardAbstract.cpp:17