Description

Selection format

Fields

  • targets - For matching every possible atom
  • none - Content is from outside of EFL
  • text - Plain unformatted text: Used for things that don't want rich markup
  • markup - Edje textblock markup, including inline images
  • image - Images
  • vcard - Vcards
  • html - Raw HTML-like data (eg. webkit)

Signature

enum Efl.Ui.Selection_Format {
    targets: +1,
    none: 0,
    text: 1,
    markup: 2,
    image: 4,
    vcard: 8,
    html: 16
}

C signature

typedef enum {
    EFL_UI_SELECTION_FORMAT_TARGETS = -1 /* +1 */,
    EFL_UI_SELECTION_FORMAT_NONE = 0,
    EFL_UI_SELECTION_FORMAT_TEXT = 1,
    EFL_UI_SELECTION_FORMAT_MARKUP = 2,
    EFL_UI_SELECTION_FORMAT_IMAGE = 4,
    EFL_UI_SELECTION_FORMAT_VCARD = 8,
    EFL_UI_SELECTION_FORMAT_HTML = 16
} Efl_Ui_Selection_Format;