aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-individual-linker.h
diff options
context:
space:
mode:
authorPhilip Withnall <philip.withnall@collabora.co.uk>2010-08-06 00:27:24 +0800
committerPhilip Withnall <philip.withnall@collabora.co.uk>2010-08-12 00:34:55 +0800
commit4b7d482ea72ad143c4ed2c7b778581ed669723e3 (patch)
tree56c6eee92ed664434268ca07d459b1e16392bf47 /libempathy-gtk/empathy-individual-linker.h
parent62318cf781b2d94dc8bc4d5f084e12e6a269f354 (diff)
downloadgsoc2013-empathy-4b7d482ea72ad143c4ed2c7b778581ed669723e3.tar
gsoc2013-empathy-4b7d482ea72ad143c4ed2c7b778581ed669723e3.tar.gz
gsoc2013-empathy-4b7d482ea72ad143c4ed2c7b778581ed669723e3.tar.bz2
gsoc2013-empathy-4b7d482ea72ad143c4ed2c7b778581ed669723e3.tar.lz
gsoc2013-empathy-4b7d482ea72ad143c4ed2c7b778581ed669723e3.tar.xz
gsoc2013-empathy-4b7d482ea72ad143c4ed2c7b778581ed669723e3.tar.zst
gsoc2013-empathy-4b7d482ea72ad143c4ed2c7b778581ed669723e3.zip
Add EmpathyIndividualLinker
This is a widget to allow selection of Individuals to link together to form linked Individuals.
Diffstat (limited to 'libempathy-gtk/empathy-individual-linker.h')
-rw-r--r--libempathy-gtk/empathy-individual-linker.h70
1 files changed, 70 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-individual-linker.h b/libempathy-gtk/empathy-individual-linker.h
new file mode 100644
index 000000000..e067c6711
--- /dev/null
+++ b/libempathy-gtk/empathy-individual-linker.h
@@ -0,0 +1,70 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+/*
+ * Copyright (C) 2010 Collabora Ltd.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program; if not, write to the
+ * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ * Boston, MA 02110-1301 USA
+ *
+ * Authors: Philip Withnall <philip.withnall@collabora.co.uk>
+ */
+
+#ifndef __EMPATHY_INDIVIDUAL_LINKER_H__
+#define __EMPATHY_INDIVIDUAL_LINKER_H__
+
+#include <gtk/gtk.h>
+
+#include <folks/folks.h>
+
+G_BEGIN_DECLS
+
+#define EMPATHY_TYPE_INDIVIDUAL_LINKER (empathy_individual_linker_get_type ())
+#define EMPATHY_INDIVIDUAL_LINKER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), \
+ EMPATHY_TYPE_INDIVIDUAL_LINKER, EmpathyIndividualLinker))
+#define EMPATHY_INDIVIDUAL_LINKER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), \
+ EMPATHY_TYPE_INDIVIDUAL_LINKER, EmpathyIndividualLinkerClass))
+#define EMPATHY_IS_INDIVIDUAL_LINKER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), \
+ EMPATHY_TYPE_INDIVIDUAL_LINKER))
+#define EMPATHY_IS_INDIVIDUAL_LINKER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), \
+ EMPATHY_TYPE_INDIVIDUAL_LINKER))
+#define EMPATHY_INDIVIDUAL_LINKER_GET_CLASS(o) ( \
+ G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_INDIVIDUAL_LINKER, \
+ EmpathyIndividualLinkerClass))
+
+typedef struct {
+ GtkBin parent;
+
+ /*<private>*/
+ gpointer priv;
+} EmpathyIndividualLinker;
+
+typedef struct {
+ GtkBinClass parent_class;
+} EmpathyIndividualLinkerClass;
+
+GType empathy_individual_linker_get_type (void) G_GNUC_CONST;
+GtkWidget * empathy_individual_linker_new (FolksIndividual *start_individual);
+
+FolksIndividual * empathy_individual_linker_get_start_individual (
+ EmpathyIndividualLinker *self);
+void empathy_individual_linker_set_start_individual (
+ EmpathyIndividualLinker *self,
+ FolksIndividual *individual);
+
+GList * empathy_individual_linker_get_linked_personas (
+ EmpathyIndividualLinker *self);
+
+G_END_DECLS
+
+#endif /* __EMPATHY_INDIVIDUAL_LINKER_H__ */