summaryrefslogtreecommitdiff
path: root/endless/eosattribution-private.h
diff options
context:
space:
mode:
Diffstat (limited to 'endless/eosattribution-private.h')
-rw-r--r--endless/eosattribution-private.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/endless/eosattribution-private.h b/endless/eosattribution-private.h
new file mode 100644
index 0000000..b468a71
--- /dev/null
+++ b/endless/eosattribution-private.h
@@ -0,0 +1,57 @@
+/* Copyright 2015 Endless Mobile, Inc. */
+
+#ifndef EOS_ATTRIBUTION_H
+#define EOS_ATTRIBUTION_H
+
+#include "eostypes.h"
+
+#include <gtk/gtk.h>
+
+G_BEGIN_DECLS
+
+#define EOS_TYPE_ATTRIBUTION eos_attribution_get_type()
+
+#define EOS_ATTRIBUTION(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
+ EOS_TYPE_ATTRIBUTION, EosAttribution))
+
+#define EOS_ATTRIBUTION_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST ((klass), \
+ EOS_TYPE_ATTRIBUTION, EosAttributionClass))
+
+#define EOS_IS_ATTRIBUTION(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
+ EOS_TYPE_ATTRIBUTION))
+
+#define EOS_IS_ATTRIBUTION_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE ((klass), \
+ EOS_TYPE_ATTRIBUTION))
+
+#define EOS_ATTRIBUTION_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS ((obj), \
+ EOS_TYPE_ATTRIBUTION, EosAttributionClass))
+
+typedef struct _EosAttribution EosAttribution;
+typedef struct _EosAttributionClass EosAttributionClass;
+
+struct _EosAttribution
+{
+ GtkScrolledWindow parent;
+};
+
+struct _EosAttributionClass
+{
+ GtkScrolledWindowClass parent_class;
+};
+
+GType eos_attribution_get_type (void) G_GNUC_CONST;
+
+GtkWidget *eos_attribution_new (void);
+
+gboolean eos_attribution_populate_from_json_file (EosAttribution *self,
+ GFile *file,
+ GError **error);
+
+G_END_DECLS
+
+#endif /* EOS_ATTRIBUTION_H */