AusweisApp2
StepShowSelfAuthenticationDataGui.h
gehe zur Dokumentation dieser Datei
1 
5 #pragma once
6 
8 #include "StepGui.h"
9 
10 #include <QLabel>
11 
12 namespace governikus
13 {
14 
15 class AuthenticateStepsWidget;
16 
18  : public StepGui
19 {
20  Q_OBJECT
21 
22  public:
23  StepShowSelfAuthenticationDataGui(QSharedPointer<SelfAuthContext> pContext, AuthenticateStepsWidget* pStepsWidget);
24  virtual ~StepShowSelfAuthenticationDataGui() override;
25 
26  virtual void activate() override;
27  virtual void deactivate() override;
28 
29  private Q_SLOTS:
30  virtual void forwardStep() override;
31 
32  private:
33  QSharedPointer<SelfAuthContext> mContext;
34  AuthenticateStepsWidget* mStepsWidget;
35 };
36 
37 } // namespace governikus
governikus::StepShowSelfAuthenticationDataGui::deactivate
virtual void deactivate() override
Definition: StepShowSelfAuthenticationDataGui.cpp:37
governikus::SelfInfoWidget::setInfo
void setInfo(const SelfAuthenticationData &pData)
Definition: SelfInfoWidget.cpp:41
governikus::StepGui
Definition: StepGui.h:35
governikus::StepShowSelfAuthenticationDataGui::activate
virtual void activate() override
Definition: StepShowSelfAuthenticationDataGui.cpp:26
governikus::StepShowSelfAuthenticationDataGui::StepShowSelfAuthenticationDataGui
StepShowSelfAuthenticationDataGui(QSharedPointer< SelfAuthContext > pContext, AuthenticateStepsWidget *pStepsWidget)
Definition: StepShowSelfAuthenticationDataGui.cpp:12
governikus::StepShowSelfAuthenticationDataGui
Definition: StepShowSelfAuthenticationDataGui.h:19
StepGui.h
governikus::StepGui::setCancelButtonState
void setCancelButtonState(ButtonState pState)
Definition: StepGui.h:67
governikus::AuthenticateStepsWidget::getSelfInfoPage
SelfInfoWidget * getSelfInfoPage() const
Definition: AuthenticateStepsWidget.cpp:38
governikus::ButtonState::FOCUSSED
@ FOCUSSED
Button is visible, enabled, and focussed.
governikus::StepGui::setForwardButtonState
void setForwardButtonState(ButtonState pState, const QString &pText=QString())
Definition: StepGui.h:61
governikus
Implementation of ActivationContext for Intent based activation on Android systems.
Definition: ActivationContext.h:15
StepShowSelfAuthenticationDataGui.h
SelfAuthContext.h
AuthenticateStepsWidget.h
governikus::SelfInfoWidget
Definition: SelfInfoWidget.h:24
SelfInfoWidget.h
governikus::AuthenticateStepsWidget
Definition: AuthenticateStepsWidget.h:27
governikus::StepShowSelfAuthenticationDataGui::~StepShowSelfAuthenticationDataGui
virtual ~StepShowSelfAuthenticationDataGui() override
Definition: StepShowSelfAuthenticationDataGui.cpp:21