diff options
author | Ted Gould <ted@gould.cx> | 2011-02-24 16:02:16 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-02-24 16:02:16 -0600 |
commit | 59d8e5d84c42b48efbe5874b2363b30004012a8b (patch) | |
tree | 00de0898518d94b88093efdd3aee9d85357e170b /bindings/python/appindicator.defs | |
parent | dd6a45171e4d9c93247805043806f1a2e06d362c (diff) | |
parent | 7a1564e995770915a51c411a1856508db19206e9 (diff) | |
download | libayatana-appindicator-59d8e5d84c42b48efbe5874b2363b30004012a8b.tar.gz libayatana-appindicator-59d8e5d84c42b48efbe5874b2363b30004012a8b.tar.bz2 libayatana-appindicator-59d8e5d84c42b48efbe5874b2363b30004012a8b.zip |
* New upstream release.
* Add support for accessible descriptions
* Move deregistration of object later to send final signals
Diffstat (limited to 'bindings/python/appindicator.defs')
-rw-r--r-- | bindings/python/appindicator.defs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/bindings/python/appindicator.defs b/bindings/python/appindicator.defs index 5027a6d..cc8ae75 100644 --- a/bindings/python/appindicator.defs +++ b/bindings/python/appindicator.defs @@ -72,6 +72,15 @@ ) ) +(define-method set_accessible_desc + (of-object "AppIndicator") + (c-name "app_indicator_set_accessible_desc") + (return-type "none") + (parameters + '("const-gchar*" "accessible_desc" (null-ok)) + ) +) + (define-method set_ordering_index (of-object "AppIndicator") (c-name "app_indicator_set_ordering_index") @@ -146,6 +155,12 @@ (return-type "const-gchar*") ) +(define-method get_accessible_desc + (of-object "AppIndicator") + (c-name "app_indicator_get_accessible_desc") + (return-type "const-gchar*") +) + (define-method get_ordering_index (of-object "AppIndicator") (c-name "app_indicator_get_ordering_index") |