drawable.c 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
  2. #include "config.h"
  3. #include "drawable.h"
  4. G_DEFINE_ABSTRACT_TYPE (RegressTestInheritDrawable, regress_test_inherit_drawable, G_TYPE_OBJECT);
  5. static void
  6. regress_test_inherit_drawable_class_init (RegressTestInheritDrawableClass *klass)
  7. {
  8. }
  9. static void
  10. regress_test_inherit_drawable_init (RegressTestInheritDrawable *drawable)
  11. {
  12. }
  13. void
  14. regress_test_inherit_drawable_do_foo (RegressTestInheritDrawable *drawable, int x)
  15. {
  16. }
  17. /**
  18. * regress_test_inherit_drawable_get_origin:
  19. * @drawable:
  20. * @x: (out):
  21. * @y: (out):
  22. */
  23. void
  24. regress_test_inherit_drawable_get_origin (RegressTestInheritDrawable *drawable, int *x, int *y)
  25. {
  26. *x = 0;
  27. *y = 0;
  28. }
  29. /**
  30. * regress_test_inherit_drawable_get_size:
  31. * @drawable:
  32. * @width: (out):
  33. * @height: (out):
  34. */
  35. void
  36. regress_test_inherit_drawable_get_size (RegressTestInheritDrawable *drawable, guint *width, guint *height)
  37. {
  38. *width = 42;
  39. *height = 42;
  40. }
  41. void
  42. regress_test_inherit_drawable_do_foo_maybe_throw (RegressTestInheritDrawable *drawable, int x, GError **error)
  43. {
  44. if (x != 42)
  45. g_set_error(error, 0, 12, "The answer should be 42!");
  46. }