diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2007-06-07 04:20:50 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-06-07 04:20:50 +0800 |
commit | a3a321f7e30e09c0adce157d3894642bad32e42c (patch) | |
tree | dfd9d8951bdec45d00025c9f5d09f9a68a7f5204 /libempathy-gtk/empathy-contact-dialogs.h | |
parent | 51f7f13d735f8db9ead25711641f2974c18b2737 (diff) | |
download | gsoc2013-empathy-a3a321f7e30e09c0adce157d3894642bad32e42c.tar gsoc2013-empathy-a3a321f7e30e09c0adce157d3894642bad32e42c.tar.gz gsoc2013-empathy-a3a321f7e30e09c0adce157d3894642bad32e42c.tar.bz2 gsoc2013-empathy-a3a321f7e30e09c0adce157d3894642bad32e42c.tar.lz gsoc2013-empathy-a3a321f7e30e09c0adce157d3894642bad32e42c.tar.xz gsoc2013-empathy-a3a321f7e30e09c0adce157d3894642bad32e42c.tar.zst gsoc2013-empathy-a3a321f7e30e09c0adce157d3894642bad32e42c.zip |
Implement editing and viewing contact information with right click on the
2007-06-06 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-contact-dialogs.glade:
* libempathy-gtk/empathy-contact-widget.glade:
* libempathy-gtk/empathy-status-icon.c:
* libempathy-gtk/empathy-contact-dialogs.c:
* libempathy-gtk/empathy-contact-dialogs.h:
* libempathy-gtk/gossip-ui-utils.c:
* libempathy-gtk/empathy-subscription-dialog.glade:
* libempathy-gtk/empathy-contact-widget.c:
* libempathy-gtk/gossip-ui-utils.h:
* libempathy-gtk/gossip-contact-list-view.c:
* libempathy-gtk/empathy-subscription-dialog.c:
* libempathy-gtk/Makefile.am:
* libempathy-gtk/empathy-subscription-dialog.h: Implement editing and
viewing contact information with right click on the roster.
svn path=/trunk/; revision=128
Diffstat (limited to 'libempathy-gtk/empathy-contact-dialogs.h')
-rw-r--r-- | libempathy-gtk/empathy-contact-dialogs.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-contact-dialogs.h b/libempathy-gtk/empathy-contact-dialogs.h new file mode 100644 index 000000000..809623d47 --- /dev/null +++ b/libempathy-gtk/empathy-contact-dialogs.h @@ -0,0 +1,40 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* + * Copyright (C) 2007 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., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + * + * Authors: Xavier Claessens <xclaesse@gmail.com> + */ + +#ifndef __EMPATHY_CONTACT_DIALOGS_H__ +#define __EMPATHY_CONTACT_DIALOGS_H__ + +#include <gtk/gtk.h> + +#include <libempathy/gossip-contact.h> + +G_BEGIN_DECLS + +void empathy_subscription_dialog_show (GossipContact *contact, + GtkWindow *parent); +void empathy_contact_information_dialog_show (GossipContact *contact, + GtkWindow *parent, + gboolean edit); + +G_END_DECLS + +#endif /* __EMPATHY_CONTACT_DIALOGS_H__ */ |