summaryrefslogtreecommitdiff
path: root/src/lib/efl/interfaces/efl_text_markup.eo
blob: 7e2bbaaaee5146e4e13def7a549ad2a9f881d3b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
interface Efl.Text_Markup(Efl.Text_Cursor) {
   [[Markup data that populates the text object's style and format

     @since 1.21
   ]]
   methods {
      @property markup {
         [[Markup property]]
         values {
            markup: string; [[The markup-text representation set to this text.]]
         }
      }
      cursor_markup_insert {
         [[Inserts a markup text to the text object in a given cursor position]]
         params {
            cur: ptr(Efl.Text_Cursor_Cursor); [[Cursor position to insert markup]]
            @in markup: string; [[The markup text to insert]]
         }
      }
   }
}