Display text on LCD displays (even on multiple ones). Allow to create windows (frames) on display, and to combine them (split, add, duplicate, scroll). See http://mbed.org/users/hlipka/notebook/lcdwindow/ for more information.

Dependents:   Mbell

Revision:
1:65f72ed914fa
Parent:
0:ae5037e3d6e0
Child:
2:5ac5bab7daaf
--- a/subwindow.h	Mon Nov 15 22:37:30 2010 +0000
+++ b/subwindow.h	Tue Nov 16 20:49:18 2010 +0000
@@ -41,8 +41,8 @@
          * @param width the width of the sub window
          * @param height the height of the sub window
         */
-        SubWindow(Window* lcd, unsigned int offsetX, unsigned int offsetY, unsigned int width, unsigned int height);
-        virtual void writeText(unsigned int line, unsigned int pos, char text[]);
+        SubWindow(Window* lcd, const unsigned int offsetX, const unsigned int offsetY, const unsigned int width, const unsigned int height);
+        virtual void writeText(const unsigned int line, const unsigned int pos, const char text[]);
         virtual int getHeight(){return _height;};
         virtual int getWidth(){return _width;};
         /**