您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

65 行
2.0 KiB

  1. /* $Id$ */
  2. /** \mainpage libcaca Documentation
  3. \section intro Introduction
  4. \e libcaca is a graphics library that outputs text instead of pixels,
  5. so that it can work on older video cards or text terminals. It is not
  6. unlike the famous AAlib library. \e libcaca can use almost any virtual
  7. terminal to work, thus it should work on all Unix systems (including
  8. Mac OS X) using either the slang library or the ncurses library, on DOS
  9. using the conio library, and on Windows systems using either slang or
  10. ncurses (through Cygwin emulation) or conio. There is also a native X11
  11. driver, and an OpenGL driver (through freeglut) that does not require a
  12. text terminal. For machines without a screen, the raw driver can be used
  13. to send the output to another machine, using for instance cacaserver.
  14. \e libcaca is free software, released under the Do What The Fuck You
  15. Want To Public License. This ensures that no one, not even the \e libcaca
  16. developers, will ever have anything to say about what you do with the
  17. software. It used to be licensed under the GNU Lesser General Public
  18. License, but that was not free enough.
  19. \section devel Developer's documentation
  20. \e libcaca relies on a low-level, device independent library, called
  21. \e libcucul. \e libcucul can be used alone as a simple ASCII and/or
  22. Unicode compositing canvas.
  23. The complete \e libcucul and \e libcaca programming interface is
  24. available from the following headers:
  25. - cucul.h
  26. - caca.h
  27. Some other topics are covered by specific sections:
  28. - \subpage tutorial
  29. - \subpage migrating
  30. There is also information specially targeted at \e libcaca developers:
  31. - \subpage font
  32. - \subpage canvas
  33. - \subpage style
  34. \section user User's documentation
  35. - \subpage env
  36. \section misc Misc
  37. - \subpage news
  38. - \subpage authors
  39. - \subpage thanks
  40. - \subpage todo
  41. \section license License
  42. Permission is granted to copy, distribute and/or modify this document
  43. under the terms of the Do What The Fuck You Want To Public License, version
  44. 2 as published by Sam Hocevar. For details see http://sam.zoy.org/wtfpl/ .
  45. */