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

47 строки
747 B

  1. #ifndef _CACA_PP_H
  2. #define _CACA_PP_H
  3. #include "cucul.h"
  4. #include "caca.h"
  5. #include "cucul++.h"
  6. class Caca {
  7. public:
  8. Caca();
  9. Caca(Cucul *qq);
  10. ~Caca();
  11. class Event {
  12. friend class Caca;
  13. protected:
  14. caca_event *e;
  15. };
  16. void attach (Cucul *qq);
  17. void detach ();
  18. void set_delay (unsigned int);
  19. void display ();
  20. unsigned int get_rendertime ();
  21. unsigned int get_window_width ();
  22. unsigned int get_window_height ();
  23. int set_window_title (char const *);
  24. int get_event (unsigned int, Caca::Event*, int);
  25. unsigned int get_mouse_x ();
  26. unsigned int get_mouse_y ();
  27. void set_mouse (int);
  28. private:
  29. caca_t *kk;
  30. };
  31. #endif /* _CACA_PP_H */