aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/backend/ebook/e-book-view-listener.h
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-09-22 21:14:10 +0800
committerChris Lahey <clahey@src.gnome.org>2000-09-22 21:14:10 +0800
commit97502c28df8b4a419b7230c19338b087b161f423 (patch)
treeb1c0e3eaa854990ed0f06f78ecd61d9ec8bd892a /addressbook/backend/ebook/e-book-view-listener.h
parent2a20e41b574fa96a513a0a8faa4544cbef895146 (diff)
downloadgsoc2013-evolution-97502c28df8b4a419b7230c19338b087b161f423.tar
gsoc2013-evolution-97502c28df8b4a419b7230c19338b087b161f423.tar.gz
gsoc2013-evolution-97502c28df8b4a419b7230c19338b087b161f423.tar.bz2
gsoc2013-evolution-97502c28df8b4a419b7230c19338b087b161f423.tar.lz
gsoc2013-evolution-97502c28df8b4a419b7230c19338b087b161f423.tar.xz
gsoc2013-evolution-97502c28df8b4a419b7230c19338b087b161f423.tar.zst
gsoc2013-evolution-97502c28df8b4a419b7230c19338b087b161f423.zip
Added a function to set the status message associated with a given view.
2000-09-22 Christopher James Lahey <clahey@helixcode.com> * backend/ebook/e-book-view-listener.c, backend/ebook/e-book-view-listener.h, backend/ebook/e-book-view.c, backend/ebook/e-book-view.h, backend/idl/addressbook.idl, backend/pas/pas-book-view.c, backend/pas/pas-book-view.h: Added a function to set the status message associated with a given view. This is not yet implemented in the gui. svn path=/trunk/; revision=5549
Diffstat (limited to 'addressbook/backend/ebook/e-book-view-listener.h')
-rw-r--r--addressbook/backend/ebook/e-book-view-listener.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/addressbook/backend/ebook/e-book-view-listener.h b/addressbook/backend/ebook/e-book-view-listener.h
index 65e5f8eb5b..5a535a209a 100644
--- a/addressbook/backend/ebook/e-book-view-listener.h
+++ b/addressbook/backend/ebook/e-book-view-listener.h
@@ -42,6 +42,7 @@ typedef enum {
CardRemovedEvent,
CardModifiedEvent,
SequenceCompleteEvent,
+ StatusMessageEvent,
} EBookViewListenerOperation;
typedef struct {
@@ -52,6 +53,9 @@ typedef struct {
/* For Card[Added|Modified]Event */
GList *cards; /* Of type ECard. */
+
+ /* For StatusMessageEvent */
+ char *message;
} EBookViewListenerResponse;