diff options
author | nobody <nobody@localhost> | 2001-08-02 23:43:54 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2001-08-02 23:43:54 +0800 |
commit | db171b24325a1ce9b39e3606dd1e72c27cb27e0a (patch) | |
tree | 94acb43d14c571e8ec432fa3650277178741f531 /composer/Evolution-Composer.idl | |
parent | ea4315435238149d387701ed2940bf8c97d4d319 (diff) | |
download | gsoc2013-evolution-gnomoku-1_2.tar gsoc2013-evolution-gnomoku-1_2.tar.gz gsoc2013-evolution-gnomoku-1_2.tar.bz2 gsoc2013-evolution-gnomoku-1_2.tar.lz gsoc2013-evolution-gnomoku-1_2.tar.xz gsoc2013-evolution-gnomoku-1_2.tar.zst gsoc2013-evolution-gnomoku-1_2.zip |
This commit was manufactured by cvs2svn to create tag 'gnomoku-1_2'.gnomoku-1_2
svn path=/tags/gnomoku-1_2/; revision=11577
Diffstat (limited to 'composer/Evolution-Composer.idl')
-rw-r--r-- | composer/Evolution-Composer.idl | 105 |
1 files changed, 0 insertions, 105 deletions
diff --git a/composer/Evolution-Composer.idl b/composer/Evolution-Composer.idl deleted file mode 100644 index c15597068a..0000000000 --- a/composer/Evolution-Composer.idl +++ /dev/null @@ -1,105 +0,0 @@ -/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* - * Evolution-Composer.idl: Mail composer interfaces for Evolution - * - * Author: - * Dan Winship <danw@ximian.com> - * - * (C) 2000 Ximian, Inc. - */ - -#include <Bonobo.idl> - -module GNOME { -module Evolution { - - interface Composer : Bonobo::Unknown { - struct Recipient { - string name; /* UTF-8 */ - string address; - }; - typedef sequence<Recipient> RecipientList; - - typedef sequence<char> AttachmentData; - - /** - * setHeaders: - * @to: the "To" recipients - * @cc: the "CC" recipients - * @bcc: the "Bcc" recipients - * @subject: the subject of the message - * - * Sets the composer headers. Any of @to, @cc, and - * @bcc may be an empty list, and @subject may be an - * empty string. - **/ - void setHeaders (in RecipientList to, in RecipientList cc, - in RecipientList bcc, in string subject); - - /** - * setBodyText: - * @body: the body - * - * Sets the text in the body of the composer to - * the given UTF-8 plain text. - **/ - void setBodyText (in string body); - - /** - * attachMIME: - * @data: the attachment data - * - * This adds an attachment to the composer. @data - * should be a fully-formed MIME body part. - **/ - exception CouldNotParse {}; - void attachMIME (in string data) - raises (CouldNotParse); - - /** - * attachData: - * @content_type: the Content-Type header - * @filename: the suggested filename, or "" - * @description: a description of the data, or "" - * @show_inline: whether the attachment should be - * displayed inline or not. - * @data: the raw attachment data - * - * This adds @data as an attachment, using the provided - * information to generate MIME headers. @content_type - * may contain just a MIME content type, or it may - * contain a complete Content-Type header. @filename - * is a filename for the Content-Disposition header - * @description (if not "") provides the - * Content-Description, and @show_inline determines if the - * Content-Disposition is "inline" or "attachment". - * - * If you need to specify headers or values other than - * what this function can do, you will need to generate - * all of the MIME headers yourself and use - * add_attachment (). - **/ - void attachData (in string content_type, - in string filename, - in string description, - in boolean show_inline, - in AttachmentData data); - - /** - * show: - * - * Shows the composer and lets the user edit things - * and send the message. - **/ - void show (); - - - /** - * send: - * - * Send the message without showing the user the composer - **/ - void send (); - }; -}; -}; |