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:
3:e5d5e2fe4bf6
Parent:
2:5ac5bab7daaf
Child:
5:3ff30ca33efc
--- a/subwindow.cpp	Sat Nov 27 22:54:13 2010 +0000
+++ b/subwindow.cpp	Sun Nov 28 22:09:54 2010 +0000
@@ -25,7 +25,8 @@
 
 #include "string.h"
 
-SubWindow::SubWindow(Window* lcd, const unsigned int columnOffset, const unsigned int rowOffset, const unsigned int columns, const unsigned int rows) {
+SubWindow::SubWindow(Window* lcd, const unsigned int columnOffset, const unsigned int rowOffset, const unsigned int columns, const unsigned int rows)
+:Window() {
     _lcd=lcd;
     _columnOffset=columnOffset;
     _rowOffset=rowOffset;