diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2010-08-12 16:32:18 -0400 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2010-08-12 16:32:18 -0400 |
commit | 2840a6f037bb7e5b366090519603f6706a26b704 (patch) | |
tree | 72f1888f6b4f198ba20c1267b07cdf594a7fcd90 /bindings/python | |
parent | 77beabaa23a8ff37b5c0060647ba3988dc27e13e (diff) | |
parent | 2368f530f2ada528bdfee8922088e7f836441d77 (diff) | |
download | libayatana-appindicator-2840a6f037bb7e5b366090519603f6706a26b704.tar.gz libayatana-appindicator-2840a6f037bb7e5b366090519603f6706a26b704.tar.bz2 libayatana-appindicator-2840a6f037bb7e5b366090519603f6706a26b704.zip |
releasing version 0.2.4-0ubuntu10.2.4-0ubuntu1
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") |