/* Copyright (C) 1998, 1999 artofcode LLC. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA, 02111-1307. */ /*$Id: gxclip.h,v 1.2.6.1.2.1 2003/01/17 00:49:03 giles Exp $ */ /* Internal definitions for clipping */ #ifndef gxclip_INCLUDED # define gxclip_INCLUDED /* * Both rectangle list and mask clipping use callback procedures to process * each rectangle selected by the clipping region. They share both the * callback procedures themselves and the structure that provides closure * data for these procedures. We define a single closure structure, rather * than one per client/callback, just to reduce source code clutter. The * comments below show which clients use each member. */ typedef struct clip_callback_data_s { /* * The original driver procedure stores the following of its arguments * that the callback procedure or the clipping algorithm needs. */ gx_device *tdev; /* target device (always set) */ int x, y, w, h; /* (always set) */ gx_color_index color[2]; /* (all but copy_color) */ const byte *data; /* copy_*, fill_mask */ int sourcex; /* ibid. */ uint raster; /* ibid. */ int depth; /* copy_alpha, fill_mask */ const gx_drawing_color *pdcolor; /* fill_mask */ gs_logical_operation_t lop; /* fill_mask, strip_copy_rop */ const gx_clip_path *pcpath; /* fill_mask */ const gx_strip_bitmap *tiles; /* strip_tile_rectangle */ gs_int_point phase; /* strip_* */ const gx_color_index *scolors; /* strip_copy_rop */ const gx_strip_bitmap *textures; /* ibid. */ const gx_color_index *tcolors; /* ibid. */ } clip_callback_data_t; /* Declare the callback procedures. */ int clip_call_fill_rectangle(P5(clip_callback_data_t * pccd, int xc, int yc, int xec, int yec)), clip_call_copy_mono(P5(clip_callback_data_t * pccd, int xc, int yc, int xec, int yec)), clip_call_copy_color(P5(clip_callback_data_t * pccd, int xc, int yc, int xec, int yec)), clip_call_copy_alpha(P5(clip_callback_data_t * pccd, int xc, int yc, int xec, int yec)), clip_call_fill_mask(P5(clip_callback_data_t * pccd, int xc, int yc, int xec, int yec)), clip_call_strip_tile_rectangle(P5(clip_callback_data_t * pccd, int xc, int yc, int xec, int yec)), clip_call_strip_copy_rop(P5(clip_callback_data_t * pccd, int xc, int yc, int xec, int yec)); #endif /* gxclip_INCLUDED */