Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

69 строки
2.2 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. There is language-specific documentation for the various bindings:
  28. - \subpage libcaca-ruby
  29. Some other topics are covered by specific sections:
  30. - \subpage libcaca-tutorial
  31. - \subpage libcaca-migrating
  32. There is also information specially targeted at \e libcaca developers:
  33. - \subpage libcaca-font
  34. - \subpage libcaca-canvas
  35. - \subpage libcaca-style
  36. \section user User's documentation
  37. - \subpage libcaca-env
  38. \section misc Misc
  39. - \subpage libcaca-news
  40. - \subpage libcaca-authors
  41. - \subpage libcaca-thanks
  42. - \subpage libcaca-todo
  43. \section license License
  44. Permission is granted to copy, distribute and/or modify this document
  45. under the terms of the Do What The Fuck You Want To Public License, version
  46. 2 as published by Sam Hocevar. For details see http://sam.zoy.org/wtfpl/ .
  47. */