Basic swim GUI for LPC4088

Fork of DMBasicGUI by Embedded Artists

Revision:
5:f4de114c31c3
Child:
10:651861441108
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SlideShow/AppSlideShow.h	Sun Dec 21 13:53:07 2014 +0100
@@ -0,0 +1,48 @@
+/*
+ *  Copyright 2014 Embedded Artists AB
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License");
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ */
+ 
+#ifndef APP_SLIDESHOW_H
+#define APP_SLIDESHOW_H
+
+#include "App.h"
+#include "DMBoard.h"
+#include "SlideShow.h"
+#include "rtos.h"
+
+/**
+ * An App example. Slideshow.
+ *
+ * The purpose of this example is to show how the SlideShow class can be used.
+ */
+class AppSlideShow : public App {
+public:
+
+	AppSlideShow();
+	~AppSlideShow();
+
+    virtual bool setup();
+    virtual void runToCompletion();
+    virtual bool teardown();
+
+private:
+    void* _fb;
+    Display* _disp;
+    SlideShow* _show;
+    Renderer* _rend;
+    Mutex _fileMutex;
+};
+
+#endif