aboutsummaryrefslogtreecommitdiffstats
path: root/drv_generic.h
diff options
context:
space:
mode:
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);