aboutsummaryrefslogtreecommitdiffstats
path: root/Text.c
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2003-02-17 04:27:58 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2003-02-17 04:27:58 +0000
commitd3c21f4b2cf532238596a0df7870e2c0b83811f6 (patch)
treef7b524893c6c3df10a35637006e0bd87914374a7 /Text.c
parent43f9d92865e34677b15e511b606f19a2ec725fad (diff)
downloadlcd4linux-d3c21f4b2cf532238596a0df7870e2c0b83811f6.tar.gz
[lcd4linux @ 2003-02-17 04:27:58 by reinelt]
Text (curses) driver: cosmetic changes git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@179 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'Text.c')
-rw-r--r--Text.c45
1 files changed, 32 insertions, 13 deletions
diff --git a/Text.c b/Text.c
index 3b6bb78..970af98 100644
--- a/Text.c
+++ b/Text.c
@@ -1,4 +1,4 @@
-/* $Id: Text.c,v 1.6 2002/08/30 03:54:01 reinelt Exp $
+/* $Id: Text.c,v 1.7 2003/02/17 04:27:58 reinelt Exp $
*
* pure ncurses based text driver
*
@@ -20,6 +20,9 @@
*
*
* $Log: Text.c,v $
+ * Revision 1.7 2003/02/17 04:27:58 reinelt
+ * Text (curses) driver: cosmetic changes
+ *
* Revision 1.6 2002/08/30 03:54:01 reinelt
* bug in curses driver fixed
*
@@ -57,6 +60,7 @@
#define min(x,y) (x)<(y)?x:y
+
#ifdef STANDALONE
int main(int argc, char *argv[])
@@ -86,10 +90,9 @@ int main(int argc, char *argv[])
extern int foreground;
static LCD Lcd;
-static WINDOW *w;
-WINDOW *err_win;
-#define BARS ( BAR_R | BAR_H2 | BAR_T )
-int err_rows;
+static WINDOW *w, *err_win;
+static int err_rows;
+
int Text_clear (void)
{
@@ -98,11 +101,13 @@ int Text_clear (void)
return 0;
}
+
int Text_quit(void) {
endwin();
return 0;
}
+
int Text_init (LCD *Self)
{
int cols=-1, rows=-1;
@@ -144,6 +149,7 @@ int Text_init (LCD *Self)
return w ? 0 : -1;
}
+
/* ncures scroll SIGSEGVs on my system, so this is a workaroud */
int curs_err(char *buffer)
@@ -180,17 +186,21 @@ int curs_err(char *buffer)
return 0;
}
+
int Text_put (int row, int col, char *text)
{
char *p;
- if ((p = strpbrk(text, "\r\n")) != NULL)
+ while ((p = strpbrk(text, "\r\n")) != NULL) {
*p='\0';
- if (col < Lcd.cols)
+ }
+ if (col < Lcd.cols) {
mvwprintw(w, row+1 , col+1, "%.*s", Lcd.cols-col, text);
+ }
return 0;
}
+
int Text_bar (int type, int row, int col, int max, int len1, int len2)
{
int len, i;
@@ -218,10 +228,6 @@ int Text_bar (int type, int row, int col, int max, int len1, int len2)
return 0;
}
-int Text_gpo (int num, int val)
-{
- return 0;
-}
int Text_flush (void)
{
@@ -232,8 +238,21 @@ int Text_flush (void)
LCD Text[] = {
- { "Text",4,20,1,1,BARS,0,
- Text_init,Text_clear,Text_put,Text_bar,Text_gpo,Text_flush,Text_quit },
+ { name: "Text",
+ rows: 4,
+ cols: 20,
+ xres: 1,
+ yres: 1,
+ bars: BAR_L | BAR_R | BAR_U | BAR_D | BAR_H2,
+ gpos: 0,
+ init: Text_init,
+ clear: Text_clear,
+ put: Text_put,
+ bar: Text_bar,
+ gpo: NULL,
+ flush: Text_flush,
+ quit: Text_quit
+ },
{ NULL }
};