Fork of LCD-Window which works with Enhanced TextLCD from Wim
Fork of LcdWindow by
terminal.h@2:5ac5bab7daaf, 2010-11-27 (annotated)
- Committer:
- hlipka
- Date:
- Sat Nov 27 22:54:13 2010 +0000
- Revision:
- 2:5ac5bab7daaf
- Parent:
- 1:65f72ed914fa
- Child:
- 13:99b500b05716
Moved to \"Stream\"-based API (like TextLCD) which allows the usage of printf
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
hlipka | 0:ae5037e3d6e0 | 1 | /* |
hlipka | 0:ae5037e3d6e0 | 2 | * mbed LCDWindow library |
hlipka | 0:ae5037e3d6e0 | 3 | * Copyright (c) 2010 Hendrik Lipka |
hlipka | 0:ae5037e3d6e0 | 4 | * |
hlipka | 0:ae5037e3d6e0 | 5 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
hlipka | 0:ae5037e3d6e0 | 6 | * of this software and associated documentation files (the "Software"), to deal |
hlipka | 0:ae5037e3d6e0 | 7 | * in the Software without restriction, including without limitation the rights |
hlipka | 0:ae5037e3d6e0 | 8 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
hlipka | 0:ae5037e3d6e0 | 9 | * copies of the Software, and to permit persons to whom the Software is |
hlipka | 0:ae5037e3d6e0 | 10 | * furnished to do so, subject to the following conditions: |
hlipka | 0:ae5037e3d6e0 | 11 | * |
hlipka | 0:ae5037e3d6e0 | 12 | * The above copyright notice and this permission notice shall be included in |
hlipka | 0:ae5037e3d6e0 | 13 | * all copies or substantial portions of the Software. |
hlipka | 0:ae5037e3d6e0 | 14 | * |
hlipka | 0:ae5037e3d6e0 | 15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
hlipka | 0:ae5037e3d6e0 | 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
hlipka | 0:ae5037e3d6e0 | 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
hlipka | 0:ae5037e3d6e0 | 18 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
hlipka | 0:ae5037e3d6e0 | 19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
hlipka | 0:ae5037e3d6e0 | 20 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
hlipka | 0:ae5037e3d6e0 | 21 | * THE SOFTWARE. |
hlipka | 0:ae5037e3d6e0 | 22 | */ |
hlipka | 0:ae5037e3d6e0 | 23 | |
hlipka | 0:ae5037e3d6e0 | 24 | #ifndef TERMINAL_H_ |
hlipka | 0:ae5037e3d6e0 | 25 | #define TERMINAL_H_ |
hlipka | 0:ae5037e3d6e0 | 26 | |
hlipka | 0:ae5037e3d6e0 | 27 | #include "window.h" |
hlipka | 0:ae5037e3d6e0 | 28 | |
hlipka | 0:ae5037e3d6e0 | 29 | /** |
hlipka | 0:ae5037e3d6e0 | 30 | * A windows class which uses an internal buffer to provide automatic scrolling. |
hlipka | 0:ae5037e3d6e0 | 31 | * The buffer is initially filled with spaces. |
hlipka | 0:ae5037e3d6e0 | 32 | */ |
hlipka | 0:ae5037e3d6e0 | 33 | class Terminal: public Window |
hlipka | 0:ae5037e3d6e0 | 34 | { |
hlipka | 0:ae5037e3d6e0 | 35 | public: |
hlipka | 0:ae5037e3d6e0 | 36 | /** |
hlipka | 0:ae5037e3d6e0 | 37 | * @param window the parent window |
hlipka | 0:ae5037e3d6e0 | 38 | */ |
hlipka | 0:ae5037e3d6e0 | 39 | Terminal(Window* window); |
hlipka | 0:ae5037e3d6e0 | 40 | /** |
hlipka | 0:ae5037e3d6e0 | 41 | * works like the normal writeText method, |
hlipka | 0:ae5037e3d6e0 | 42 | * but also stores the written text into the internal buffer (which makes it subject to scrolling) |
hlipka | 0:ae5037e3d6e0 | 43 | */ |
hlipka | 2:5ac5bab7daaf | 44 | virtual void writeText(const unsigned int column, const unsigned int row, const char text[]); |
hlipka | 0:ae5037e3d6e0 | 45 | /** |
hlipka | 0:ae5037e3d6e0 | 46 | * write the given text into the last line (at the first position) |
hlipka | 0:ae5037e3d6e0 | 47 | * @param text the text to write |
hlipka | 0:ae5037e3d6e0 | 48 | */ |
hlipka | 1:65f72ed914fa | 49 | virtual void addText(const char text[]); |
hlipka | 2:5ac5bab7daaf | 50 | virtual int getColumns(){return _columns;}; |
hlipka | 2:5ac5bab7daaf | 51 | virtual int getRows(){return _rows;}; |
hlipka | 0:ae5037e3d6e0 | 52 | virtual void clear(); |
hlipka | 2:5ac5bab7daaf | 53 | virtual void character(int column, int row, int c); |
hlipka | 2:5ac5bab7daaf | 54 | |
hlipka | 0:ae5037e3d6e0 | 55 | private: |
hlipka | 0:ae5037e3d6e0 | 56 | Window* _window; |
hlipka | 2:5ac5bab7daaf | 57 | char** _lineBuffer; |
hlipka | 2:5ac5bab7daaf | 58 | unsigned int _columns; |
hlipka | 2:5ac5bab7daaf | 59 | unsigned int _rows; |
hlipka | 0:ae5037e3d6e0 | 60 | char* createLine(); |
hlipka | 0:ae5037e3d6e0 | 61 | }; |
hlipka | 0:ae5037e3d6e0 | 62 | |
hlipka | 0:ae5037e3d6e0 | 63 | #endif |