1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
//
// DO NOT EDIT.  THIS FILE IS GENERATED FROM ../../../dist/idl/nsIAccessibleText.idl
//


/// `typedef int32_t  AccessibleTextBoundary;`
///


pub type AccessibleTextBoundary = libc::int32_t;


/// `interface nsIAccessibleText : nsISupports`
///


// The actual type definition for the interface. This struct has methods
// declared on it which will call through its vtable. You never want to pass
// this type around by value, always pass it behind a reference.

#[repr(C)]
pub struct nsIAccessibleText {
    vtable: *const nsIAccessibleTextVTable,

    /// This field is a phantomdata to ensure that the VTable type and any
    /// struct containing it is not safe to send across threads, as XPCOM is
    /// generally not threadsafe.
    ///
    /// XPCOM interfaces in general are not safe to send across threads.
    __nosync: ::std::marker::PhantomData<::std::rc::Rc<u8>>,
}

// Implementing XpCom for an interface exposes its IID, which allows for easy
// use of the `.query_interface<T>` helper method. This also defines that
// method for nsIAccessibleText.
unsafe impl XpCom for nsIAccessibleText {
    const IID: nsIID = nsID(0x93ad2ca1, 0xf12b, 0x4ab9,
        [0xa7, 0x93, 0x95, 0xd9, 0xfa, 0x9d, 0x17, 0x74]);
}

// We need to implement the RefCounted trait so we can be used with `RefPtr`.
// This trait teaches `RefPtr` how to manage our memory.
unsafe impl RefCounted for nsIAccessibleText {
    #[inline]
    unsafe fn addref(&self) {
        self.AddRef();
    }
    #[inline]
    unsafe fn release(&self) {
        self.Release();
    }
}

// This trait is implemented on all types which can be coerced to from nsIAccessibleText.
// It is used in the implementation of `fn coerce<T>`. We hide it from the
// documentation, because it clutters it up a lot.
#[doc(hidden)]
pub trait nsIAccessibleTextCoerce {
    /// Cheaply cast a value of this type from a `nsIAccessibleText`.
    fn coerce_from(v: &nsIAccessibleText) -> &Self;
}

// The trivial implementation: We can obviously coerce ourselves to ourselves.
impl nsIAccessibleTextCoerce for nsIAccessibleText {
    #[inline]
    fn coerce_from(v: &nsIAccessibleText) -> &Self {
        v
    }
}

impl nsIAccessibleText {
    /// Cast this `nsIAccessibleText` to one of its base interfaces.
    #[inline]
    pub fn coerce<T: nsIAccessibleTextCoerce>(&self) -> &T {
        T::coerce_from(self)
    }
}

// Every interface struct type implements `Deref` to its base interface. This
// causes methods on the base interfaces to be directly avaliable on the
// object. For example, you can call `.AddRef` or `.QueryInterface` directly
// on any interface which inherits from `nsISupports`.
impl ::std::ops::Deref for nsIAccessibleText {
    type Target = nsISupports;
    #[inline]
    fn deref(&self) -> &nsISupports {
        unsafe {
            ::std::mem::transmute(self)
        }
    }
}

// Ensure we can use .coerce() to cast to our base types as well. Any type which
// our base interface can coerce from should be coercable from us as well.
impl<T: nsISupportsCoerce> nsIAccessibleTextCoerce for T {
    #[inline]
    fn coerce_from(v: &nsIAccessibleText) -> &Self {
        T::coerce_from(v)
    }
}

// This struct represents the interface's VTable. A pointer to a statically
// allocated version of this struct is at the beginning of every nsIAccessibleText
// object. It contains one pointer field for each method in the interface. In
// the case where we can't generate a binding for a method, we include a void
// pointer.
#[doc(hidden)]
#[repr(C)]
pub struct nsIAccessibleTextVTable {
    /// We need to include the members from the base interface's vtable at the start
    /// of the VTable definition.
    pub __base: nsISupportsVTable,

    /* attribute long caretOffset; */
    pub GetCaretOffset: unsafe extern "system" fn (this: *const nsIAccessibleText, aCaretOffset: *mut libc::int32_t) -> nsresult,

    /* attribute long caretOffset; */
    pub SetCaretOffset: unsafe extern "system" fn (this: *const nsIAccessibleText, aCaretOffset: libc::int32_t) -> nsresult,

    /* readonly attribute long characterCount; */
    pub GetCharacterCount: unsafe extern "system" fn (this: *const nsIAccessibleText, aCharacterCount: *mut libc::int32_t) -> nsresult,

    /* readonly attribute long selectionCount; */
    pub GetSelectionCount: unsafe extern "system" fn (this: *const nsIAccessibleText, aSelectionCount: *mut libc::int32_t) -> nsresult,

    /* AString getText (in long startOffset, in long endOffset); */
    pub GetText: unsafe extern "system" fn (this: *const nsIAccessibleText, startOffset: libc::int32_t, endOffset: libc::int32_t, _retval: &mut ::nsstring::nsAString) -> nsresult,

    /* AString getTextAfterOffset (in long offset, in AccessibleTextBoundary boundaryType, out long startOffset, out long endOffset); */
    pub GetTextAfterOffset: unsafe extern "system" fn (this: *const nsIAccessibleText, offset: libc::int32_t, boundaryType: AccessibleTextBoundary, startOffset: *mut libc::int32_t, endOffset: *mut libc::int32_t, _retval: &mut ::nsstring::nsAString) -> nsresult,

    /* AString getTextAtOffset (in long offset, in AccessibleTextBoundary boundaryType, out long startOffset, out long endOffset); */
    pub GetTextAtOffset: unsafe extern "system" fn (this: *const nsIAccessibleText, offset: libc::int32_t, boundaryType: AccessibleTextBoundary, startOffset: *mut libc::int32_t, endOffset: *mut libc::int32_t, _retval: &mut ::nsstring::nsAString) -> nsresult,

    /* AString getTextBeforeOffset (in long offset, in AccessibleTextBoundary boundaryType, out long startOffset, out long endOffset); */
    pub GetTextBeforeOffset: unsafe extern "system" fn (this: *const nsIAccessibleText, offset: libc::int32_t, boundaryType: AccessibleTextBoundary, startOffset: *mut libc::int32_t, endOffset: *mut libc::int32_t, _retval: &mut ::nsstring::nsAString) -> nsresult,

    /* wchar getCharacterAtOffset (in long offset); */
    pub GetCharacterAtOffset: unsafe extern "system" fn (this: *const nsIAccessibleText, offset: libc::int32_t, _retval: *mut libc::int16_t) -> nsresult,

    /* nsIPersistentProperties getTextAttributes (in boolean includeDefAttrs, in long offset, out long rangeStartOffset, out long rangeEndOffset); */
    pub GetTextAttributes: unsafe extern "system" fn (this: *const nsIAccessibleText, includeDefAttrs: bool, offset: libc::int32_t, rangeStartOffset: *mut libc::int32_t, rangeEndOffset: *mut libc::int32_t, _retval: *mut *const nsIPersistentProperties) -> nsresult,

    /* readonly attribute nsIPersistentProperties defaultTextAttributes; */
    pub GetDefaultTextAttributes: unsafe extern "system" fn (this: *const nsIAccessibleText, aDefaultTextAttributes: *mut *const nsIPersistentProperties) -> nsresult,

    /* void getCharacterExtents (in long offset, out long x, out long y, out long width, out long height, in unsigned long coordType); */
    pub GetCharacterExtents: unsafe extern "system" fn (this: *const nsIAccessibleText, offset: libc::int32_t, x: *mut libc::int32_t, y: *mut libc::int32_t, width: *mut libc::int32_t, height: *mut libc::int32_t, coordType: libc::uint32_t) -> nsresult,

    /* void getRangeExtents (in long startOffset, in long endOffset, out long x, out long y, out long width, out long height, in unsigned long coordType); */
    pub GetRangeExtents: unsafe extern "system" fn (this: *const nsIAccessibleText, startOffset: libc::int32_t, endOffset: libc::int32_t, x: *mut libc::int32_t, y: *mut libc::int32_t, width: *mut libc::int32_t, height: *mut libc::int32_t, coordType: libc::uint32_t) -> nsresult,

    /* long getOffsetAtPoint (in long x, in long y, in unsigned long coordType); */
    pub GetOffsetAtPoint: unsafe extern "system" fn (this: *const nsIAccessibleText, x: libc::int32_t, y: libc::int32_t, coordType: libc::uint32_t, _retval: *mut libc::int32_t) -> nsresult,

    /* void getSelectionBounds (in long selectionNum, out long startOffset, out long endOffset); */
    pub GetSelectionBounds: unsafe extern "system" fn (this: *const nsIAccessibleText, selectionNum: libc::int32_t, startOffset: *mut libc::int32_t, endOffset: *mut libc::int32_t) -> nsresult,

    /* void setSelectionBounds (in long selectionNum, in long startOffset, in long endOffset); */
    pub SetSelectionBounds: unsafe extern "system" fn (this: *const nsIAccessibleText, selectionNum: libc::int32_t, startOffset: libc::int32_t, endOffset: libc::int32_t) -> nsresult,

    /* void addSelection (in long startOffset, in long endOffset); */
    pub AddSelection: unsafe extern "system" fn (this: *const nsIAccessibleText, startOffset: libc::int32_t, endOffset: libc::int32_t) -> nsresult,

    /* void removeSelection (in long selectionNum); */
    pub RemoveSelection: unsafe extern "system" fn (this: *const nsIAccessibleText, selectionNum: libc::int32_t) -> nsresult,

    /* void scrollSubstringTo (in long startIndex, in long endIndex, in unsigned long scrollType); */
    pub ScrollSubstringTo: unsafe extern "system" fn (this: *const nsIAccessibleText, startIndex: libc::int32_t, endIndex: libc::int32_t, scrollType: libc::uint32_t) -> nsresult,

    /* void scrollSubstringToPoint (in long startIndex, in long endIndex, in unsigned long coordinateType, in long x, in long y); */
    pub ScrollSubstringToPoint: unsafe extern "system" fn (this: *const nsIAccessibleText, startIndex: libc::int32_t, endIndex: libc::int32_t, coordinateType: libc::uint32_t, x: libc::int32_t, y: libc::int32_t) -> nsresult,

    /* readonly attribute nsIAccessibleTextRange enclosingRange; */
    pub GetEnclosingRange: unsafe extern "system" fn (this: *const nsIAccessibleText, aEnclosingRange: *mut *const nsIAccessibleTextRange) -> nsresult,

    /* readonly attribute nsIArray selectionRanges; */
    pub GetSelectionRanges: unsafe extern "system" fn (this: *const nsIAccessibleText, aSelectionRanges: *mut *const nsIArray) -> nsresult,

    /* readonly attribute nsIArray visibleRanges; */
    pub GetVisibleRanges: unsafe extern "system" fn (this: *const nsIAccessibleText, aVisibleRanges: *mut *const nsIArray) -> nsresult,

    /* nsIAccessibleTextRange getRangeByChild (in nsIAccessible child); */
    pub GetRangeByChild: unsafe extern "system" fn (this: *const nsIAccessibleText, child: *const nsIAccessible, _retval: *mut *const nsIAccessibleTextRange) -> nsresult,

    /* nsIAccessibleTextRange getRangeAtPoint (in long x, in long y); */
    pub GetRangeAtPoint: unsafe extern "system" fn (this: *const nsIAccessibleText, x: libc::int32_t, y: libc::int32_t, _retval: *mut *const nsIAccessibleTextRange) -> nsresult,
}


// The implementations of the function wrappers which are exposed to rust code.
// Call these methods rather than manually calling through the VTable struct.
impl nsIAccessibleText {

    pub const TEXT_OFFSET_END_OF_TEXT: i64 = -1;


    pub const TEXT_OFFSET_CARET: i64 = -2;


    pub const BOUNDARY_CHAR: i64 = 0;


    pub const BOUNDARY_WORD_START: i64 = 1;


    pub const BOUNDARY_WORD_END: i64 = 2;


    pub const BOUNDARY_SENTENCE_START: i64 = 3;


    pub const BOUNDARY_SENTENCE_END: i64 = 4;


    pub const BOUNDARY_LINE_START: i64 = 5;


    pub const BOUNDARY_LINE_END: i64 = 6;

    /// ```text
    /// /**
    ///    * The current current caret offset.
    ///    * If set < 0 then caret will be placed  at the end of the text
    ///    */
    /// ```
    ///

    /// `attribute long caretOffset;`
    #[inline]
    pub unsafe fn GetCaretOffset(&self, aCaretOffset: *mut libc::int32_t) -> nsresult {
        ((*self.vtable).GetCaretOffset)(self, aCaretOffset)
    }


    /// ```text
    /// /**
    ///    * The current current caret offset.
    ///    * If set < 0 then caret will be placed  at the end of the text
    ///    */
    /// ```
    ///

    /// `attribute long caretOffset;`
    #[inline]
    pub unsafe fn SetCaretOffset(&self, aCaretOffset: libc::int32_t) -> nsresult {
        ((*self.vtable).SetCaretOffset)(self, aCaretOffset)
    }



    /// `readonly attribute long characterCount;`
    #[inline]
    pub unsafe fn GetCharacterCount(&self, aCharacterCount: *mut libc::int32_t) -> nsresult {
        ((*self.vtable).GetCharacterCount)(self, aCharacterCount)
    }



    /// `readonly attribute long selectionCount;`
    #[inline]
    pub unsafe fn GetSelectionCount(&self, aSelectionCount: *mut libc::int32_t) -> nsresult {
        ((*self.vtable).GetSelectionCount)(self, aSelectionCount)
    }


    /// ```text
    /// /**
    ///       * String methods may need to return multibyte-encoded strings,
    ///       * since some locales can't be encoded using 16-bit chars.
    ///       * So the methods below might return UTF-16 strings, or they could
    ///       * return "string" values which are UTF-8.
    ///       */
    /// ```
    ///

    /// `AString getText (in long startOffset, in long endOffset);`
    #[inline]
    pub unsafe fn GetText(&self, startOffset: libc::int32_t, endOffset: libc::int32_t, _retval: &mut ::nsstring::nsAString) -> nsresult {
        ((*self.vtable).GetText)(self, startOffset, endOffset, _retval)
    }



    /// `AString getTextAfterOffset (in long offset, in AccessibleTextBoundary boundaryType, out long startOffset, out long endOffset);`
    #[inline]
    pub unsafe fn GetTextAfterOffset(&self, offset: libc::int32_t, boundaryType: AccessibleTextBoundary, startOffset: *mut libc::int32_t, endOffset: *mut libc::int32_t, _retval: &mut ::nsstring::nsAString) -> nsresult {
        ((*self.vtable).GetTextAfterOffset)(self, offset, boundaryType, startOffset, endOffset, _retval)
    }



    /// `AString getTextAtOffset (in long offset, in AccessibleTextBoundary boundaryType, out long startOffset, out long endOffset);`
    #[inline]
    pub unsafe fn GetTextAtOffset(&self, offset: libc::int32_t, boundaryType: AccessibleTextBoundary, startOffset: *mut libc::int32_t, endOffset: *mut libc::int32_t, _retval: &mut ::nsstring::nsAString) -> nsresult {
        ((*self.vtable).GetTextAtOffset)(self, offset, boundaryType, startOffset, endOffset, _retval)
    }



    /// `AString getTextBeforeOffset (in long offset, in AccessibleTextBoundary boundaryType, out long startOffset, out long endOffset);`
    #[inline]
    pub unsafe fn GetTextBeforeOffset(&self, offset: libc::int32_t, boundaryType: AccessibleTextBoundary, startOffset: *mut libc::int32_t, endOffset: *mut libc::int32_t, _retval: &mut ::nsstring::nsAString) -> nsresult {
        ((*self.vtable).GetTextBeforeOffset)(self, offset, boundaryType, startOffset, endOffset, _retval)
    }


    /// ```text
    /// /**
    ///       * It would be better to return an unsigned long here,
    ///       * to allow unicode chars > 16 bits
    ///       */
    /// ```
    ///

    /// `wchar getCharacterAtOffset (in long offset);`
    #[inline]
    pub unsafe fn GetCharacterAtOffset(&self, offset: libc::int32_t, _retval: *mut libc::int16_t) -> nsresult {
        ((*self.vtable).GetCharacterAtOffset)(self, offset, _retval)
    }


    /// ```text
    /// /**
    ///    * Get the accessible start/end offsets around the given offset,
    ///    * return the text attributes for this range of text.
    ///    *
    ///    * @param  includeDefAttrs   [in] points whether text attributes applied to
    ///    *                           the entire accessible should be included or not.
    ///    * @param  offset            [in] text offset
    ///    * @param  rangeStartOffset  [out] start offset of the range of text
    ///    * @param  rangeEndOffset    [out] end offset of the range of text
    ///    */
    /// ```
    ///

    /// `nsIPersistentProperties getTextAttributes (in boolean includeDefAttrs, in long offset, out long rangeStartOffset, out long rangeEndOffset);`
    #[inline]
    pub unsafe fn GetTextAttributes(&self, includeDefAttrs: bool, offset: libc::int32_t, rangeStartOffset: *mut libc::int32_t, rangeEndOffset: *mut libc::int32_t, _retval: *mut *const nsIPersistentProperties) -> nsresult {
        ((*self.vtable).GetTextAttributes)(self, includeDefAttrs, offset, rangeStartOffset, rangeEndOffset, _retval)
    }


    /// ```text
    /// /**
    ///    * Return the text attributes that apply to the entire accessible.
    ///    */
    /// ```
    ///

    /// `readonly attribute nsIPersistentProperties defaultTextAttributes;`
    #[inline]
    pub unsafe fn GetDefaultTextAttributes(&self, aDefaultTextAttributes: *mut *const nsIPersistentProperties) -> nsresult {
        ((*self.vtable).GetDefaultTextAttributes)(self, aDefaultTextAttributes)
    }


    /// ```text
    /// /**
    ///    * Returns the bounding box of the specified position.
    ///    *
    ///    * The virtual character after the last character of the represented text,
    ///    * i.e. the one at position length is a special case. It represents the
    ///    * current input position and will therefore typically be queried by AT more
    ///    * often than other positions. Because it does not represent an existing
    ///    * character its bounding box is defined in relation to preceding characters.
    ///    * It should be roughly equivalent to the bounding box of some character when
    ///    * inserted at the end of the text. Its height typically being the maximal
    ///    * height of all the characters in the text or the height of the preceding
    ///    * character, its width being at least one pixel so that the bounding box is
    ///    * not degenerate.
    ///    *
    ///    * @param offset - Index of the character for which to return its bounding
    ///    *                  box. The valid range is 0..length.
    ///    * @param x - X coordinate of the bounding box of the referenced character.
    ///    * @param y - Y coordinate of the bounding box of the referenced character.
    ///    * @param width - Width of the bounding box of the referenced character.
    ///    * @param height - Height of the bounding box of the referenced character.
    ///    * @param coordType - Specifies if the coordinates are relative to the screen
    ///    *                    or to the parent window (see constants declared in
        ///    *                    nsIAccessibleCoordinateType).
    ///   */
    /// ```
    ///

    /// `void getCharacterExtents (in long offset, out long x, out long y, out long width, out long height, in unsigned long coordType);`
    #[inline]
    pub unsafe fn GetCharacterExtents(&self, offset: libc::int32_t, x: *mut libc::int32_t, y: *mut libc::int32_t, width: *mut libc::int32_t, height: *mut libc::int32_t, coordType: libc::uint32_t) -> nsresult {
        ((*self.vtable).GetCharacterExtents)(self, offset, x, y, width, height, coordType)
    }



    /// `void getRangeExtents (in long startOffset, in long endOffset, out long x, out long y, out long width, out long height, in unsigned long coordType);`
    #[inline]
    pub unsafe fn GetRangeExtents(&self, startOffset: libc::int32_t, endOffset: libc::int32_t, x: *mut libc::int32_t, y: *mut libc::int32_t, width: *mut libc::int32_t, height: *mut libc::int32_t, coordType: libc::uint32_t) -> nsresult {
        ((*self.vtable).GetRangeExtents)(self, startOffset, endOffset, x, y, width, height, coordType)
    }


    /// ```text
    /// /**
    ///    * Get the text offset at the given point, or return -1
    ///    * if no character exists at that point
    ///    *
    ///    * @param x - The position's x value for which to look up the index of the
    ///    *            character that is rendered on to the display at that point.
    ///    * @param y - The position's y value for which to look up the index of the
    ///    *            character that is rendered on to the display at that point.
    ///    * @param coordType - Screen coordinates or window coordinates (see constants
        ///    *                    declared in nsIAccessibleCoordinateType).
    ///    * @return offset - Index of the character under the given point or -1 if
    ///    *                  the point is invalid or there is no character under
    ///    *                  the point.
    ///    */
    /// ```
    ///

    /// `long getOffsetAtPoint (in long x, in long y, in unsigned long coordType);`
    #[inline]
    pub unsafe fn GetOffsetAtPoint(&self, x: libc::int32_t, y: libc::int32_t, coordType: libc::uint32_t, _retval: *mut libc::int32_t) -> nsresult {
        ((*self.vtable).GetOffsetAtPoint)(self, x, y, coordType, _retval)
    }



    /// `void getSelectionBounds (in long selectionNum, out long startOffset, out long endOffset);`
    #[inline]
    pub unsafe fn GetSelectionBounds(&self, selectionNum: libc::int32_t, startOffset: *mut libc::int32_t, endOffset: *mut libc::int32_t) -> nsresult {
        ((*self.vtable).GetSelectionBounds)(self, selectionNum, startOffset, endOffset)
    }


    /// ```text
    /// /**
    ///    * Set the bounds for the given selection range
    ///    */
    /// ```
    ///

    /// `void setSelectionBounds (in long selectionNum, in long startOffset, in long endOffset);`
    #[inline]
    pub unsafe fn SetSelectionBounds(&self, selectionNum: libc::int32_t, startOffset: libc::int32_t, endOffset: libc::int32_t) -> nsresult {
        ((*self.vtable).SetSelectionBounds)(self, selectionNum, startOffset, endOffset)
    }



    /// `void addSelection (in long startOffset, in long endOffset);`
    #[inline]
    pub unsafe fn AddSelection(&self, startOffset: libc::int32_t, endOffset: libc::int32_t) -> nsresult {
        ((*self.vtable).AddSelection)(self, startOffset, endOffset)
    }



    /// `void removeSelection (in long selectionNum);`
    #[inline]
    pub unsafe fn RemoveSelection(&self, selectionNum: libc::int32_t) -> nsresult {
        ((*self.vtable).RemoveSelection)(self, selectionNum)
    }


    /// ```text
    /// /**
    ///    * Makes a specific part of string visible on screen.
    ///    *
    ///    * @param startIndex  0-based character offset
    ///    * @param endIndex    0-based character offset - the offset of the
    ///    *                    character just past the last character of the
    ///    *                    string
    ///    * @param scrollType  defines how to scroll (see nsIAccessibleScrollType for
        ///    *                    available constants)
    ///    */
    /// ```
    ///

    /// `void scrollSubstringTo (in long startIndex, in long endIndex, in unsigned long scrollType);`
    #[inline]
    pub unsafe fn ScrollSubstringTo(&self, startIndex: libc::int32_t, endIndex: libc::int32_t, scrollType: libc::uint32_t) -> nsresult {
        ((*self.vtable).ScrollSubstringTo)(self, startIndex, endIndex, scrollType)
    }


    /// ```text
    /// /**
    ///    * Moves the top left of a substring to a specified location.
    ///    *
    ///    * @param startIndex      0-based character offset
    ///    * @param endIndex        0-based character offset - the offset of the
    ///    *                        character just past the last character of
    ///    *                        the string
    ///    * @param coordinateType  specifies the coordinates origin (for available
        ///    *                        constants refer to nsIAccessibleCoordinateType)
    ///    * @param x               defines the x coordinate
    ///    * @param y               defines the y coordinate
    ///    */
    /// ```
    ///

    /// `void scrollSubstringToPoint (in long startIndex, in long endIndex, in unsigned long coordinateType, in long x, in long y);`
    #[inline]
    pub unsafe fn ScrollSubstringToPoint(&self, startIndex: libc::int32_t, endIndex: libc::int32_t, coordinateType: libc::uint32_t, x: libc::int32_t, y: libc::int32_t) -> nsresult {
        ((*self.vtable).ScrollSubstringToPoint)(self, startIndex, endIndex, coordinateType, x, y)
    }


    /// ```text
    /// /**
    ///    * Return a range that encloses this text control or otherwise the document
    ///    * this text accessible belongs to.
    ///    */
    /// ```
    ///

    /// `readonly attribute nsIAccessibleTextRange enclosingRange;`
    #[inline]
    pub unsafe fn GetEnclosingRange(&self, aEnclosingRange: *mut *const nsIAccessibleTextRange) -> nsresult {
        ((*self.vtable).GetEnclosingRange)(self, aEnclosingRange)
    }


    /// ```text
    /// /**
    ///    * Return an array of disjoint ranges for selected text within the text control
    ///    * or otherwise the document this accessible belongs to.
    ///    */
    /// ```
    ///

    /// `readonly attribute nsIArray selectionRanges;`
    #[inline]
    pub unsafe fn GetSelectionRanges(&self, aSelectionRanges: *mut *const nsIArray) -> nsresult {
        ((*self.vtable).GetSelectionRanges)(self, aSelectionRanges)
    }


    /// ```text
    /// /**
    ///    * Return an array of disjoint ranges of visible text within the text control
    ///    * or otherwise the document this accessible belongs to.
    ///    */
    /// ```
    ///

    /// `readonly attribute nsIArray visibleRanges;`
    #[inline]
    pub unsafe fn GetVisibleRanges(&self, aVisibleRanges: *mut *const nsIArray) -> nsresult {
        ((*self.vtable).GetVisibleRanges)(self, aVisibleRanges)
    }


    /// ```text
    /// /**
    ///    * Return a range containing the given accessible.
    ///    */
    /// ```
    ///

    /// `nsIAccessibleTextRange getRangeByChild (in nsIAccessible child);`
    #[inline]
    pub unsafe fn GetRangeByChild(&self, child: *const nsIAccessible, _retval: *mut *const nsIAccessibleTextRange) -> nsresult {
        ((*self.vtable).GetRangeByChild)(self, child, _retval)
    }


    /// ```text
    /// /**
    ///    * Return a range containing an accessible at the given point.
    ///    */
    /// ```
    ///

    /// `nsIAccessibleTextRange getRangeAtPoint (in long x, in long y);`
    #[inline]
    pub unsafe fn GetRangeAtPoint(&self, x: libc::int32_t, y: libc::int32_t, _retval: *mut *const nsIAccessibleTextRange) -> nsresult {
        ((*self.vtable).GetRangeAtPoint)(self, x, y, _retval)
    }


}