A basic graphics package for the LPC4088 Display Module.

Dependents:   lpc4088_displaymodule_demo_sphere sampleGUI sampleEmptyGUI lpc4088_displaymodule_fs_aid ... more

Fork of DMBasicGUI by EmbeddedArtists AB

Revision:
11:265884fa7fdd
Parent:
10:651861441108
Child:
13:bff2288c2c61
--- a/SlideShow/AppSlideShow.h	Mon Jan 26 10:06:58 2015 +0100
+++ b/SlideShow/AppSlideShow.h	Tue Feb 17 10:34:13 2015 +0100
@@ -21,6 +21,7 @@
 #include "DMBoard.h"
 #include "SlideShow.h"
 #include "rtos.h"
+#include "ImageButton.h"
 
 /**
  * An App example. Slideshow.
@@ -30,7 +31,7 @@
 class AppSlideShow : public App {
 public:
 
-	AppSlideShow();
+	AppSlideShow(const char* scriptFile, const char* pathPrefix=NULL, int xoff=0, int yoff=0);
 	virtual ~AppSlideShow();
 
     virtual bool setup();
@@ -43,6 +44,12 @@
     SlideShow* _show;
     Renderer* _rend;
     Mutex _fileMutex;
+    ImageButton* _btnDone;
+    ImageButton* _btnRepeat;
+    char* _script;
+    char* _path;
+    int _xoff;
+    int _yoff;
 };
 
 #endif