ManPage_enums.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* ManPage_enums.h
  2. *
  3. * Copyright (C) 1996-2009,2015 Paul Boersma
  4. *
  5. * This code is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or (at
  8. * your option) any later version.
  9. *
  10. * This code is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. * See the GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this work. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. enums_begin (kManPage_type, 1)
  19. enums_add (kManPage_type, 1, INTRO, U"intro")
  20. enums_add (kManPage_type, 2, ENTRY, U"entry")
  21. enums_add (kManPage_type, 3, NORMAL, U"normal")
  22. enums_add (kManPage_type, 4, LIST_ITEM, U"list_item")
  23. enums_add (kManPage_type, 5, TAG, U"tag")
  24. enums_add (kManPage_type, 6, DEFINITION, U"definition")
  25. enums_add (kManPage_type, 7, CODE, U"code")
  26. enums_add (kManPage_type, 8, PROTOTYPE, U"prototype")
  27. enums_add (kManPage_type, 9, FORMULA, U"formula")
  28. enums_add (kManPage_type, 10, PICTURE, U"picture")
  29. enums_add (kManPage_type, 11, SCRIPT, U"script")
  30. enums_add (kManPage_type, 12, LIST_ITEM1, U"list_item1")
  31. enums_add (kManPage_type, 13, LIST_ITEM2, U"list_item2")
  32. enums_add (kManPage_type, 14, LIST_ITEM3, U"list_item3")
  33. enums_add (kManPage_type, 15, TAG1, U"tag1")
  34. enums_add (kManPage_type, 16, TAG2, U"tag2")
  35. enums_add (kManPage_type, 17, TAG3, U"tag3")
  36. enums_add (kManPage_type, 18, DEFINITION1, U"definition1")
  37. enums_add (kManPage_type, 19, DEFINITION2, U"definition2")
  38. enums_add (kManPage_type, 20, DEFINITION3, U"definition3")
  39. enums_add (kManPage_type, 21, CODE1, U"code1")
  40. enums_add (kManPage_type, 22, CODE2, U"code2")
  41. enums_add (kManPage_type, 23, CODE3, U"code3")
  42. enums_add (kManPage_type, 24, CODE4, U"code4")
  43. enums_add (kManPage_type, 25, CODE5, U"code5")
  44. enums_add (kManPage_type, 26, PAGE_TITLE, U"page_title")
  45. enums_end (kManPage_type, 26, NORMAL)
  46. /* End of file ManPage_enums.h */