e-util-enums

e-util-enums

Types and Values

Description

Functions

Types and Values

enum EActivityState

Various states of an EActivity.

Members

E_ACTIVITY_RUNNING

The EActivity is running.

 

E_ACTIVITY_WAITING

The EActivity is waiting to be run.

 

E_ACTIVITY_CANCELLED

The EActivity has been cancelled.

 

E_ACTIVITY_COMPLETED

The EActivity has completed.

 

enum EAutomaticActionPolicy

Used for automatable actions based on the user's preference. The user is initially asked whether to perform the action automatically, and is given either-or choices like "Yes, Always" or "No, Never". The user's response is then remembered for future sessions.

Members

E_AUTOMATIC_ACTION_POLICY_ASK

Ask the user whether to perform the action.

 

E_AUTOMATIC_ACTION_POLICY_ALWAYS

Perform the action without interrupting the user.

 

E_AUTOMATIC_ACTION_POLICY_NEVER

Do not perform the action and do not interrupt the user.

 

enum EDateWeekday

Enumeration representing a day of the week; E_DATE_MONDAY , E_DATE_TUESDAY , etc. G_DATE_BAD_WEEKDAY is an invalid weekday.

This enum type is intentionally compatible with GDateWeekday. It exists only because GLib does not provide a GEnumClass for GDateWeekday. If that ever changes, this enum can go away.

Members

E_DATE_BAD_WEEKDAY

Invalid value

 

E_DATE_MONDAY

Monday

 

E_DATE_TUESDAY

Tuesday

 

E_DATE_WEDNESDAY

Wednesday

 

E_DATE_THURSDAY

Thursday

 

E_DATE_FRIDAY

Friday

 

E_DATE_SATURDAY

Saturday

 

E_DATE_SUNDAY

Sunday

 

enum EDurationType

Possible units for a duration or interval value.

This enumeration is typically used where the numeric value and the units of the value are shown or recorded separately.

Members

E_DURATION_MINUTES

Duration value is in minutes.

 

E_DURATION_HOURS

Duration value is in hours.

 

E_DURATION_DAYS

Duration value is in days.

 

enum EHTMLEditorSelectionBlockFormat

Members

E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_NONE

   

E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_PARAGRAPH

   

E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_PRE

   

E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ADDRESS

   

E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_BLOCKQUOTE

   

E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H1

   

E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H2

   

E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H3

   

E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H4

   

E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H5

   

E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_H6

   

E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_UNORDERED_LIST

   

E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST

   

E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ROMAN

   

E_HTML_EDITOR_SELECTION_BLOCK_FORMAT_ORDERED_LIST_ALPHA

   

enum EHTMLEditorSelectionFontSize

Members

E_HTML_EDITOR_SELECTION_FONT_SIZE_TINY

   

E_HTML_EDITOR_SELECTION_FONT_SIZE_SMALL

   

E_HTML_EDITOR_SELECTION_FONT_SIZE_NORMAL

   

E_HTML_EDITOR_SELECTION_FONT_SIZE_BIG

   

E_HTML_EDITOR_SELECTION_FONT_SIZE_BIGGER

   

E_HTML_EDITOR_SELECTION_FONT_SIZE_LARGE

   

E_HTML_EDITOR_SELECTION_FONT_SIZE_VERY_LARGE

   

enum EHTMLEditorSelectionAlignment

Members

E_HTML_EDITOR_SELECTION_ALIGNMENT_LEFT

   

E_HTML_EDITOR_SELECTION_ALIGNMENT_CENTER

   

E_HTML_EDITOR_SELECTION_ALIGNMENT_RIGHT

   

enum EHTMLEditorSelectionGranularity

Members

E_HTML_EDITOR_SELECTION_GRANULARITY_CHARACTER

   

E_HTML_EDITOR_SELECTION_GRANULARITY_WORD

   

enum EHTMLEditorViewCommand

Specifies the DOM command to execute in e_editor_widget_exec_command(). Some commands require value to be passed in, which is always stated in the documentation.

Members

E_HTML_EDITOR_VIEW_COMMAND_BACKGROUND_COLOR

Sets background color to given value.

 

E_HTML_EDITOR_VIEW_COMMAND_BOLD

Toggles bold formatting of current selection.

 

E_HTML_EDITOR_VIEW_COMMAND_COPY

Copies current selection to clipboard.

 

E_HTML_EDITOR_VIEW_COMMAND_CREATE_LINK

Converts current selection to a link that points to URL in value

 

E_HTML_EDITOR_VIEW_COMMAND_CUT

Cuts current selection to clipboard.

 

E_HTML_EDITOR_VIEW_COMMAND_DEFAULT_PARAGRAPH_SEPARATOR

.

[XXX Explain me!]

E_HTML_EDITOR_VIEW_COMMAND_DELETE

Deletes current selection.

 

E_HTML_EDITOR_VIEW_COMMAND_FIND_STRING

Highlights given string.

 

E_HTML_EDITOR_VIEW_COMMAND_FONT_NAME

Sets font name to given value.

 

E_HTML_EDITOR_VIEW_COMMAND_FONT_SIZE

Sets font point size to given value (no units, just number)

 

E_HTML_EDITOR_VIEW_COMMAND_FONT_SIZE_DELTA

Changes font size by given delta value (no units, just number)

 

E_HTML_EDITOR_VIEW_COMMAND_FORE_COLOR

Sets font color to given value

 

E_HTML_EDITOR_VIEW_COMMAND_FORMAT_BLOCK

Sets block type of current paragraph to given format. Allowed formats are "BLOCKQUOTE", "H1", "H2", "H3", "H4", "H5", "H6", "P", "PRE" and "ADDRESS".

 

E_HTML_EDITOR_VIEW_COMMAND_FORWARD_DELETE

.

[XXX Explain me!]

E_HTML_EDITOR_VIEW_COMMAND_HILITE_COLOR

Sets color in which results of "FindString" command should be highlighted to given value.

 

E_HTML_EDITOR_VIEW_COMMAND_INDENT

Indents current paragraph by one level.

 

E_HTML_EDITOR_VIEW_COMMAND_INSERT_HTML

Inserts give HTML code into document.

 

E_HTML_EDITOR_VIEW_COMMAND_INSERT_HORIZONTAL_RULE

Inserts a horizontal rule (<HR>) on current line.

 

E_HTML_EDITOR_VIEW_COMMAND_INSERT_IMAGE

Inserts an image with given source file.

 

E_HTML_EDITOR_VIEW_COMMAND_INSERT_LINE_BREAK

Breaks line at current cursor position.

 

E_HTML_EDITOR_VIEW_COMMAND_INSERT_NEW_LINE_IN_QUOTED_CONTENT

Breaks citation at current cursor position.

 

E_HTML_EDITOR_VIEW_COMMAND_INSERT_ORDERED_LIST

Creates an ordered list environment at current cursor position.

 

E_HTML_EDITOR_VIEW_COMMAND_INSERT_PARAGRAPH

Inserts a new paragraph at current cursor position.

 

E_HTML_EDITOR_VIEW_COMMAND_INSERT_TEXT

Inserts given text at current cursor position.

 

E_HTML_EDITOR_VIEW_COMMAND_INSERT_UNORDERED_LIST

Creates an undordered list environment at current cursor position.

 

E_HTML_EDITOR_VIEW_COMMAND_ITALIC

Toggles italic formatting of current selection.

 

E_HTML_EDITOR_VIEW_COMMAND_JUSTIFY_CENTER

Aligns current paragraph to center.

 

E_HTML_EDITOR_VIEW_COMMAND_JUSTIFY_FULL

Justifies current paragraph to block.

 

E_HTML_EDITOR_VIEW_COMMAND_JUSTIFY_LEFT

   

E_HTML_EDITOR_VIEW_COMMAND_JUSTIFY_NONE

Removes any justification or alignment of current paragraph.

 

E_HTML_EDITOR_VIEW_COMMAND_JUSTIFY_RIGHT

Aligns current paragraph to right.

 

E_HTML_EDITOR_VIEW_COMMAND_OUTDENT

Outdents current paragraph by one level.

 

E_HTML_EDITOR_VIEW_COMMAND_PASTE

Pastes clipboard content at current cursor position.

 

E_HTML_EDITOR_VIEW_COMMAND_PASTE_AND_MATCH_STYLE

Pastes clipboard content and matches its style to style at current cursor position.

 

E_HTML_EDITOR_VIEW_COMMAND_PASTE_AS_PLAIN_TEXT

Pastes clipboard content at current cursor position removing any HTML formatting.

 

E_HTML_EDITOR_VIEW_COMMAND_PRINT

Print current document.

 

E_HTML_EDITOR_VIEW_COMMAND_REDO

Redoes last action.

 

E_HTML_EDITOR_VIEW_COMMAND_REMOVE_FORMAT

Removes any formatting of current selection.

 

E_HTML_EDITOR_VIEW_COMMAND_SELECT_ALL

Extends selects to the entire document.

 

E_HTML_EDITOR_VIEW_COMMAND_STRIKETHROUGH

Toggles strikethrough formatting.

 

E_HTML_EDITOR_VIEW_COMMAND_STYLE_WITH_CSS

Toggles whether style should be defined in CSS "style" attribute of elements or whether to use deprecated <FONT> tags. Depends on whether given value is "true" or "false".

 

E_HTML_EDITOR_VIEW_COMMAND_SUBSCRIPT

Toggles subscript of current selection.

 

E_HTML_EDITOR_VIEW_COMMAND_SUPERSCRIPT

Toggles superscript of current selection.

 

E_HTML_EDITOR_VIEW_COMMAND_TRANSPOSE

.

[XXX Explain me!]

E_HTML_EDITOR_VIEW_COMMAND_UNDERLINE

Toggles underline formatting of current selection.

 

E_HTML_EDITOR_VIEW_COMMAND_UNDO

Undoes last action.

 

E_HTML_EDITOR_VIEW_COMMAND_UNLINK

Removes active links (<A>) from current selection (if there's any).

 

E_HTML_EDITOR_VIEW_COMMAND_UNSELECT

Cancels current selection.

 

E_HTML_EDITOR_VIEW_COMMAND_USE_CSS

Whether to allow use of CSS or not depending on whether given value is "true" or "false".

 

enum EImageLoadingPolicy

Policy for loading remote image URLs in email. Allowing images to be loaded from a remote server may have privacy implications.

Members

E_IMAGE_LOADING_POLICY_NEVER

Never load images from a remote server.

 

E_IMAGE_LOADING_POLICY_SOMETIMES

Only load images from a remote server if the sender is a known contact.

 

E_IMAGE_LOADING_POLICY_ALWAYS

Always load images from a remote server.