diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2007-09-08 22:40:47 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-09-08 22:40:47 +0800 |
commit | bf4896b2fc0c365adcf08ca0ea296dd592b0dbaf (patch) | |
tree | 21c07fc6a49b891c9b7b053cc123cf806d445fc9 /python | |
parent | 6f31eda54384a1eca26a02e28d6fd00a350a9793 (diff) | |
download | gsoc2013-empathy-bf4896b2fc0c365adcf08ca0ea296dd592b0dbaf.tar gsoc2013-empathy-bf4896b2fc0c365adcf08ca0ea296dd592b0dbaf.tar.gz gsoc2013-empathy-bf4896b2fc0c365adcf08ca0ea296dd592b0dbaf.tar.bz2 gsoc2013-empathy-bf4896b2fc0c365adcf08ca0ea296dd592b0dbaf.tar.lz gsoc2013-empathy-bf4896b2fc0c365adcf08ca0ea296dd592b0dbaf.tar.xz gsoc2013-empathy-bf4896b2fc0c365adcf08ca0ea296dd592b0dbaf.tar.zst gsoc2013-empathy-bf4896b2fc0c365adcf08ca0ea296dd592b0dbaf.zip |
Updated for new API.
2007-09-08 Xavier Claessens <xclaesse@gmail.com>
* python/pyempathygtk/pyempathygtk.override:
* python/pyempathygtk/pyempathygtk.defs: Updated for new API.
svn path=/trunk/; revision=287
Diffstat (limited to 'python')
-rw-r--r-- | python/pyempathygtk/pyempathygtk.defs | 132 | ||||
-rw-r--r-- | python/pyempathygtk/pyempathygtk.override | 2 |
2 files changed, 72 insertions, 62 deletions
diff --git a/python/pyempathygtk/pyempathygtk.defs b/python/pyempathygtk/pyempathygtk.defs index 71a4437b6..e3f878061 100644 --- a/python/pyempathygtk/pyempathygtk.defs +++ b/python/pyempathygtk/pyempathygtk.defs @@ -77,6 +77,13 @@ (gtype-id "EMPATHY_TYPE_PRIVATE_CHAT") ) +(define-object SmileyManager + (in-module "Empathy") + (parent "GObject") + (c-name "EmpathySmileyManager") + (gtype-id "EMPATHY_TYPE_SMILEY_MANAGER") +) + (define-object StatusIcon (in-module "Empathy") (parent "GObject") @@ -100,42 +107,6 @@ ;; Enumerations and flags ... -(define-enum Smiley - (in-module "Empathy") - (c-name "EmpathySmiley") - (gtype-id "EMPATHY_TYPE_SMILEY") - (values - '("normal" "EMPATHY_SMILEY_NORMAL") - '("wink" "EMPATHY_SMILEY_WINK") - '("bigeye" "EMPATHY_SMILEY_BIGEYE") - '("nose" "EMPATHY_SMILEY_NOSE") - '("cry" "EMPATHY_SMILEY_CRY") - '("sad" "EMPATHY_SMILEY_SAD") - '("sceptical" "EMPATHY_SMILEY_SCEPTICAL") - '("bigsmile" "EMPATHY_SMILEY_BIGSMILE") - '("indifferent" "EMPATHY_SMILEY_INDIFFERENT") - '("tounge" "EMPATHY_SMILEY_TOUNGE") - '("shocked" "EMPATHY_SMILEY_SHOCKED") - '("cool" "EMPATHY_SMILEY_COOL") - '("sorry" "EMPATHY_SMILEY_SORRY") - '("kiss" "EMPATHY_SMILEY_KISS") - '("shutup" "EMPATHY_SMILEY_SHUTUP") - '("yawn" "EMPATHY_SMILEY_YAWN") - '("confused" "EMPATHY_SMILEY_CONFUSED") - '("angel" "EMPATHY_SMILEY_ANGEL") - '("oooh" "EMPATHY_SMILEY_OOOH") - '("lookaway" "EMPATHY_SMILEY_LOOKAWAY") - '("blush" "EMPATHY_SMILEY_BLUSH") - '("coolbigsmile" "EMPATHY_SMILEY_COOLBIGSMILE") - '("angry" "EMPATHY_SMILEY_ANGRY") - '("boss" "EMPATHY_SMILEY_BOSS") - '("monkey" "EMPATHY_SMILEY_MONKEY") - '("silly" "EMPATHY_SMILEY_SILLY") - '("sick" "EMPATHY_SMILEY_SICK") - '("count" "EMPATHY_SMILEY_COUNT") - ) -) - (define-enum ContactListStoreSort (in-module "Empathy") (c-name "EmpathyContactListStoreSort") @@ -687,22 +658,6 @@ ) ) -(define-function empathy_chat_view_get_smiley_image - (c-name "empathy_chat_view_get_smiley_image") - (return-type "GdkPixbuf*") - (parameters - '("EmpathySmiley" "smiley") - ) -) - -(define-function empathy_chat_view_get_smiley_text - (c-name "empathy_chat_view_get_smiley_text") - (return-type "const-gchar*") - (parameters - '("EmpathySmiley" "smiley") - ) -) - (define-function empathy_chat_view_get_smiley_menu (c-name "empathy_chat_view_get_smiley_menu") (return-type "GtkWidget*") @@ -1229,6 +1184,70 @@ +;; From empathy-smiley-manager.h + +(define-function empathy_smiley_manager_get_type + (c-name "empathy_smiley_manager_get_type") + (return-type "GType") +) + +(define-function empathy_smiley_manager_new + (c-name "empathy_smiley_manager_new") + (is-constructor-of "EmpathySmileyManager") + (return-type "EmpathySmileyManager*") +) + +(define-method load + (of-object "EmpathySmileyManager") + (c-name "empathy_smiley_manager_load") + (return-type "none") +) + +(define-method add + (of-object "EmpathySmileyManager") + (c-name "empathy_smiley_manager_add") + (return-type "none") + (parameters + '("const-gchar*" "icon_name") + '("const-gchar*" "first_str") + ) + (varargs #t) +) + +(define-method add_from_pixbuf + (of-object "EmpathySmileyManager") + (c-name "empathy_smiley_manager_add_from_pixbuf") + (return-type "none") + (parameters + '("GdkPixbuf*" "smiley") + '("const-gchar*" "first_str") + ) + (varargs #t) +) + +(define-method get_all + (of-object "EmpathySmileyManager") + (c-name "empathy_smiley_manager_get_all") + (return-type "GSList*") +) + +(define-method parse + (of-object "EmpathySmileyManager") + (c-name "empathy_smiley_manager_parse") + (return-type "GSList*") + (parameters + '("const-gchar*" "text") + ) +) + +(define-method free + (of-object "EmpathySmiley") + (c-name "empathy_smiley_free") + (return-type "none") +) + + + ;; From empathy-spell-dialog.h (define-function empathy_spell_dialog_show @@ -1486,15 +1505,6 @@ ) ) -(define-function empathy_pixbuf_from_smiley - (c-name "empathy_pixbuf_from_smiley") - (return-type "GdkPixbuf*") - (parameters - '("EmpathySmiley" "type") - '("GtkIconSize" "icon_size") - ) -) - (define-function empathy_icon_name_from_account (c-name "empathy_icon_name_from_account") (return-type "const-gchar*") diff --git a/python/pyempathygtk/pyempathygtk.override b/python/pyempathygtk/pyempathygtk.override index 8b3f22d5e..6f7974cd9 100644 --- a/python/pyempathygtk/pyempathygtk.override +++ b/python/pyempathygtk/pyempathygtk.override @@ -36,9 +36,9 @@ headers #include "empathy-theme-manager.h" #include "empathy-ui-utils.h" #include "ephy-spinner.h" +#include "empathy-smiley-manager.h" /* FIXME */ -#define EMPATHY_TYPE_SMILEY 1 #define EMPATHY_TYPE_CONTACT_LIST_STORE_COL 2 #define EMPATHY_TYPE_CONTACT_LIST_STORE_SORT 3 #define EMPATHY_TYPE_CONTACT_WIDGET_TYPE 4 |