PathAreaI.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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 librararies 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: PathAreaI.h /main/4 1995/10/26 12:30:48 rswiston $ */
  24. /*************************************<+>*************************************
  25. *****************************************************************************
  26. **
  27. ** File: PathAreaI.h
  28. **
  29. ** Project: Cache Creek (Rivers) Project:
  30. **
  31. ** Description: Internal header file for PathArea.c
  32. ** -----------
  33. **
  34. ** (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 Hewlett-Packard Company
  35. **
  36. ** (c) Copyright 1993, 1994 Hewlett-Packard Company
  37. ** (c) Copyright 1993, 1994 International Business Machines Corp.
  38. ** (c) Copyright 1993, 1994 Sun Microsystems, Inc.
  39. ** (c) Copyright 1993, 1994 Novell, Inc.
  40. **
  41. *******************************************************************
  42. *************************************<+>*************************************/
  43. #ifndef _PathAreaI_h
  44. #define _PathAreaI_h
  45. #define DtPATH_LIST_MAX 99
  46. /*****************************************************************************
  47. * Function: void _DtHelpUpdatePathArea(char *locationId,
  48. * DtHelpDialogWidget nw);
  49. *
  50. *
  51. * Parameters: locationId Specifies the ID string for the new topic we
  52. * are going to display in the HelpDialog widget.
  53. *
  54. * helpDialogWidget Specifies the current help dialog widget.
  55. *
  56. * Return Value: Void.
  57. *
  58. * Purpose: Updates the Path Display area on top of the help
  59. * dialog based on the new locationId we are about to display.
  60. *
  61. *****************************************************************************/
  62. void _DtHelpUpdatePathArea(
  63. char *locationId,
  64. DtHelpDialogWidget nw);
  65. /*****************************************************************************
  66. * Function: void _DtHelpBuildPathArea(Widget parent,
  67. * DtHelpDialogWidget nw);
  68. *
  69. *
  70. * Parameters: parent Specifies the widget ID of the help dialog you
  71. * want to set the topic in.
  72. * nw Specifies the current help dialog widget.
  73. *
  74. * Return Value: Void.
  75. *
  76. * Purpose: Creates/updates the Path Display area on top of the help
  77. * dialog.
  78. *
  79. *****************************************************************************/
  80. extern void _DtHelpBuildPathArea(
  81. Widget parent,
  82. DtHelpDialogWidget nw);
  83. #endif /* _PathAreaI_h */
  84. /* Do not add anything after this endif. */