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 () |
void | e_html_editor_save () |
gboolean | e_html_editor_save_finish () |
void | e_html_editor_add_cid_part () |
void | e_html_editor_remove_cid_part () |
void | e_html_editor_remove_all_cid_parts () |
CamelMimePart * | e_html_editor_ref_cid_part () |
GObject ╰── GInitiallyUnowned ╰── GtkWidget ╰── GtkContainer ╰── GtkGrid ╰── EHTMLEditor
void e_html_editor_new (GAsyncReadyCallback callback
,gpointer user_data
);
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
);
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
);
Returns instance of EContentEditor used in the editor
.
void e_html_editor_register_content_editor (EHTMLEditor *editor
,const gchar *name
,EContentEditor *cnt_editor
);
GtkUIManager *
e_html_editor_get_ui_manager (EHTMLEditor *editor
);
Returns GtkUIManager that manages all the actions in the editor
.
GtkAction * e_html_editor_get_action (EHTMLEditor *editor
,const gchar *action_name
);
GtkActionGroup * e_html_editor_get_action_group (EHTMLEditor *editor
,const gchar *group_name
);
GtkWidget * e_html_editor_get_widget (EHTMLEditor *editor
,const gchar *widget_name
);
GtkWidget * e_html_editor_get_managed_widget (EHTMLEditor *editor
,const gchar *widget_path
);
GtkWidget *
e_html_editor_get_style_combo_box (EHTMLEditor *editor
);
const gchar *
e_html_editor_get_filename (EHTMLEditor *editor
);
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
);
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
);
EActivity *
e_html_editor_new_activity (EHTMLEditor *editor
);
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
);
Inserts child
right between the toolbars and the editor widget itself.
void
e_html_editor_update_spell_actions (EHTMLEditor *editor
);
void e_html_editor_save (EHTMLEditor *editor
,const gchar *filename
,gboolean as_html
,GCancellable *cancellable
,GAsyncReadyCallback callback
,gpointer user_data
);
Starts an asynchronous save of the current content of the EContentEditor
into given file. When as_html
is FALSE
, the content is first converted
into plain text.
Finish the call with e_html_editor_save_finish()
from the callback
.
editor |
an EHTMLEditor |
|
filename |
file into which to save the content |
|
as_html |
whether the content should be saved as HTML or plain text |
|
cancellable |
an optional GCancellable, or |
|
callback |
a GAsyncReadyCallback to call when the save is finished. |
[scope async] |
user_data |
user data passed to |
[closure callback] |
Since: 3.38
gboolean e_html_editor_save_finish (EHTMLEditor *editor
,GAsyncResult *result
,GError **error
);
Finished the previous call of e_html_editor_save()
.
Since: 3.38
void e_html_editor_add_cid_part (EHTMLEditor *editor
,CamelMimePart *mime_part
);
Add the mime_part
with its Content-ID (if not set, one is assigned),
which can be later obtained with e_html_editor_ref_cid_part()
;
Since: 3.38
void e_html_editor_remove_cid_part (EHTMLEditor *editor
,const gchar *cid_uri
);
Removes CID part with given cid_uri
, previously added with
e_html_editor_add_cid_part()
. The function does nothing if no
such part is stored.
Since: 3.38
void
e_html_editor_remove_all_cid_parts (EHTMLEditor *editor
);
Removes all CID parts previously added with
e_html_editor_add_cid_part()
.
Since: 3.38
CamelMimePart * e_html_editor_ref_cid_part (EHTMLEditor *editor
,const gchar *cid_uri
);
References a CamelMimePart with given cid_uri
as Content ID, if
previously added with e_html_editor_add_cid_part()
. The cid_uri
should start with "cid:".
The returned non-NULL
object is references, thus it should be freed
with g_object_unref()
, when no longer needed.
editor |
an EHTMLEditor |
|
cid_uri |
a Content ID URI (starts with "cid:") to obtain the part for |
Since: 3.38
“filename”
property “filename” char *
Owner: EHTMLEditor
Flags: Read / Write
Default value: NULL
“paste-plain-prefer-pre”
property“paste-plain-prefer-pre” gboolean
Owner: EHTMLEditor
Flags: Read / Write
Default value: FALSE
“spell-languages-changed”
signalvoid user_function (EHTMLEditor *ehtmleditor, gpointer user_data)
Flags: Run Last
“update-actions”
signalvoid user_function (EHTMLEditor *ehtmleditor, guint arg1, char *arg2, gpointer user_data)
Flags: Run Last