diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-08-14 10:17:04 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-08-14 10:17:04 +0800 |
commit | 476458f355b639cb725188d9d8e767affa71f4ab (patch) | |
tree | 8d6686abbf6334ad7b65aa8ea15895d58e88b6bd /addressbook/backend/idl | |
parent | 3157a507b2074766bbd88300cec543a28418d443 (diff) | |
download | gsoc2013-evolution-476458f355b639cb725188d9d8e767affa71f4ab.tar.gz gsoc2013-evolution-476458f355b639cb725188d9d8e767affa71f4ab.tar.zst gsoc2013-evolution-476458f355b639cb725188d9d8e767affa71f4ab.zip |
Changed get_card to be asyncronous.
2001-08-13 Christopher James Lahey <clahey@ximian.com>
* backend/ebook/e-book-listener.c,
backend/ebook/e-book-listener.h, backend/ebook/e-book.c,
backend/ebook/e-book.h, backend/idl/addressbook.idl,
backend/pas/pas-backend-file.c, backend/pas/pas-book.c,
backend/pas/pas-book.h: Changed get_card to be asyncronous.
* backend/ebook/e-card.c, backend/ebook/test-client.c: Changed
these to deal with the new get_card functionality.
svn path=/trunk/; revision=11984
Diffstat (limited to 'addressbook/backend/idl')
-rw-r--r-- | addressbook/backend/idl/addressbook.idl | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/addressbook/backend/idl/addressbook.idl b/addressbook/backend/idl/addressbook.idl index 7562b148a2..342482d573 100644 --- a/addressbook/backend/idl/addressbook.idl +++ b/addressbook/backend/idl/addressbook.idl @@ -45,19 +45,7 @@ module Addressbook { /* * Fetching cards in the addresbook. */ - VCard getVCard (in CardId id); - - /* - * Permissions. the first form is general write - * permission (whether or not the user can add or - * remove or modify any entry in the addressbook.) - * - * if can_write returns TRUE, can_write_card can still - * return FALSE if the user doesn't have permission to - * modify/remove that specific card. - */ - boolean isWriteable (); - boolean isCardWriteable (in CardId Id); + void getVCard (in CardId id); void authenticateUser (in string user, in string passwd); @@ -123,6 +111,8 @@ module Addressbook { void notifyBookOpened (in CallStatus status, in Book book); + void notifyCardRequested (in CallStatus status, in VCard card); + void notifyCursorRequested (in CallStatus status, in CardCursor cursor); void notifyViewRequested (in CallStatus status, in BookView view); @@ -168,4 +158,3 @@ module Addressbook { }; }; }; - |