| Top |  |  |  |  | 
| void | e_html_editor_new () | 
| GtkWidget * | e_html_editor_new_finish () | 
| EContentEditor * | e_html_editor_get_content_editor () | 
| void | e_html_editor_register_content_editor () | 
| GtkBuilder * | e_html_editor_get_builder () | 
| GtkUIManager * | e_html_editor_get_ui_manager () | 
| GtkAction * | e_html_editor_get_action () | 
| GtkActionGroup * | e_html_editor_get_action_group () | 
| GtkWidget * | e_html_editor_get_widget () | 
| GtkWidget * | e_html_editor_get_managed_widget () | 
| GtkWidget * | e_html_editor_get_style_combo_box () | 
| const gchar * | e_html_editor_get_filename () | 
| void | e_html_editor_set_filename () | 
| EActivityBar * | e_html_editor_get_activity_bar () | 
| EActivity * | e_html_editor_new_activity () | 
| void | e_html_editor_pack_above () | 
| void | e_html_editor_update_spell_actions () | 
| gboolean | e_html_editor_save () | 
void e_html_editor_new (GAsyncReadyCallback callback,gpointer user_data);
e_html_editor_new is deprecated and should not be used in newly-written code.
Constructs a new EHTMLEditor asynchronously. The result is returned
by e_html_editor_new_finish(), which should be called inside callback
.
| callback | a callback to be called when the editor is ready | |
| user_data | a used data passed into the  | 
Since: 3.22
GtkWidget * e_html_editor_new_finish (GAsyncResult *result,GError **error);
e_html_editor_new_finish is deprecated and should not be used in newly-written code.
Finishes the call of e_html_editor_new().
| result | a GAsyncResult passed to callback from  | |
| error | an optional GError | 
Since: 3.22
EContentEditor *
e_html_editor_get_content_editor (EHTMLEditor *editor);
e_html_editor_get_content_editor is deprecated and should not be used in newly-written code.
Returns instance of EContentEditor used in the editor
.
void e_html_editor_register_content_editor (EHTMLEditor *editor,const gchar *name,EContentEditor *cnt_editor);
e_html_editor_register_content_editor is deprecated and should not be used in newly-written code.
GtkBuilder *
e_html_editor_get_builder (EHTMLEditor *editor);
e_html_editor_get_builder is deprecated and should not be used in newly-written code.
GtkUIManager *
e_html_editor_get_ui_manager (EHTMLEditor *editor);
e_html_editor_get_ui_manager is deprecated and should not be used in newly-written code.
Returns GtkUIManager that manages all the actions in the editor
.
GtkAction * e_html_editor_get_action (EHTMLEditor *editor,const gchar *action_name);
e_html_editor_get_action is deprecated and should not be used in newly-written code.
GtkActionGroup * e_html_editor_get_action_group (EHTMLEditor *editor,const gchar *group_name);
e_html_editor_get_action_group is deprecated and should not be used in newly-written code.
GtkWidget * e_html_editor_get_widget (EHTMLEditor *editor,const gchar *widget_name);
e_html_editor_get_widget is deprecated and should not be used in newly-written code.
GtkWidget * e_html_editor_get_managed_widget (EHTMLEditor *editor,const gchar *widget_path);
e_html_editor_get_managed_widget is deprecated and should not be used in newly-written code.
GtkWidget *
e_html_editor_get_style_combo_box (EHTMLEditor *editor);
e_html_editor_get_style_combo_box is deprecated and should not be used in newly-written code.
const gchar *
e_html_editor_get_filename (EHTMLEditor *editor);
e_html_editor_get_filename is deprecated and should not be used in newly-written code.
Returns path and name of file to which content of the editor should be saved.
void e_html_editor_set_filename (EHTMLEditor *editor,const gchar *filename);
e_html_editor_set_filename is deprecated and should not be used in newly-written code.
Sets file to which content of the editor should be saved (see
e_html_editor_save()).
EActivityBar *
e_html_editor_get_activity_bar (EHTMLEditor *editor);
e_html_editor_get_activity_bar is deprecated and should not be used in newly-written code.
EActivity *
e_html_editor_new_activity (EHTMLEditor *editor);
e_html_editor_new_activity is deprecated and should not be used in newly-written code.
Creates and configures a new EActivity so its progress is shown in
the editor
.  The EActivity comes pre-loaded with a CamelOperation.
void e_html_editor_pack_above (EHTMLEditor *editor,GtkWidget *child);
e_html_editor_pack_above is deprecated and should not be used in newly-written code.
Inserts child
 right between the toolbars and the editor widget itself.
void
e_html_editor_update_spell_actions (EHTMLEditor *editor);
e_html_editor_update_spell_actions is deprecated and should not be used in newly-written code.
gboolean e_html_editor_save (EHTMLEditor *editor,const gchar *filename,gboolean as_html,GError **error);
e_html_editor_save is deprecated and should not be used in newly-written code.
Saves current content of the EContentEditor into given file. When as_html
is FALSE
, the content is first converted into plain text.
| editor | an EHTMLEditor | |
| filename | file into which to save the content | |
| as_html | whether the content should be saved as HTML or plain text | |
| error | [out] a GError |