SelectionI.h 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * CDE - Common Desktop Environment
  3. *
  4. * Copyright (c) 1993-2012, The Open Group. All rights reserved.
  5. *
  6. * These libraries and programs are free software; you can
  7. * redistribute them and/or modify them under the terms of the GNU
  8. * Lesser General Public License as published by the Free Software
  9. * Foundation; either version 2 of the License, or (at your option)
  10. * any later version.
  11. *
  12. * These libraries and programs are distributed in the hope that
  13. * they will be useful, but WITHOUT ANY WARRANTY; without even the
  14. * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  15. * PURPOSE. See the GNU Lesser General Public License for more
  16. * details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with these libraries and programs; if not, write
  20. * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
  21. * Floor, Boston, MA 02110-1301 USA
  22. */
  23. /* $XConsortium: SelectionI.h /main/9 1995/12/27 16:56:32 cde-hp $ */
  24. /*************************************<+>*************************************
  25. *****************************************************************************
  26. **
  27. ** File: SelectionI.h
  28. **
  29. ** Project:
  30. **
  31. ** Description: Private Header file for Selection.c
  32. **
  33. ** (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 Hewlett-Packard Company
  34. **
  35. ** (c) Copyright 1993, 1994 Hewlett-Packard Company
  36. ** (c) Copyright 1993, 1994 International Business Machines Corp.
  37. ** (c) Copyright 1993, 1994 Sun Microsystems, Inc.
  38. ** (c) Copyright 1993, 1994 Novell, Inc.
  39. **
  40. *******************************************************************
  41. *************************************<+>*************************************/
  42. #ifndef __DtCvSelectionI_h
  43. #define __DtCvSelectionI_h
  44. #ifdef __cplusplus
  45. extern "C" {
  46. #endif
  47. /******** Private Defines Declarations ********/
  48. /******** Private Typedef Declarations ********/
  49. /******** Private Structures Declarations ********/
  50. /******** Private Macro Declarations ********/
  51. /******** Private Function Declarations ********/
  52. extern _DtCvStatus _DtCvGetMarkSegs(
  53. _DtCanvasStruct *canvas,
  54. _DtCvPointInfo ***ret_info);
  55. extern void _DtCvDrawAreaWithFlags(
  56. _DtCanvasStruct *canvas,
  57. _DtCvSelectData start,
  58. _DtCvSelectData end,
  59. _DtCvFlags old_flag,
  60. _DtCvFlags new_flag,
  61. _DtCvElemType trav_type,
  62. _DtCvPointer trav_data);
  63. #ifdef __cplusplus
  64. } /* Close scope of 'extern "C"' declaration which encloses file. */
  65. #endif
  66. #endif /* __DtCvSelectionI_h */
  67. /* DON'T ADD ANYTHING AFTER THIS #endif */