diff options
author | Travis Reitter <treitter@gmail.com> | 2010-06-22 23:43:18 +0800 |
---|---|---|
committer | Travis Reitter <treitter@gmail.com> | 2010-07-21 07:12:35 +0800 |
commit | ae79986102a22b65a3f9f4eb2328971272eec204 (patch) | |
tree | 7a119f5fb1b9546b7f7e6ac21798893581feaf68 /libempathy-gtk/empathy-individual-dialogs.h | |
parent | 315a71325f98d86722d7c313d726828f767cef82 (diff) | |
download | gsoc2013-empathy-ae79986102a22b65a3f9f4eb2328971272eec204.tar gsoc2013-empathy-ae79986102a22b65a3f9f4eb2328971272eec204.tar.gz gsoc2013-empathy-ae79986102a22b65a3f9f4eb2328971272eec204.tar.bz2 gsoc2013-empathy-ae79986102a22b65a3f9f4eb2328971272eec204.tar.lz gsoc2013-empathy-ae79986102a22b65a3f9f4eb2328971272eec204.tar.xz gsoc2013-empathy-ae79986102a22b65a3f9f4eb2328971272eec204.tar.zst gsoc2013-empathy-ae79986102a22b65a3f9f4eb2328971272eec204.zip |
Support contact adding
Diffstat (limited to 'libempathy-gtk/empathy-individual-dialogs.h')
-rw-r--r-- | libempathy-gtk/empathy-individual-dialogs.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-individual-dialogs.h b/libempathy-gtk/empathy-individual-dialogs.h new file mode 100644 index 000000000..b34a7ab18 --- /dev/null +++ b/libempathy-gtk/empathy-individual-dialogs.h @@ -0,0 +1,38 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* + * Copyright (C) 2007-2010 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> + * Travis Reitter <travis.reitter@collabora.co.uk> + */ + +#ifndef __EMPATHY_INDIVIDUAL_DIALOGS_H__ +#define __EMPATHY_INDIVIDUAL_DIALOGS_H__ + +#include <gtk/gtk.h> + +#include <folks/folks.h> + +G_BEGIN_DECLS + +void empathy_new_individual_dialog_show (GtkWindow *parent); +void empathy_new_individual_dialog_show_with_individual (GtkWindow *parent, + FolksIndividual *individual); + +G_END_DECLS + +#endif /* __EMPATHY_INDIVIDUAL_DIALOGS_H__ */ |