home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 mARCH / PCWK3A99.iso / Linux / DDD331 / DDD-3_1_.000 / DDD-3_1_ / ddd-3.1.1 / ddd / html.m4 < prev    next >
M4 Source File  |  1998-07-06  |  5KB  |  146 lines

  1. dnl $Id: html.m4,v 1.1 1998/07/06 11:28:36 zeller Exp $
  2. dnl 
  3. dnl Copyright (C) 1997-1998 Technische Universitaet Braunschweig, Germany.
  4. dnl Written by Andreas Zeller <zeller@ips.cs.tu-bs.de>.
  5. dnl 
  6. dnl This file is part of DDD.
  7. dnl 
  8. dnl DDD is free software; you can redistribute it and/or
  9. dnl modify it under the terms of the GNU General Public
  10. dnl License as published by the Free Software Foundation; either
  11. dnl version 2 of the License, or (at your option) any later version.
  12. dnl 
  13. dnl DDD is distributed in the hope that it will be useful,
  14. dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  16. dnl See the GNU General Public License for more details.
  17. dnl 
  18. dnl You should have received a copy of the GNU General Public
  19. dnl License along with DDD -- see the file COPYING.
  20. dnl If not, write to the Free Software Foundation, Inc.,
  21. dnl 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22. dnl 
  23. dnl DDD is the data display debugger.
  24. dnl For details, see the DDD World-Wide-Web page, 
  25. dnl `http://www.cs.tu-bs.de/softech/ddd/',
  26. dnl or send a mail to the DDD developers <ddd@ips.cs.tu-bs.de>.
  27. dnl
  28. dnl M4 setup
  29. dnl --------
  30. dnl
  31. include(ifdef(`srcdir',srcdir()/colors.m4,colors.m4))dnl
  32. dnl
  33. dnl
  34. dnl Typesetting
  35. dnl -----------
  36. dnl
  37. dnl Note: all macros are recognized only with parameters; i.e.
  38. dnl if a macro F(X) is defined, F and F() expand to F.
  39. dnl
  40. dnl DASH makes a dash.
  41. define([DASH], [ - ])dnl
  42. dnl
  43. dnl SEP is the postscript arrow symbol.
  44. define([SEP], [->])dnl
  45. dnl
  46. dnl DESC(ITEM, DESC) issues `* ITEM - DESC.', with ITEM in bold.
  47. define([DESC], [ifelse([$1], , [[DESC]], [· LBL($1) DASH $2.])])dnl
  48. dnl
  49. dnl LBL(FOO) is used for describing the label titled FOO.
  50. dnl LBL(F1, F2, ..., Fn) describes the sequence F1->F2->...->Fn.
  51. dnl Not sure whether we should use @charset (the default charset used 
  52. dnl for buttons) or @bf (for emphasis) here...
  53. define([_LBL], [ifelse([$1], , [[_LBL]], [<EM>$1</EM>])dnl
  54. ifelse([$2], ,,[SEP()_LBL($2)])dnl
  55. ifelse([$3], ,,[SEP()_LBL($3)])dnl
  56. ifelse([$4], ,,[SEP()_LBL($4)])dnl
  57. ifelse([$5], ,,[SEP()_LBL($5)])dnl
  58. ifelse([$6], ,,[SEP()_LBL($6)])dnl
  59. ifelse([$7], ,,[SEP()_LBL($7)])dnl
  60. ifelse([$8], ,,[SEP()_LBL($8)])dnl
  61. ifelse([$9], ,,[SEP()_LBL($9)])dnl
  62. ])dnl
  63. define([LBL], [ifelse([$1], , [[LBL]], _LBL($1,$2,$3,$4,$5,$6,$7,$8,$9))])dnl
  64. dnl
  65. dnl WIDGET(FOO) is used for describing the item with the symbolic name FOO.
  66. define([WIDGET], [ifelse([$1], , [[WIDGET]], [<EM>$1</EM>])])dnl
  67. dnl
  68. dnl TEXT(k) is used for describing visible text
  69. define([TEXT], [ifelse([$1], , [[TEXT]], [`<TT>$1</TT>'])])dnl
  70. dnl
  71. dnl CODE(k) indicates code.
  72. define([CODE], [ifelse([$1], , [[CODE]], [<TT>$1</TT>])])dnl
  73. dnl
  74. dnl KBD(k) is used for commands at the GDB prompt
  75. define([KBD], [ifelse([$1], , [[KBD]], [`<TT>$1</TT>'])])dnl
  76. dnl
  77. dnl KEY(k) is used for keyboard keys
  78. define([KEY], [ifelse([$1], , [[KEY]], [<KBD>$1</KBD>])])dnl
  79. dnl
  80. dnl BUTTON(n) sets mouse button N.
  81. define([BUTTON], [ifelse([$1], , [[BUTTON]], [<EM>mouse button $1</EM>])])dnl
  82. dnl
  83. dnl SAMP(k) shows a literal sequence of characters.
  84. define([SAMP], [ifelse([$1], , [[SAMP]], [`<TT>$1</TT>'])])dnl
  85. dnl 
  86. dnl VAR(v) shows a metasyntactic variable.
  87. define([VAR], [ifelse([$1], , [[VAR]], [<VAR>$1</VAR>])])dnl
  88. dnl
  89. dnl FILE(f) shows the name of a file
  90. define([FILE], [ifelse([$1], , [[FILE]], [`<CODE>$1</CODE>'])])dnl
  91. dnl
  92. dnl DFN(f) gives a definition
  93. define([DFN], [ifelse([$1], , [[DFN]], [<DFN>$1</DFN>])])dnl
  94. dnl
  95. dnl CITE(c) refers to some external work
  96. define([CITE], [ifelse([$1], , [[CITE]], [<CITE>$1</CITE>])])dnl
  97. dnl
  98. dnl URL(u) refers to an URL
  99. define([URL], [ifelse([$1], , [[URL]], [<A HREF="$1">$1</A>])])dnl
  100. dnl
  101. dnl EMAIL(e) refers to an e-mail address
  102. define([EMAIL], [ifelse([$1], , [[EMAIL]], [<A HREF="mailto:$1"><$1></A>])])dnl
  103. dnl
  104. dnl EMPH(t) emphasizes text
  105. define([EMPH], [ifelse([$1], , [[EMPH]], [<EM>$1</EM>])])dnl
  106. dnl
  107. dnl STRONG(t) places strong emphasis
  108. define([STRONG], [ifelse([$1], , [[STRONG]], [<STRONG>$1</STRONG>])])dnl
  109. dnl
  110. dnl ITEM issues a simple centered dot.
  111. define([ITEM], [- ])dnl
  112. dnl
  113. dnl SUBITEM issues a dash.
  114. define([SUBITEM], DASH)dnl
  115. dnl
  116. dnl QUOTE(AUTHOR, WORK) quotes a tip
  117. define([QUOTE], [<BR> - EMPH($1)[,] $2])dnl
  118. dnl
  119. dnl BY(AUTHOR, E-MAIL) is an alternative
  120. define([BY],    [<BR> - EMPH($1) EMAIL($2)])dnl
  121. dnl
  122. dnl Constants
  123. dnl ---------
  124. dnl
  125. dnl LBL_FIND_,,, are the labels used for the Find buttons
  126. define([LBL_FIND_BACKWARD], [Find<FONT SIZE=-1><<</FONT>])dnl
  127. define([LBL_FIND_FORWARD],  [Find<FONT SIZE=-1>>></FONT>])dnl
  128. dnl
  129. dnl POSTSCRIPT includes a (TM) symbol
  130. define([POSTSCRIPT], [PostScript])dnl
  131. dnl
  132. dnl KEY_RETURN is the symbol of the return key
  133. define([KEY_RETURN], [KEY(RETURN)])dnl
  134. dnl
  135. dnl HELP_KEY is the name of the help key
  136. define([HELP_KEY], [F1])dnl
  137. dnl
  138. dnl KEY_HELP is the symbol of the help key
  139. define([KEY_HELP], [KEY(HELP_KEY)])dnl
  140. dnl
  141. dnl ONE_HALF is the 1/2 symbol.
  142. define([ONE_HALF], [½])dnl
  143. dnl
  144. dnl TIMES is the x symbol.
  145. define([TIMES], [×])dnl
  146.