home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (c) 1988 by Oracle Corporation */
-
- /* NAME
- iapuxw - User eXit Windows
-
- FUNCTION
- Externalization of user exit pop-up routines.
-
- Because this is an external routine, we use generic C data types
- instead of Oracle data types. That makes this module an OSD
- modules, so Porters take note.
-
- RETURN
- These routines return an error code if there is any problem
- manipulating the windows. These are defined below.
-
- NOTES
-
- MODIFIED
- Vijayar 04/04/89 - Lint
- Vijayar 03/31/89 - Lint
- Blinn 03/20/89 - Wrong area
- Blinn 03/01/89 - Creation
- Blinn 02/24/89 - Creation
- Blinn 02/23/89 - Created.
- */
-
- #ifndef IAPUXW
- #define IAPUXW
-
- /*****************************************************************/
- /* Return codes for the various functions */
-
- #define UXW_SUCCESS 0
- #define UXW_WIN_EXISTS 1
- #define UXW_WIN_NONEXISTENT 2
-
- /****************************************************************/
- /* Window data type is a uxwind. It is the clients */
- /* responsibility to maintain his window pointers. */
- typedef char * uxwind;
-
- /****************************************************************/
- /* Prototypes for the various windowing functions */
-
- /*
- ** UXWADD -- User WIndowing ADD a window
- ** Creates a window. The window is
- ** located at x,y on the screen and has size h,v. The window will have
- ** a border if border is non-0 (TRUE). Damage is a callback function
- ** supplied by the user which will be called whenever damage
- ** occurs within a window. It is the clients responsibility to provide
- ** this function and repair the window whenever necessary. This
- ** function will be given a pointer to the user-window, the x,y,h,v
- ** defining the damaged region, and a client supplied parameter.
- */
- extern uxwind uxwadd( /*_ int, int, int, int, bool,
- void (*)(char *, int, int, int, int, char *), char * _*/ );
-
-
- /*
- ** UXWREM -- User eXit Windowing REMOVE
- ** Deletes a window if it exists. Returns the appropriate error
- ** code. This will also hide and dispose of the window.
- */
- extern int uxwrem( /*_ uxwind _*/ );
-
-
- /*
- ** UXWSHO -- User eXit Windowing SHOw a window
- ** Shows a window, Simply a
- ** mapping function. Note that this will cause the damage function to
- ** be called.
- */
- extern int uxwsho( /*_ uxwind _*/ );
-
- /*
- ** UXWHID -- User eXit Windowing HIDe
- ** Hides a window (unmaps). Note that this will cause the damage functions
- ** to be called on any previously occluded windows.
- */
- extern int uxwhid( /*_ uxwind _*/ );
-
-
- /*
- ** UXWPOP -- User eXit Windowing POP to the top
- ** Raises the window to the top of all windows on the screen.
- ** Note that this may cause the damage function to be called.
- */
- extern int uxwpop( /*_ uxwind _*/ );
-
- /*
- ** UXWGXY -- User eXit Window Goto XY
- ** Sends the internal cursor of the window to X,Y. If the window is
- ** activated, the cursor for that window will be displayed at that
- ** location of the window (if not occluded....otherwise will display
- ** the cursor at the bottom right hand corner of the screen). Note this
- ** only applies to character mode, as other devices have no cursor.
- */
- extern int uxwgxy( /*_ uxwind, int, int _*/ );
-
-
- /*
- ** UXWPUS -- User eXit Window PUt String
- ** Puts a string of characters at the given location in the window.
- ** The string need not be NULL terminated, but the length must be
- ** specified.
- */
- extern int uxwpus( /*_ uxwind, char *, int, int, int _*/ );
-
- /*
- ** UXWPUC -- User eXit Window PUt Character
- ** Puts a character in a window at the specified x,y location.
- */
- extern int uxwpuc( /*_ uxwind, char, int, int _*/ );
-
- /*
- ** UXWMOV -- User eXit Window MOVe
- ** Moves the specified window to the location x,y on the screen.
- ** Note that this may cause the damage function to be called.
- */
- extern int uxwmov( /*_ uxwind, int, int, _*/ );
-
- /*
- ** UXWACT -- User eXit Windowing ACTivate
- ** Causes the cursor to be displayed in that window. The cursor will
- ** be sent back to the active IAP window when the user-exit is finished.
- */
- extern int uxwact( /*_ uxwind _*/ );
-
- #endif
-
-
-