diff options
author | Radek Doulik <rodo@helixcode.com> | 2000-11-04 18:11:50 +0800 |
---|---|---|
committer | Radek Doulik <rodo@src.gnome.org> | 2000-11-04 18:11:50 +0800 |
commit | 7f7c32f6d202a2b1f9cc413bf361be91bcd47010 (patch) | |
tree | f3d634d30796ce96db4978eafd96db7e31e80c9b /composer/HTMLEditor.idl | |
parent | 1ca157384dd51c016c0631f2fa3ab8526ae5f12a (diff) | |
download | gsoc2013-evolution-7f7c32f6d202a2b1f9cc413bf361be91bcd47010.tar gsoc2013-evolution-7f7c32f6d202a2b1f9cc413bf361be91bcd47010.tar.gz gsoc2013-evolution-7f7c32f6d202a2b1f9cc413bf361be91bcd47010.tar.bz2 gsoc2013-evolution-7f7c32f6d202a2b1f9cc413bf361be91bcd47010.tar.lz gsoc2013-evolution-7f7c32f6d202a2b1f9cc413bf361be91bcd47010.tar.xz gsoc2013-evolution-7f7c32f6d202a2b1f9cc413bf361be91bcd47010.tar.zst gsoc2013-evolution-7f7c32f6d202a2b1f9cc413bf361be91bcd47010.zip |
use inline images hash table
2000-11-04 Radek Doulik <rodo@helixcode.com>
* listener.c (resolve_image_url): use inline images hash table
* e-msg-composer.c (init): create inlined images hash table
(destroy): destroy it
(clear_inline_images): helper function, used from
g_hash_table_foreach_remove to destroy one inline image record
* e-msg-composer.h: added hash table with inlined images url ->
cid info
2000-11-03 Radek Doulik <rodo@helixcode.com>
* listener.c (impl_event): updated for API changed
implemented image_url event
(resolve_image_url): new helper function, attaches image to mail
and returns new (resolved) url pointing to mime component
* e-msg-composer-attachment.c (e_msg_composer_attachment_new):
added conponent_id parameter
* e-msg-composer-attachment-bar.c
(e_msg_composer_attachment_bar_attach): added parameter content_id
(add_from_file): likewise
svn path=/trunk/; revision=6390
Diffstat (limited to 'composer/HTMLEditor.idl')
-rw-r--r-- | composer/HTMLEditor.idl | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/composer/HTMLEditor.idl b/composer/HTMLEditor.idl deleted file mode 100644 index ec1e971f22..0000000000 --- a/composer/HTMLEditor.idl +++ /dev/null @@ -1,56 +0,0 @@ -/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* - * Interface for the HTML Editor. - * - * Authors: - * Larry Ewing <lewing@helixcode.com> - * Radek Doulik <rodo@helixcode.com> - * - * Copyright (C) 2000 Helix Code, Inc. - */ - -#include <Bonobo.idl> - -module HTMLEditor { - interface Resolver : Bonobo::Unknown { - exception NotFound {}; - - void loadURL (in Bonobo::ProgressiveDataSink sink, in string url) raises (NotFound); - }; - - struct Arg { - any value; - }; - typedef sequence<Arg> ListenerArgs; - - interface Listener : Bonobo::Unknown { - void event (in string name, in ListenerArgs args); - }; - - interface Engine : Bonobo::Unknown { - attribute Listener listener; - - /* - * return data of current paragraph - */ - any get_paragraph_data (in string key); - - /* - * sets data on current paragraph - */ - void set_paragraph_data (in string key, in any value); - - /* - * set data which are set to objects of given type while inserting - * we will use that to mark original text paragraph(s) in composer - * and use that data later in editing to implement better reply - * editing - */ - void set_object_data_by_type (in string type_name, in string key, in any data); - - /* - * execute editor command - */ - void command (in string command); - }; -}; |