home *** CD-ROM | disk | FTP | other *** search
- /**
- *
- * BWINDOW.H Header file for C TOOLS PLUS Window Functions
- *
- * Version 3.0 (C)Copyright Blaise Computing Inc. 1986
- *
- **/
-
- #ifndef DEF_BWINDOW /* Prevent redefinition. */
-
- #include <bscreen.h> /* C TOOLS PLUS Screen functions*/
-
- #define WN_EXT_ERROR 0 /* 1 if wnerror() is external, */
- /* 0 if it's a macro. */
-
- /* Definitions of data types */
-
- typedef struct /* LOC structure: */
- { /* row and column relative to a */
- int row,col; /* rectangular region. */
- } LOC;
-
- typedef struct /* REGION structure: */
- { /* rectangular region on a */
- /* screen. */
- LOC ul; /* Upper left corner */
- LOC lr; /* Lower right corner */
- } REGION;
-
- /* Height of a REGION */
- #define REGION_H(region) ((region).lr.row - (region).ul.row + 1)
-
- /* Width of a REGION */
- #define REGION_W(region) ((region).lr.col - (region).ul.col + 1)
-
- typedef struct /* CELL structure: */
- { /* character and attribute byte */
- char ch,attr; /* on a PC screen. */
- } CELL;
-
- typedef struct /* DIM structure: */
- { /* height and width of a */
- int h,w; /* rectangular region. */
- } DIM;
-
- typedef struct /* IMAGE structure: */
- { /* a copy of a rectangular */
- /* portion of a screen's data.*/
- DIM dim; /* Dimensions of the rectangle. */
- CELL *pdata; /* Pointer to array of cells */
- /* containing the data, row */
- /* by row. */
- } IMAGE;
-
- typedef struct /* WHERE structure: */
- { /* device, page, and location */
- /* where a window may be shown. */
- /* */
- int dev; /* Device where shown: COLOR, */
- /* MONO, or ABSENT if not shown.*/
- /* */
- int page; /* Video page number: 0 to 7 */
- /* */
- LOC corner; /* Upper left corner of region */
- /* where window data is shown */
- /* (does not include border). */
- } WHERE;
-
- typedef struct /* BORDER structure: */
- { /* description of a window's */
- /* border */
- /* */
- int type; /* Border type: */
- /* -1 = literal character */
- /* 0 = no border */
- /* 1 to 16 = border type as */
- /* defined by SCBOX, */
- /* increased by 1. */
- /* */
- int attr; /* Attribute (color). */
- /* */
- char ch; /* Border character if type = -1*/
- /* */
- char _dummy; /* Dummy to force size of */
- /* structure to be even in all */
- /* cases. */
- } BORDER;
-
- #define BWIN_SIGN "BCI Window 3.00" /* Signature to identify */
- /* genuine BWINDOW structure. */
-
- typedef struct /* BWINDOW structure: */
- { /* everything needed to control */
- /* an individual window. */
- /* */
- char signature[16]; /* Identifying signature. */
- /* */
- LOC cur_loc; /* Location of window's own */
- /* cursor relative to window's */
- /* data area. */
- /* */
- CUR_TYPE cur_type; /* Cursor type. */
- /* */
- IMAGE img; /* Contents of data area. */
- /* */
- WHERE where_shown; /* Where window is currently */
- /* shown. */
- /* */
- IMAGE prev; /* Previous contents of screen */
- /* (before window was shown), */
- /* including data under border. */
- /* */
- WHERE where_prev; /* Region occupied by window */
- /* (including border). */
- /* */
- struct bwin_node *pnode; /* Pointer to window node */
- /* among all windows on a video */
- /* display page. */
- /* */
- BORDER bord; /* Border description. */
- /* */
- int attr; /* Default attributes for data */
- /* area. */
-
- struct /* "options" substructure: */
- { /* items set by user request. */
- /* */
- unsigned delayed : 1; /* Output postponed until next */
- /* update. */
- /* */
- unsigned cur_off : 1; /* Cursor invisible. */
- /* */
- unsigned removable : 1; /* Removable (hence previous */
- /* contents of screen must be */
- /* preserved). */
- /* */
- unsigned hidden : 1; /* Invisible, yet attached to a */
- /* location on a display page. */
- /* */
- unsigned _dummy :12; /* Pad to word boundary */
- } options;
-
- struct /* "internals" substructure: */
- { /* not directly set by user. */
- /* */
- unsigned frozen : 1;/* Updates postponed */
- /* involuntarily. */
- /* */
- unsigned dirty : 1;/* Output request(s) are */
- /* awaiting update. */
- /* */
- unsigned any_data_covered : 1;/* Some portion of data area is */
- /* covered by another window. */
- /* */
- unsigned cur_frozen : 1;/* Not selected for visible */
- /* cursor. */
- /* */
- unsigned temp_hid : 1;/* Temporarily hidden by */
- /* internal operations. */
- /* */
- unsigned _dummy :11;/* Pad to word boundary */
- } internals;
- } BWINDOW;
-
- #define BNODE_SIGN "BCI W_Node 3.00" /* Signature to identify */
- /* genuine WIN_NODE structure. */
-
- struct bwin_node /* WIN_NODE structure: */
- { /* node in the linked lists */
- /* which govern the hierarchy */
- /* of windows on each display */
- /* page. */
- /* */
- char signature[16]; /* Identifying signature. */
- /* */
- struct bwin_node *above; /* Window above this one (or */
- /* NIL if this is top window). */
- /* */
- struct bwin_node *below; /* Window below this one (or */
- /* NIL if this is bottom window)*/
- /* */
- BWINDOW *pwin; /* BWINDOW structure belonging */
- /* to this node. */
- };
- #define WIN_NODE struct bwin_node
-
- /* Error codes */
-
- #define WN_NO_ERROR 0
- #define WN_NO_MEMORY 1
- #define WN_ILL_DIM 2
- #define WN_NULL_PTR 3
- #define WN_BAD_WIN 4
- #define WN_BAD_DEV 5
- #define WN_BAD_PAGE 6
- #define WN_BAD_NODE 7
- #define WN_ALREADY_SHOWN 8
- #define WN_NOT_SHOWN 9
- #define WN_CANT_HIDE 10
- #define WN_COVERED 11
- #define WN_BAD_OPT 12
- #define WN_HARD 13
- #define WN_ILL_VALUE 14
-
- /* Window control items & status items for WNGETOPT & WNSETOPT. */
- /* Negative item codes require the window to be currently */
- /* displayed (although it may be hidden). */
-
- #define WN_DEVICE 1 /* Where the window is */
- #define WN_PAGE (-2) /* displayed */
- #define WN_ROW_CORNER (-3) /* */
- #define WN_COL_CORNER (-4) /* */
- /* */
- #define WN_HIDDEN (-5) /* Whether it's hidden. */
- /* */
- #define WN_CUR_OFF 6 /* Cursor on/off state */
- #define WN_CUR_HIGH 7 /* Cursor scan lines */
- #define WN_CUR_LOW 8 /* */
-
- /* User-controllable options */
- #define WN_DELAYED 9 /* */
- #define WN_REMOVABLE 10 /* */
-
- #define WN_FROZEN 11 /* Internal effects of */
- #define WN_DIRTY 12 /* displaying windows */
- #define WN_ANY_DATA_COVERED 13 /* */
-
- #define WN_ROWS 14 /* Dimensions of data area */
- #define WN_COLS 15 /* */
- /* */
- #define WN_ROW_REL 16 /* Cursor location relative to */
- #define WN_COL_REL 17 /* data area */
- /* */
- #define WN_ROW_ABS (-18) /* Absolute cursor location on */
- #define WN_COL_ABS (-19) /* screen */
-
- #define WN_ROW_OVERALL (-27) /* Location of window with */
- #define WN_COL_OVERALL (-28) /* border. */
- #define WN_HT_OVERALL (-29) /* Dimensions of window with */
- #define WN_WID_OVERALL (-30) /* existing border. */
- /* */
- #define WN_ATTR 20 /* Default attributes for data */
- /* area */
- /* */
- #define WN_BOR_TYPE 22 /* Border type */
- #define WN_BOR_CHAR 23 /* Border character */
- #define WN_BOR_ATTR 24 /* Border attribute */
- /* */
- #define WN_IS_CURRENT 25 /* Whether this is the current */
- /* window */
- /* */
- #define WN_ACTIVE_CUR (-26) /* Whether this window (among */
- /* all the windows displayed on */
- /* its page) is the one whose */
- /* cursor is active. */
-
- /* Global variables */
-
- extern int b_wnerr; /* Most recent error */
- /* (WN_NO_ERROR if none). */
-
- extern BWINDOW *b_pcurwin; /* Window selected for I/O */
- /* (NIL if none). */
-
- /* Global variables for internal use only */
-
- /* List of windows displayed on */
- /* each page (NIL if none). */
- extern WIN_NODE *(b_wnlist[MAX_DEVICES][MAX_PAGES]);
-
- /* The window (on each page) */
- /* selected to have a visible */
- /* cursor (NIL if none). */
- extern WIN_NODE *(b_pactnode[MAX_DEVICES][MAX_PAGES]);
-
-
- /* Function declarations by category */
-
- /* Window creation and destruction */
-
- BWINDOW *wncreate(int,int,int); /* Allocate & create BWINDOW */
- /* structure. */
- /* */
- int wndstroy(BWINDOW *); /* Detach from screen & discard */
- /* memory structures (don't */
- /* alter screen). */
-
- /* Controlling/retrieving window options & status */
-
- BWINDOW *wnsetopt(BWINDOW *,int, /* Set option. */
- int);
- BWINDOW *wngetopt(BWINDOW *,int, /* Retrieve option or status. */
- int *);
-
- /* Error reporting */
-
- #if WN_EXT_ERROR
- /* External version: */
- int wnerror(int); /* Set or clear error code and */
- /* return it. */
- #else
- /* Macro version: */
- #define wnerror(ercode) (b_wnerr = (ercode))
-
- #endif
-
- /* Displaying/removing windows */
-
- /* Display window with border. */
- BWINDOW *wndsplay(BWINDOW *,WHERE *,BORDER *);
- /* */
- BWINDOW *wnremove(BWINDOW *); /* Remove window from display */
- /* page. */
- /* */
- BWINDOW *wnforget(BWINDOW *); /* Detach window from display */
- /* page without altering screen.*/
- /* */
- BWINDOW *wnhide(BWINDOW *); /* Conceal window but leave */
- /* attached to location on */
- /* display page. */
- /* */
- BWINDOW *wnunhide(BWINDOW *); /* Redisplay hidden window. */
- /* */
- BWINDOW *wnupdate(BWINDOW *); /* Satisfy pending output */
- /* requests. */
- /* */
- int wnredraw(int,int); /* Redisplay all windows on */
- /* a display page and restore */
- /* cursor. */
-
- /* Window I/O */
-
- BWINDOW *wnselect(BWINDOW *); /* Select window for I/O */
- /* (deselect all other windows) */
- /* making this the "current" */
- /* window. */
- /* */
- BWINDOW *wncursor(BWINDOW *); /* Select for visible cursor */
- /* (deselect other windows */
- /* shown on this display page.) */
- /* */
- BWINDOW *wncurmov(int,int); /* Move current window's cursor */
- /* relative to the window's */
- /* data area. */
- /* */
- BWINDOW *wncurpos(int *,int *); /* Return current window's */
- /* cursor position relative to */
- /* the window's data area. */
- /* */
- void wnwrtty(char,int,int); /* Write a character to current */
- /* window TTY-style. */
- /* */
- void wnwrap(int,char *, /* Write a string TTY-style */
- int,int,int); /* with word wrap. */
- /* */
- int wnrdbuf(int,int,int, /* Read a buffer. */
- char *,int); /* */
- /* */
- int wnwrbuf(int,int,int,char *, /* Write a buffer. */
- int,int,int); /* */
- /* */
- char wnquery(char *,int,int *); /* Return input from operator. */
- /* */
- BWINDOW *wnscroll(int,int,int,int); /* Vertically scroll window. */
- /* */
- BWINDOW *wnhoriz(int,int,int,int); /* Horizontally scroll window. */
- /* */
- BWINDOW *wnattr(int,int); /* Change attributes on window */
- /* (but don't change default). */
-
- /* Internal functions by category */
-
- /* Device & page switching */
-
- int wnseldev(WHERE *,DIM *,int *);
-
- /* Error detection */
-
- BWINDOW *wnvalwin(BWINDOW *);
- WIN_NODE *wnvalnod(WIN_NODE *);
-
- /* Handling IMAGE structures */
-
- IMAGE *wnmkimg(IMAGE *);
- IMAGE *wnputimg(IMAGE *,WHERE *);
- IMAGE *wngetimg(IMAGE *,WHERE *);
-
- /* Manipulating chains of WIN_NODEs */
-
- WIN_NODE *wnpgadd(BWINDOW *,int,int);
- BWINDOW *wnpgrem(BWINDOW *);
-
- /* Building borders */
-
- int wnputbor(DIM *,BORDER *,WHERE *);
-
- /* Handling inter-window effects: displaying, overlapping, */
- /* removing */
-
- WIN_NODE *wncover(WIN_NODE *,LOC *,DIM *);
- int wnovrlap(LOC *,DIM *,LOC *,DIM *);
-
-
- #define DEF_BWINDOW 1 /* Prevent second reading of */
- /* these definitions. */
-
- #endif /* Ends "#ifndef DEF_BWINDOW" */