diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-01-16 23:32:38 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-01-16 23:32:38 +0800 |
commit | 8a5acbaef7fcc7f5e4c09b0380312bff47d23984 (patch) | |
tree | 214baa8f82684b08a2d3d7092e20d1c35072695d /python/pyempathygtk/pyempathygtk.override | |
parent | 2dc2f7e32f57720023b6c888146e8a09d850972a (diff) | |
download | gsoc2013-empathy-8a5acbaef7fcc7f5e4c09b0380312bff47d23984.tar gsoc2013-empathy-8a5acbaef7fcc7f5e4c09b0380312bff47d23984.tar.gz gsoc2013-empathy-8a5acbaef7fcc7f5e4c09b0380312bff47d23984.tar.bz2 gsoc2013-empathy-8a5acbaef7fcc7f5e4c09b0380312bff47d23984.tar.lz gsoc2013-empathy-8a5acbaef7fcc7f5e4c09b0380312bff47d23984.tar.xz gsoc2013-empathy-8a5acbaef7fcc7f5e4c09b0380312bff47d23984.tar.zst gsoc2013-empathy-8a5acbaef7fcc7f5e4c09b0380312bff47d23984.zip |
Update python binding for new API.
svn path=/trunk/; revision=564
Diffstat (limited to 'python/pyempathygtk/pyempathygtk.override')
-rw-r--r-- | python/pyempathygtk/pyempathygtk.override | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/python/pyempathygtk/pyempathygtk.override b/python/pyempathygtk/pyempathygtk.override index 6f7974cd9..3c7c1a446 100644 --- a/python/pyempathygtk/pyempathygtk.override +++ b/python/pyempathygtk/pyempathygtk.override @@ -2,6 +2,8 @@ headers #include <Python.h> #include <pygobject.h> +#include "empathy-avatar-chooser.h" +#include "empathy-avatar-image.h" #include "empathy-about-dialog.h" #include "empathy-account-chooser.h" #include "empathy-accounts-dialog.h" @@ -10,6 +12,7 @@ headers #include "empathy-account-widget-msn.h" #include "empathy-cell-renderer-expander.h" #include "empathy-cell-renderer-text.h" +#include "empathy-cell-renderer-activatable.h" #include "empathy-chat.h" #include "empathy-chatrooms-window.h" #include "empathy-chat-view.h" @@ -33,15 +36,16 @@ headers #include "empathy-spell.h" #include "empathy-status-icon.h" #include "empathy-status-presets.h" +#include "empathy-theme.h" #include "empathy-theme-manager.h" +#include "empathy-theme-boxes.h" +#include "empathy-theme-irc.h" #include "empathy-ui-utils.h" #include "ephy-spinner.h" #include "empathy-smiley-manager.h" - -/* FIXME */ -#define EMPATHY_TYPE_CONTACT_LIST_STORE_COL 2 -#define EMPATHY_TYPE_CONTACT_LIST_STORE_SORT 3 -#define EMPATHY_TYPE_CONTACT_WIDGET_TYPE 4 +#include "empathy-new-message-dialog.h" +#include "empathy-call-window.h" +#include "empathy-gtk-enum-types.h" void empathy_add_constants(PyObject *module, const gchar *strip_prefix); void empathy_register_classes(PyObject *d); @@ -59,11 +63,17 @@ import gtk.TreeStore as PyGtkTreeStore_Type import gtk.ToggleButton as PyGtkToggleButton_Type import gtk.ComboBox as PyGtkComboBox_Type import gtk.StatusIcon as PyGtkStatusIcon_Type +import gtk.Button as PyGtkButton_Type +import gtk.EventBox as PyGtkEventBox_Type +import gtk.CellRendererPixbuf as PyGtkCellRendererPixbuf_Type +import gdk.Pixbuf as PyGdkPixbuf_Type import empathy.Contact as PyEmpathyContact_Type import empathy.ContactList as PyEmpathyContactList_Type import empathy.TpChat as PyEmpathyTpChat_Type import empathy.Presence as PyEmpathyPresence_Type import empathy.Message as PyEmpathyMessage_Type +import empathy.TpChatroom as PyEmpathyTpChatroom_Type +import empathy.TpCall as PyEmpathyTpCall_Type %% ignore-glob *_get_type |