diff options
author | Ted Gould <ted@gould.cx> | 2010-08-12 13:52:34 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-08-12 13:52:34 -0500 |
commit | 0d7fd31a80004f13ba3e7ffc608660a9cfe351d2 (patch) | |
tree | 8d30459d833dc68af1363449936f46fecc7746ab /bindings/python | |
parent | 863cd1c1debec979f11ca59c8fbf4ed129183edf (diff) | |
parent | d81670cc9cf081b1296561d9da2176975da7643b (diff) | |
download | ayatana-indicator-application-0d7fd31a80004f13ba3e7ffc608660a9cfe351d2.tar.gz ayatana-indicator-application-0d7fd31a80004f13ba3e7ffc608660a9cfe351d2.tar.bz2 ayatana-indicator-application-0d7fd31a80004f13ba3e7ffc608660a9cfe351d2.zip |
Import upstream version 0.2.4
Diffstat (limited to 'bindings/python')
-rw-r--r-- | bindings/python/Makefile.in | 2 | ||||
-rw-r--r-- | bindings/python/appindicator.defs | 17 |
2 files changed, 18 insertions, 1 deletions
diff --git a/bindings/python/Makefile.in b/bindings/python/Makefile.in index 752d94f..de4208d 100644 --- a/bindings/python/Makefile.in +++ b/bindings/python/Makefile.in @@ -212,6 +212,8 @@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYGTK_CODEGEN = @PYGTK_CODEGEN@ PYGTK_DEFSDIR = @PYGTK_DEFSDIR@ PYTHON = @PYTHON@ diff --git a/bindings/python/appindicator.defs b/bindings/python/appindicator.defs index 98abe4c..b6c7402 100644 --- a/bindings/python/appindicator.defs +++ b/bindings/python/appindicator.defs @@ -49,7 +49,7 @@ '("const-gchar*" "id") '("const-gchar*" "icon_name") '("AppIndicatorCategory" "category") - '("const-gchar*" "icon_path" (null-ok) (default "NULL")) + '("const-gchar*" "icon_theme_path" (null-ok) (default "NULL")) ) ) @@ -89,6 +89,15 @@ ) ) +(define-method set_icon_theme_path + (of-object "AppIndicator") + (c-name "app_indicator_set_icon_theme_path") + (return-type "none") + (parameters + '("const-gchar*" "icon_theme_path" (null-ok)) + ) +) + (define-method get_id (of-object "AppIndicator") (c-name "app_indicator_get_id") @@ -113,6 +122,12 @@ (return-type "const-gchar*") ) +(define-method get_icon_theme_path + (of-object "AppIndicator") + (c-name "app_indicator_get_icon_theme_path") + (return-type "const-gchar*") +) + (define-method get_attention_icon (of-object "AppIndicator") (c-name "app_indicator_get_attention_icon") |