aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-contact-selector-dialog.h
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-12-16 01:56:26 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-12-17 18:38:49 +0800
commit30e07ec329817c5ef360645aa2dd80cd1cff9eeb (patch)
tree8434bb1edc54d59c5b17201bee6c38cf0227840b /libempathy-gtk/empathy-contact-selector-dialog.h
parent3aadcbead0634ad2a9ef6f182b75fda18758fafb (diff)
downloadgsoc2013-empathy-30e07ec329817c5ef360645aa2dd80cd1cff9eeb.tar
gsoc2013-empathy-30e07ec329817c5ef360645aa2dd80cd1cff9eeb.tar.gz
gsoc2013-empathy-30e07ec329817c5ef360645aa2dd80cd1cff9eeb.tar.bz2
gsoc2013-empathy-30e07ec329817c5ef360645aa2dd80cd1cff9eeb.tar.lz
gsoc2013-empathy-30e07ec329817c5ef360645aa2dd80cd1cff9eeb.tar.xz
gsoc2013-empathy-30e07ec329817c5ef360645aa2dd80cd1cff9eeb.tar.zst
gsoc2013-empathy-30e07ec329817c5ef360645aa2dd80cd1cff9eeb.zip
add empathy-contact-selector-dialog
EmpathyContactSelectorDialog is an abstract class to helping to implement dialog such as the "new message" dialog.
Diffstat (limited to 'libempathy-gtk/empathy-contact-selector-dialog.h')
-rw-r--r--libempathy-gtk/empathy-contact-selector-dialog.h72
1 files changed, 72 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-contact-selector-dialog.h b/libempathy-gtk/empathy-contact-selector-dialog.h
new file mode 100644
index 000000000..b44dbd5b1
--- /dev/null
+++ b/libempathy-gtk/empathy-contact-selector-dialog.h
@@ -0,0 +1,72 @@
+/*
+ * Copyright (C) 2007-2009 Collabora Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ * Authors: Xavier Claessens <xclaesse@gmail.com>
+ * Authors: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
+ */
+
+#ifndef __EMPATHY_CONTACT_SELECTOR_DIALOG_H__
+#define __EMPATHY_CONTACT_SELECTOR_DIALOG_H__
+
+#include <glib-object.h>
+#include <gtk/gtk.h>
+
+#include <telepathy-glib/connection.h>
+
+G_BEGIN_DECLS
+
+typedef struct _EmpathyContactSelectorDialog EmpathyContactSelectorDialog;
+typedef struct _EmpathyContactSelectorDialogClass \
+ EmpathyContactSelectorDialogClass;
+
+struct _EmpathyContactSelectorDialogClass {
+ GtkDialogClass parent_class;
+
+ void (*got_response) (EmpathyContactSelectorDialog *self,
+ TpConnection *connection,
+ const gchar *contact_id);
+};
+
+struct _EmpathyContactSelectorDialog {
+ GtkDialog parent;
+
+ /* protected fields */
+ GtkWidget *button_action;
+};
+
+GType empathy_contact_selector_dialog_get_type (void);
+
+/* TYPE MACROS */
+#define EMPATHY_TYPE_CONTACT_SELECTOR_DIALOG \
+ (empathy_contact_selector_dialog_get_type ())
+#define EMPATHY_CONTACT_SELECTOR_DIALOG(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST((obj), EMPATHY_TYPE_CONTACT_SELECTOR_DIALOG, \
+ EmpathyContactSelectorDialog))
+#define EMPATHY_CONTACT_SELECTOR_DIALOG_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST((klass), EMPATHY_TYPE_CONTACT_SELECTOR_DIALOG, \
+ EmpathyContactSelectorDialogClass))
+#define EMPATHY_IS_CONTACT_SELECTOR_DIALOG(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE((obj), EMPATHY_TYPE_CONTACT_SELECTOR_DIALOG))
+#define EMPATHY_IS_CONTACT_SELECTOR_DIALOG_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE((klass), EMPATHY_TYPE_CONTACT_SELECTOR_DIALOG))
+#define EMPATHY_CONTACT_SELECTOR_DIALOG_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_CONTACT_SELECTOR_DIALOG, \
+ EmpathyContactSelectorDialogClass))
+
+G_END_DECLS
+
+#endif /* __EMPATHY_CONTACT_SELECTOR_DIALOG_H__ */