選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

60 行
2.0 KiB

  1. /* $Id$ */
  2. /** \mainpage libcaca Developer 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 cucul.h and caca.h headers.
  25. Some other topics are covered by specific sections:
  26. - \subpage tutorial
  27. - \subpage migrating
  28. There is also information specially targeted at \e libcaca developers:
  29. - \subpage style
  30. \section user User's documentation
  31. - \subpage env
  32. \section misc Misc
  33. - \subpage news
  34. - \subpage authors
  35. - \subpage thanks
  36. - \subpage todo
  37. \section license License
  38. Permission is granted to copy, distribute and/or modify this document
  39. under the terms of the Do What The Fuck You Want To Public License, version
  40. 2 as published by Sam Hocevar. For details see http://sam.zoy.org/wtfpl/ .
  41. */