utility.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. #ifndef __UTILITY_H__
  2. #define __UTILITY_H__
  3. #include <glib-object.h>
  4. #include "gitestmacros.h"
  5. #define UTILITY_TYPE_OBJECT (utility_object_get_type ())
  6. #define UTILITY_OBJECT(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), UTILITY_TYPE_OBJECT, UtilityObject))
  7. #define UTILITY_IS_OBJECT(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), UTILITY_TYPE_OBJECT))
  8. typedef struct _UtilityObject UtilityObject;
  9. typedef struct _UtilityObjectClass UtilityObjectClass;
  10. struct _UtilityObject
  11. {
  12. GObject parent_instance;
  13. };
  14. struct _UtilityObjectClass
  15. {
  16. GObjectClass parent_class;
  17. };
  18. /* This one is similar to Pango.Glyph */
  19. typedef guint32 UtilityGlyph;
  20. typedef struct
  21. {
  22. int tag;
  23. union
  24. {
  25. gpointer v_pointer;
  26. double v_real;
  27. long v_integer;
  28. } value;
  29. } UtilityTaggedValue;
  30. typedef union
  31. {
  32. guint8 value;
  33. struct
  34. {
  35. guint8 first_nibble : 4;
  36. guint8 second_nibble : 4;
  37. } parts;
  38. } UtilityByte;
  39. /* This one is similiar to Soup.Buffer */
  40. typedef struct
  41. {
  42. const char *data;
  43. gsize length;
  44. } UtilityBuffer;
  45. typedef void (*UtilityFileFunc)(const char *path, gpointer user_data);
  46. _GI_TEST_EXTERN
  47. GType utility_object_get_type (void) G_GNUC_CONST;
  48. _GI_TEST_EXTERN
  49. void utility_object_watch_dir (UtilityObject *object,
  50. const char *path,
  51. UtilityFileFunc func,
  52. gpointer user_data,
  53. GDestroyNotify destroy);
  54. typedef enum
  55. {
  56. UTILITY_ENUM_A,
  57. UTILITY_ENUM_B,
  58. UTILITY_ENUM_C
  59. } UtilityEnumType;
  60. /* The shift operators here should imply bitfield */
  61. typedef enum
  62. {
  63. UTILITY_FLAG_A = 1 << 0,
  64. UTILITY_FLAG_B = 1 << 1,
  65. UTILITY_FLAG_C = 1 << 2
  66. } UtilityFlagType;
  67. typedef struct
  68. {
  69. int field;
  70. guint bitfield1 : 3;
  71. guint bitfield2 : 2;
  72. guint8 data[16];
  73. } UtilityStruct;
  74. typedef union
  75. {
  76. char *pointer;
  77. glong integer;
  78. double real;
  79. } UtilityUnion;
  80. _GI_TEST_EXTERN
  81. void utility_dir_foreach (const char *path, UtilityFileFunc func, gpointer user_data);
  82. #endif /* __UTILITY_H__ */