/* $XConsortium: errocp.92.3.c,v 1.0 93/11/22 12:43:10 rws Exp $ */ /******************************************************************************/ /* */ /* (c) Copyright Hewlett-Packard Company, 1993, Fort Collins, Colorado */ /* */ /* All Rights Reserved */ /* */ /* Permission to use, copy, modify, and distribute this software and its */ /* documentation for any purpose and without fee is hereby granted, */ /* provided that the above copyright notices appear in all copies and that */ /* both the copyright notices and this permission notice appear in */ /* supporting documentation, and that the name of Hewlett-Packard not be */ /* used in advertising or publicity pertaining to distribution of the */ /* software without specific, written prior permission. */ /* */ /* HEWLETT-PACKARD MAKES NO WARRANTY OF ANY KIND WITH REGARD TO THIS */ /* SOFTWARE, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF */ /* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. Hewlett-Packard */ /* shall not be liable for errors contained herein or direct, indirect, */ /* special, incidental or consequential damages in connection with the */ /* furnishing, performance or use of this software. */ /* */ /******************************************************************************/ #include #include #define BogusContourHint 4 /* * draw_image prototype */ void draw_image( Display *dpy, XID rid, PEXOCRequestType req_type ); /* * TEST: PEXFillAreaSet - Test for bad Contour Hint */ void draw_image( Display *dpy, XID res_id, PEXOCRequestType req_type ) { /* * Data declarations */ int shape_hint; int ignore_edges; int contour_hint; unsigned int count; PEXListOfCoord *point_lists; /* * Test for Output Command Error for bad contour_hint * parameter. * * Current defined contour hints in the PEX header files * PEXFillAreaSet are: * * #define PEXContourDisjoint 0 * #define PEXContourNested 1 * #define PEXContourIntersecting 2 * #define PEXContourUnknown 3 * */ shape_hint = PEXShapeUnknown; ignore_edges = PEXOff; count = 0; point_lists = (PEXListOfCoord *) NULL; _hppex_stderr_print("\n==============================================\n" ); _hppex_stderr_print(" contour_hint = PEXContourDisjoint\n" ); contour_hint = PEXContourDisjoint; PEXFillAreaSet( dpy, res_id, req_type, shape_hint, ignore_edges, contour_hint, count, point_lists); _hppex_stderr_print("==============================================\n" ); _hppex_stderr_print("\n==============================================\n" ); _hppex_stderr_print(" contour_hint = PEXContourNested\n" ); contour_hint = PEXContourNested; PEXFillAreaSet( dpy, res_id, req_type, shape_hint, ignore_edges, contour_hint, count, point_lists); _hppex_stderr_print("==============================================\n" ); _hppex_stderr_print("\n==============================================\n" ); _hppex_stderr_print(" contour_hint = PEXContourIntersecting\n" ); contour_hint = PEXContourIntersecting; PEXFillAreaSet( dpy, res_id, req_type, shape_hint, ignore_edges, contour_hint, count, point_lists); _hppex_stderr_print("==============================================\n" ); _hppex_stderr_print("\n==============================================\n" ); _hppex_stderr_print(" contour_hint = PEXContourUnknown\n" ); contour_hint = PEXContourUnknown; PEXFillAreaSet( dpy, res_id, req_type, shape_hint, ignore_edges, contour_hint, count, point_lists); _hppex_stderr_print("==============================================\n" ); _hppex_stderr_print("\n==============================================\n" ); _hppex_stderr_print(" contour_hint = BogusContourHint\n" ); contour_hint = BogusContourHint; PEXFillAreaSet( dpy, res_id, req_type, shape_hint, ignore_edges, contour_hint, count, point_lists); _hppex_stderr_print("==============================================\n" ); } void inquire_test_params(char *test_name, int *num_images, int *supported_modes, char *win_title) { strcpy(test_name, "errocp.92.3"); *num_images = 1; *supported_modes = IMM_MODE | STR_MODE | WKS_MODE; strcpy(win_title, "errocp.92.3"); } void misc_setup(Display *dpy, Window window, PEXRenderer renderer, int cur_image) { if (glob_test_mode == IMM_MODE) _hppex_set_stderr("errocp.92.3.stderr_imm", "errocp.92.3"); else _hppex_set_stderr("errocp.92.3.stderr_str", "errocp.92.3"); } void execute_test(Display *dpy, XID resourceID, PEXOCRequestType req_type, int cur_image) { describe_test("\nOC Primitives Error Test (PEXFillAreaSet)\n\n"); describe_test(" Test for bad Contour Hint \n"); describe_test(" The stderr output will contain messages for all\n"); describe_test(" expected errors encountered.\n\n"); fflush(stdout); draw_image(dpy, resourceID, req_type); } void testproc(Display *dpy, Window window, int cur_image) { if (glob_test_mode == IMM_MODE) file_testproc("errocp.92.3.stderr_imm", "errocp.92.3"); else file_testproc("errocp.92.3.stderr_str", "errocp.92.3"); }