⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 srgppublic.h

📁 BlackFin DSP(ADSP) LCD 文字overlay 显示源码
💻 H
字号:
#include <stdio.h>
#ifdef X11
#include <X11/Xlib.h>
#endif


#ifdef SRGP_BOSS
#define DECLARE
#else
#define DECLARE extern
#endif

#define SRGPWHITE			0
#define SRGPBLACK			1


/** the special screen canvas ID**/
#define SCREEN_CANVAS		0


/** WRITE MODE **/
typedef enum {WRITE_REPLACE=0, WRITE_XOR, WRITE_OR, WRITE_AND} writeMode;


/** FILL STYLE or PEN STYLE  **/
/* These *must* match the following X11 identifiers */
typedef enum {
   SOLID=0, 				/*FillSolid*/
   PIXMAP_PATTERN,			/*FillTiled*/
   BITMAP_PATTERN_TRANSPARENT,		/*FillStippled*/
   BITMAP_PATTERN_OPAQUE		/*FillOpaqueStippled*/
 } drawStyle;


/** SPECIAL DATA TYPES **/
#ifdef THINK_C
typedef int 	      	(*funcptr)(...);
#else
typedef int 	      	(*funcptr)();
#endif
typedef int		canvasID;

/** GEOMETRIC DATA TYPES **/
#ifndef SPHIGS_USING_SRGP
typedef struct {int x, y;} 				point;
#else
typedef struct {int x, y;} 				srgp__point;
#define point     srgp__point
#endif
typedef struct {point bottomLeft, topRight;}	        rectangle;

/** Backwards compatibility **/
#define bottom_left	bottomLeft
#define top_right	topRight

/** ATTRIBUTE GROUP (application should never use internals) **/
typedef struct {
   int write_mode;
   rectangle clip_rectangle;
   int font;
   lineStyle line_style;
   int line_width;
   int marker_size;
   markerStyle marker_style;
   int color, background_color;
   int plane_mask;
   drawStyle fill_style;
   int fill_pixmap_pattern_id;
   int fill_bitmap_pattern_id;
   drawStyle pen_style;
   int pen_pixmap_pattern_id;
   int pen_bitmap_pattern_id;
} attributeGroup;


/** THE TIMESTAMP FOR INPUT DEVICE MEASURES **/
typedef struct {
   int seconds;
   int ticks;
} srgp_timestamp;



/** LOCATOR MEASURE
It is of utmost importance that the order of the fields not be changed!
The "vanilla" and deluxe versions must "start off" identically.
**/

/* buttonStatus is defined in srgp_sphigs.h as enum {UP=0, DOWN} */

#ifndef SPHIGS_USING_SRGP
typedef struct {
   point position;
   buttonStatus buttonChord[MAX_BUTTON_COUNT];
   int buttonOfMostRecentTransition;
} locatorMeasure;
#else
typedef struct {
   point position;
   buttonStatus buttonChord[MAX_BUTTON_COUNT];
   int buttonOfMostRecentTransition;
} srgp__locator_measure;
#define locatorMeasure srgp__locator_measure
#endif

typedef struct {
   point position;
   buttonStatus buttonChord[MAX_BUTTON_COUNT];
   int buttonOfMostRecentTransition; 
   buttonStatus modifierChord[MAX_BUTTON_COUNT];
   srgp_timestamp timestamp;
} deluxeLocatorMeasure;

/** Backwards compatibility **/
#define button_of_last_transition	buttonOfMostRecentTransition
#define button_chord			buttonChord
#define modifier_chord			modifierChord

/** KEYBOARD MEASURE **/

typedef char *srgp__keyboard_measure;

typedef struct {
   char *buffer;
   int buffer_length;
   buttonStatus modifier_chord[3];
   point position;
   srgp_timestamp timestamp;
} deluxeKeyboardMeasure;
/** Backwards compatibility **/
#ifdef SPHIGS_USING_SRGP
#define srgp__deluxe_keyboard_measure deluxeKeyboardMeasure 
#endif

/** "CONSTANTS" GOVERNING THE SIZES OF INTERNAL TABLES
Since the tables are malloc'd at runtime, these are not really constants.
They are given default values, but these values may be changed by
function calls IF these function calls are made before the application
calls SRGP_begin().
**/

DECLARE short MAX_PATTERN_INDEX
#ifdef SRGP_BOSS
                      = DEFAULT_MAX_PATTERN_INDEX
#endif
      ;
DECLARE short MAX_CURSOR_INDEX
#ifdef SRGP_BOSS
                      = DEFAULT_MAX_CURSOR_INDEX
#endif
      ;
DECLARE short MAX_FONT_INDEX
#ifdef SRGP_BOSS
                      = DEFAULT_MAX_FONT_INDEX
#endif
      ;
DECLARE short MAX_CANVAS_INDEX
#ifdef SRGP_BOSS
                      = DEFAULT_MAX_CANVAS_INDEX
#endif
      ;
DECLARE short MAX_STRING_SIZE
#ifdef SRGP_BOSS
                      = DEFAULT_MAX_STRING_SIZE
#endif
      ;
DECLARE short MAX_POINTLIST_SIZE
#ifdef SRGP_BOSS
                      = DEFAULT_MAX_POINTLIST_SIZE
#endif
      ;


void SRGP_setMaxCanvasIndex (int i);
void SRGP_setMaxPatternIndex (int i);
void SRGP_setMaxCursorIndex (int i);
void SRGP_setMaxFontIndex (int i);
void SRGP_setMaxPointlistSize (int i);
void SRGP_setMaxStringSize (int i);





DECLARE int		SRGP_BLACK, SRGP_WHITE;
#define COLOR_BLACK SRGP_BLACK
#define COLOR_WHITE SRGP_WHITE

DECLARE FILE 		*SRGP_logStream;

#undef DECLARE


/* DEFINED ONLY IN THIS FILE SO I CAN 
   MAKE EACH PROTOTYPE FIT ON ONE LINE. */
#define ush          unsigned short

/** ERROR HANDLING MODE **/
typedef enum {FATAL_ERRORS, NON_FATAL_ERRORS} 
   errorHandlingMode;
   
extern int SRGP_errorOccurred;


/** PROTOTYPES FOR ALL PUBLIC SRGP ROUTINES **/

/******************** attribute.c */
void 	    SRGP_setAttributes (attributeGroup* group);
void	    SRGP_setBackgroundColor (int colorIndex);
void	    SRGP_setClipRectangle (rectangle clipRect);
void 	    SRGP_setColor (int colorIndex);
void 	    SRGP_setFillBitmapPattern (int patternIndex);
void 	    SRGP_setFillPixmapPattern (int patternIndex);
void	    SRGP_setFillStyle (drawStyle);
void	    SRGP_setFont (int value);
void	    SRGP_setLineStyle (lineStyle);
void	    SRGP_setLineWidth (int width);
void	    SRGP_setMarkerStyle (markerStyle);
void	    SRGP_setMarkerSize (int markerSize);
void	    SRGP_setPenBitmapPattern (int patternIndex);
void	    SRGP_setPenPixmapPattern (int patternIndex);
void 	    SRGP_setPenStyle (drawStyle);
void 	    SRGP_setPlaneMask (int value);
void 	    SRGP_setWriteMode (writeMode);

/******************** canvas.c */
canvasID    SRGP_createCanvas (int width, int height);
void	    SRGP_useCanvas (canvasID id);
void	    SRGP_deleteCanvas (canvasID id);

/******************** color.c */
void   	    SRGP_loadCommonColor (int entry, char *name);
void        SRGP_loadColorTable (int start, int cnt, ush *r, ush *g, ush *b);
void        SRGP_loadSingleColor (int start, ush r, ush g, ush b);

/******************** cursor.c, font.c, pattern.c */
void	    SRGP_loadCursor (int index, int CURSOR_SHAPE);
void	    SRGP_loadFont (int font_index, char* filename);
#ifdef BLACKFIN
void	    SRGP_ADI_loadFont (int font_index, void* font);
#endif
void	    SRGP_inquireTextExtent (char *text, int *width, int *height, int *descent);
int	    SRGP_loadBitmapPatternsFromFile (FILE*);
int         SRGP_loadPixmapPatternsFromFile (FILE*);
void	    SRGP_loadBitmapPattern (int index, char *data);
void        SRGP_loadPixmapPattern (int index, int *data);

/******************** input.c */
void	    SRGP_setInputMode (inputDevice, inputMode);
inputDevice SRGP_waitEvent (int maxWaitTime);
void	    SRGP_getLocator (locatorMeasure* measure);
void	    SRGP_getKeyboard (char *measure, int measureSize);
void	    SRGP_getDeluxeLocator (deluxeLocatorMeasure*);
void	    SRGP_getDeluxeKeyboard (deluxeKeyboardMeasure*);
void	    SRGP_sampleLocator (locatorMeasure*);
void	    SRGP_sampleKeyboard (char *measure, int bufsize);
void	    SRGP_sampleDeluxeLocator (deluxeLocatorMeasure*);
void	    SRGP_sampleDeluxeKeyboard (deluxeKeyboardMeasure*);
void	    SRGP_setLocatorMeasure (point position);
void	    SRGP_setKeyboardMeasure (char*);
void	    SRGP_setLocatorEchoType (echoType);
void 	    SRGP_setLocatorEchoCursorShape (int id);
void	    SRGP_setLocatorEchoRubberAnchor (point position);
void	    SRGP_setLocatorButtonMask (int activeButtons);
void	    SRGP_setKeyboardProcessingMode (keyboardMode);
void	    SRGP_setKeyboardEchoColor (int value);
void	    SRGP_setKeyboardEchoOrigin (point origin);
void	    SRGP_setKeyboardEchoFont (int fontindex);

/******************** inquire.c */
void	    SRGP_inquireAttributes (attributeGroup *group);
rectangle   SRGP_inquireClipRectangle (void);
canvasID    SRGP_inquireActiveCanvas (void);
rectangle   SRGP_inquireCanvasExtent (canvasID id);
void	    SRGP_inquireCanvasSize (canvasID, int *w, int *h);
int	    	SRGP_inquireCanvasDepth (void);
lineStyle   SRGP_inquireLineStyle (void);
void	    SRGP_inquireColorTable (int start, int cnt, ush *r, ush *g, ush *b);
#ifdef X11
Drawable    SRGP_inquireXDrawable (canvasID);
#endif

/******************** output.c */
point	    SRGP_defPoint (int x, int y);
rectangle   SRGP_defRectangle (int leftX, int bottomY, int rightX, int topY);
void	    SRGP_beep (void);
void	    SRGP_pointCoord (int x, int y);
void	    SRGP_point (point);
void	    SRGP_polyPoint (int vertexCount, point *vertices);
void	    SRGP_polyPointCoord (int vertexCount, int *xArray, int *yArray);
void	    SRGP_markerCoord (int x, int y);
void	    SRGP_marker (point pt);
void	    SRGP_polyMarker (int vertexCount, point *vertices);
void	    SRGP_polyMarkerCoord (int vertexCount, int *xArray, int *yArray);
void	    SRGP_lineCoord (int x1, int y1, int x2, int y2);
void	    SRGP_line (point pt1, point pt2);
void 	    SRGP_rectangleCoord (int leftX, int bottomY, int rightX, int topY);
void	    SRGP_rectanglePt (point bottomLeft, point topRight);
void	    SRGP_rectangle (rectangle rect);
void	    SRGP_polyLine (int vertexCount, point *vertices);
void	    SRGP_polyLineCoord (int vertexCount, int *xArray, int *yArray);
void	    SRGP_polygon (int vertexCount, point *vertices);
void	    SRGP_polygonCoord (int vertexCount, int *xArray, int *yArray);
void 	    SRGP_fillRectangleCoord (int leftX, int bottomY, int rightX, int topY);
void	    SRGP_fillRectanglePt (point bottomLeft, point topRight);
void	    SRGP_fillRectangle (rectangle);
void	    SRGP_fillPolygon (int vertexCount, point *vertices);
void	    SRGP_fillPolygonCoord (int vertexCount, int *xArray, int *yArray);
void	    SRGP_ellipse (rectangle);
void	    SRGP_ellipseArc (rectangle extentRect, double startAngle, double endAngle);
void        SRGP_fillEllipse (rectangle);
void        SRGP_fillEllipseArc (rectangle, double a1, double a2);
void	    SRGP_text (point origin, char *text);
void        SRGP_refresh (void);

/******************** raster.c */
void	    SRGP_copyPixel (canvasID sourceCanvas, rectangle sourceRect, point destCorner);

/******************** state.c */
void	    SRGP_begin (char *name, int w, int h, int planes, boolean trace);
void	    SRGP_beginWithDebug 
                (char *name, int w, int h, int planes, boolean trace);
void	    SRGP_disableDebugAids (void);
void	    SRGP_enableBlockedWait (void);
void	    SRGP_setErrorHandlingMode (errorHandlingMode);
void	    SRGP_enableSynchronous (void);
void	    SRGP_tracing (boolean);
void	    SRGP_allowResize (boolean);
void 	    SRGP_registerResizeCallback (funcptr);
void 	    SRGP_changeScreenCanvasSize (int newwidth, int newheight);
void	    SRGP_end (void);


#undef ush

#ifdef SPHIGS_USING_SRGP
#undef point
#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -