diff options
author | Radek Doulik <rodo@helixcode.com> | 2000-11-01 01:10:42 +0800 |
---|---|---|
committer | Radek Doulik <rodo@src.gnome.org> | 2000-11-01 01:10:42 +0800 |
commit | fee9d1b411184ef7fee35d1b72871a29e340b0c2 (patch) | |
tree | 5e1b00dc04f01e011c14546249b0f3237d77dc8d /composer/e-msg-composer.h | |
parent | 1c7ba10a5d5ecfea514da87de1a23278f4d43f00 (diff) | |
download | gsoc2013-evolution-fee9d1b411184ef7fee35d1b72871a29e340b0c2.tar gsoc2013-evolution-fee9d1b411184ef7fee35d1b72871a29e340b0c2.tar.gz gsoc2013-evolution-fee9d1b411184ef7fee35d1b72871a29e340b0c2.tar.bz2 gsoc2013-evolution-fee9d1b411184ef7fee35d1b72871a29e340b0c2.tar.lz gsoc2013-evolution-fee9d1b411184ef7fee35d1b72871a29e340b0c2.tar.xz gsoc2013-evolution-fee9d1b411184ef7fee35d1b72871a29e340b0c2.tar.zst gsoc2013-evolution-fee9d1b411184ef7fee35d1b72871a29e340b0c2.zip |
better reply editing, uses new HTMLEditor::Engine,Listener interfaces
you need fresh CVS gtkhtml to try that
2000-10-31 Radek Doulik <rodo@helixcode.com>
* e-msg-composer.c (prepare_engine): new function, tries prepare
editor engine
(mark_orig_text): marks original text in editor
(set_editor_text): call mark_orig_text
(create_composer): call prepare_engine
* Makefile.am (IDL_GENERATED): added HTMLEditor generated files to
IDL_GENERATED
($(IDL_GENERATED)): generate also files from HTMLEditor.idl
(libcomposer_la_SOURCES): added listener.[ch]
* e-msg-composer.h: added editor_engine and editor_listener to
EMsgComposer
* listener.[ch]: new files, implementation of HTMLEditor::Listener
svn path=/trunk/; revision=6292
Diffstat (limited to 'composer/e-msg-composer.h')
-rw-r--r-- | composer/e-msg-composer.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/composer/e-msg-composer.h b/composer/e-msg-composer.h index 68ab9bef7c..391831d776 100644 --- a/composer/e-msg-composer.h +++ b/composer/e-msg-composer.h @@ -24,11 +24,15 @@ #ifndef ___E_MSG_COMPOSER_H__ #define ___E_MSG_COMPOSER_H__ +typedef struct _EMsgComposer EMsgComposer; +typedef struct _EMsgComposerClass EMsgComposerClass; + #include <gnome.h> #include <bonobo.h> #include "e-msg-composer-attachment-bar.h" #include "e-msg-composer-hdrs.h" +#include "HTMLEditor.h" #ifdef __cplusplus extern "C" { @@ -43,8 +47,6 @@ extern "C" { #define E_IS_MSG_COMPOSER_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), E_TYPE_MSG_COMPOSER)) -typedef struct _EMsgComposer EMsgComposer; -typedef struct _EMsgComposerClass EMsgComposerClass; struct _EMsgComposer { BonoboWin parent; @@ -63,7 +65,9 @@ struct _EMsgComposer { Bonobo_PersistFile persist_file_interface; Bonobo_PersistStream persist_stream_interface; - + HTMLEditor_Engine editor_engine; + BonoboObject *editor_listener; + char *sig_file; gboolean attachment_bar_visible : 1; |