HistoryI.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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: HistoryI.h /main/5 1996/08/28 19:08:20 cde-hp $ */
  24. /*************************************<+>*************************************
  25. *****************************************************************************
  26. **
  27. ** File: HistoryI.h
  28. **
  29. ** Project: Cache Creek (Rivers) Project:
  30. **
  31. ** Description: Internal header file for HistoryI.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 _HistoryI_h
  44. #define _HistoryI_h
  45. #define DtHISTORY_LIST_MAX 999 /* ??? This should be a resource ??? */
  46. /*****************************************************************************
  47. * Function: void _DtHelpDisplayHistoryInfo(Widget nw);
  48. *
  49. *
  50. * Parameters: nw Specifies the name of the current help dialog
  51. * widget.
  52. *
  53. * Return Value:
  54. *
  55. * Purpose: Displays the pre-created history dialog.
  56. *
  57. *****************************************************************************/
  58. extern void _DtHelpDisplayHistoryInfo(
  59. Widget nw);
  60. /*****************************************************************************
  61. * Function: void _DtHelpUpdateHistoryList(char *locationId,
  62. * Widget nw);
  63. *
  64. *
  65. * Parameters: parent Specifies the ID string for the new topic we
  66. * are going to display in the HelpDialog widget.
  67. *
  68. * helpDialogWidget Specifies the current help dialog widget.
  69. *
  70. * Return Value: Void.
  71. *
  72. * Purpose: Updates the Path Display area on top of the help
  73. * dialog.
  74. *
  75. *****************************************************************************/
  76. extern void _DtHelpUpdateHistoryList(
  77. char *locationId,
  78. int topicType,
  79. Boolean vol_changed,
  80. Widget nw);
  81. #endif /* _HistoryI_h */
  82. /* Do not add anything after this endif. */