NeoNextion
Arduino library for the Nextion displays.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator
INextionCallback.h
Go to the documentation of this file.
1 
3 #ifndef __NEONEXTION_INEXTIONCALLBACK
4 #define __NEONEXTION_INEXTIONCALLBACK
5 
6 #include "INextionTouchable.h"
7 
13 {
14 public:
16  {
17  }
18 
24  virtual void handleNextionEvent(NextionEventType type,
25  INextionTouchable *widget) = 0;
26 };
27 
28 #endif
virtual void handleNextionEvent(NextionEventType type, INextionTouchable *widget)=0
Handle a callback.
NextionEventType
Type of events received from device.
Definition: NextionTypes.h:76
Interface for widgets that can be touched.
Definition: INextionTouchable.h:15
Interface for classes that handle callbacks from a display device.
Definition: INextionCallback.h:12