aboutsummaryrefslogtreecommitdiffstats
path: root/drv_generic.h
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2006-08-13 09:53:10 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2006-08-13 09:53:10 +0000
commit523bb7ba13a5d88588a270cf8ce2f0c0ac882708 (patch)
tree6490997635549846cf304b2cfc4fc256f55d6ca7 /drv_generic.h
parent517e84e9fd1b39fdef831c6fc5c6e774bf20a12a (diff)
downloadlcd4linux-523bb7ba13a5d88588a270cf8ce2f0c0ac882708.tar.gz
[lcd4linux @ 2006-08-13 09:53:10 by reinelt]
dynamic properties added (used by 'style' of text widget) git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@690 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drv_generic.h')
-rw-r--r--drv_generic.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/drv_generic.h b/drv_generic.h
index ee34452..12304d0 100644
--- a/drv_generic.h
+++ b/drv_generic.h
@@ -1,4 +1,4 @@
-/* $Id: drv_generic.h,v 1.6 2006/08/13 06:46:51 reinelt Exp $
+/* $Id: drv_generic.h,v 1.7 2006/08/13 09:53:10 reinelt Exp $
*
* generic driver helper
*
@@ -23,6 +23,9 @@
*
*
* $Log: drv_generic.h,v $
+ * Revision 1.7 2006/08/13 09:53:10 reinelt
+ * dynamic properties added (used by 'style' of text widget)
+ *
* Revision 1.6 2006/08/13 06:46:51 reinelt
* T6963 soft-timing & enhancements; indent
*
@@ -38,16 +41,12 @@
#ifndef _DRV_GENERIC_H_
#define _DRV_GENERIC_H_
-#define FONT_STYLE_BOLD 0x01
-#define FONT_STYLE_SLANT 0x02
-
/* these values are chars (text displays) or pixels (graphic displays) */
extern int LROWS, LCOLS; /* layout size */
extern int DROWS, DCOLS; /* display size */
extern int XRES, YRES; /* pixel width/height of one char */
-extern int FONT_STYLE; /* font style */
/* these function must be implemented by the generic driver */
extern void (*drv_generic_blit) (const int row, const int col, const int height, const int width);