TouchGFX + 0/4 examples
CodeScope will show references to touchgfx::Presenter from the following samples and libraries:
Examples
STM32469I-Discovery
Demonstrations
STM32469I_EVAL
Demonstrations
STM324x9I_EVAL
Demonstrations
STM32F429I-Discovery
Demonstrations
 
Symbols
loading...
Files
loading...

touchgfx::Presenter class

@class Presenter Presenter.hpp mvp/Presenter.hpp The Presenter base class that all application-specific presenters should derive from. The Presenter base class that all application-specific presenters should derive from. Only contains activate and deactivate virtual functions which are called automatically during screen transition.

Syntax

class Presenter;
Implemented in Presenter.hpp:30

Methods

activate()

@fn virtual void Presenter::activate() Place initialization code for the Presenter here. The activate function is called automatically when a screen transition causes this Presenter to become active. Place initialization code for the Presenter here. Read more...

deactivate()

@fn virtual void Presenter::deactivate() Place cleanup code for the Presenter here. The deactivate function is called automatically when a screen transition causes this Presenter to become inactive. Place cleanup code for the Presenter here. Read more...

Examples

touchgfx::Presenter is referenced by 4 libraries and example projects.

References

LocationReferrerScopeText
Presenter.hpp:30
class Presenter
MVPApplication.hpp:31
class Presenter;
MVPApplication.hpp:85touchgfx::MVPApplication::currentPresentertouchgfx::MVPApplication
Presenter* currentPresenter; ///< Pointer to the currently active presenter.
MVPApplication.hpp:116touchgfx::prepareTransition()
MVPApplication.hpp:142touchgfx::prepareTransition()
(*currentPresenter)->~Presenter();
MVPApplication.hpp:155touchgfx::finalizeTransition()
MVPApplication.hpp:192touchgfx::makeTransition()::currentPresentertouchgfx::makeTransition()
PresenterType* makeTransition(Screen** currentScreen, Presenter** currentPresenter, MVPHeap& heap, Transition** currentTrans, ModelType* model)

Type Use

Variables of touchgfx::Presenter type
touchgfx::Presenter