Engauge Digitizer  2
 All Classes Files Functions Variables Enumerations Enumerator Friends Pages
TutorialStateChecklistWizardAbstract.h
1 #ifndef TUTORIAL_STATE_CHECKLIST_WIZARD_ABSTRACT_H
2 #define TUTORIAL_STATE_CHECKLIST_WIZARD_ABSTRACT_H
3 
4 #include "TutorialStateAbstractBase.h"
5 
6 class QGraphicsPixmapItem;
7 class QGraphicsTextItem;
8 class TutorialButton;
10 
13 {
14  public:
17 
18  protected:
20  void begin();
21 
23  void end();
24 
27 
28  private:
29 
30  QGraphicsTextItem *m_title;
31  QGraphicsPixmapItem *m_background;
32  QGraphicsTextItem *m_text0;
33  QGraphicsTextItem *m_text1;
34  QGraphicsTextItem *m_text2;
35  QGraphicsTextItem *m_text3;
36  TutorialButton *m_previous;
37 };
38 
39 #endif // TUTORIAL_STATE_CHECKLIST_WIZARD_ABSTRACT_H
One state manages one panel of the tutorial.
Show a button with text for clicking ion. The button is implemented using layering of two graphics it...
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.
TutorialStateChecklistWizardAbstract(TutorialStateContext &context)
Single constructor.
Context class for tutorial state machine.