You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

73 lines
1.9 KiB

  1. /*
  2. * colors display all possible libcaca colour pairs
  3. * Copyright (c) 2003-2004 Sam Hocevar <sam@zoy.org>
  4. * All Rights Reserved
  5. *
  6. * $Id$
  7. *
  8. * This program is free software. It comes without any warranty, to
  9. * the extent permitted by applicable law. You can redistribute it
  10. * and/or modify it under the terms of the Do What The Fuck You Want
  11. * To Public License, Version 2, as published by Sam Hocevar. See
  12. * http://sam.zoy.org/wtfpl/COPYING for more details.
  13. */
  14. #include "config.h"
  15. #include "common.h"
  16. #if !defined(__KERNEL__)
  17. # include <stdio.h>
  18. #endif
  19. #include "cucul.h"
  20. #include "caca.h"
  21. int main(int argc, char **argv)
  22. {
  23. cucul_canvas_t *cv;
  24. caca_display_t *dp;
  25. int i, j;
  26. cv = cucul_create_canvas(0, 0);
  27. if(!cv)
  28. return 1;
  29. dp = caca_create_display(cv);
  30. if(!dp)
  31. return 1;
  32. cucul_set_color_ansi(cv, CUCUL_LIGHTGRAY, CUCUL_BLACK);
  33. cucul_clear_canvas(cv);
  34. for(i = 0; i < 16; i++)
  35. {
  36. cucul_set_color_ansi(cv, CUCUL_LIGHTGRAY, CUCUL_BLACK);
  37. cucul_printf(cv, 3, i + (i >= 8 ? 3 : 2), "ANSI %i", i);
  38. for(j = 0; j < 16; j++)
  39. {
  40. cucul_set_color_ansi(cv, i, j);
  41. cucul_put_str(cv, (j >= 8 ? 13 : 12) + j * 4, i + (i >= 8 ? 3 : 2),
  42. "Aaホ");
  43. }
  44. }
  45. cucul_set_color_ansi(cv, CUCUL_LIGHTGRAY, CUCUL_BLACK);
  46. cucul_put_str(cv, 3, 20, "This is bold This is blink This is italics This is underline");
  47. cucul_set_attr(cv, CUCUL_BOLD);
  48. cucul_put_str(cv, 3 + 8, 20, "bold");
  49. cucul_set_attr(cv, CUCUL_BLINK);
  50. cucul_put_str(cv, 3 + 24, 20, "blink");
  51. cucul_set_attr(cv, CUCUL_ITALICS);
  52. cucul_put_str(cv, 3 + 41, 20, "italics");
  53. cucul_set_attr(cv, CUCUL_UNDERLINE);
  54. cucul_put_str(cv, 3 + 60, 20, "underline");
  55. caca_refresh_display(dp);
  56. caca_get_event(dp, CACA_EVENT_KEY_PRESS, NULL, -1);
  57. caca_free_display(dp);
  58. cucul_free_canvas(cv);
  59. return 0;
  60. }