[][src]Struct winapi::um::dwrite::IDWriteTextAnalyzer

#[repr(C)]
pub struct IDWriteTextAnalyzer { pub lpVtbl: *const IDWriteTextAnalyzerVtbl, }

Fields

lpVtbl: *const IDWriteTextAnalyzerVtbl

Methods

impl IDWriteTextAnalyzer[src]

pub unsafe fn AnalyzeScript(
    &self,
    analysisSource: *mut IDWriteTextAnalysisSource,
    textPosition: UINT32,
    textLength: UINT32,
    analysisSink: *mut IDWriteTextAnalysisSink
) -> HRESULT
[src]

pub unsafe fn AnalyzeBidi(
    &self,
    analysisSource: *mut IDWriteTextAnalysisSource,
    textPosition: UINT32,
    textLength: UINT32,
    analysisSink: *mut IDWriteTextAnalysisSink
) -> HRESULT
[src]

pub unsafe fn AnalyzeNumberSubstitution(
    &self,
    analysisSource: *mut IDWriteTextAnalysisSource,
    textPosition: UINT32,
    textLength: UINT32,
    analysisSink: *mut IDWriteTextAnalysisSink
) -> HRESULT
[src]

pub unsafe fn AnalyzeLineBreakpoints(
    &self,
    analysisSource: *mut IDWriteTextAnalysisSource,
    textPosition: UINT32,
    textLength: UINT32,
    analysisSink: *mut IDWriteTextAnalysisSink
) -> HRESULT
[src]

pub unsafe fn GetGlyphs(
    &self,
    textString: *const WCHAR,
    textLength: UINT32,
    fontFace: *mut IDWriteFontFace,
    isSideways: BOOL,
    isRightToLeft: BOOL,
    scriptAnalysis: *const DWRITE_SCRIPT_ANALYSIS,
    localeName: *const WCHAR,
    numberSubstitution: *mut IDWriteNumberSubstitution,
    features: *mut *const DWRITE_TYPOGRAPHIC_FEATURES,
    featureRangeLengths: *const UINT32,
    featureRanges: UINT32,
    maxGlyphCount: UINT32,
    clusterMap: *mut UINT16,
    textProps: *mut DWRITE_SHAPING_TEXT_PROPERTIES,
    glyphIndices: *mut UINT16,
    glyphProps: *mut DWRITE_SHAPING_GLYPH_PROPERTIES,
    actualGlyphCount: *mut UINT32
) -> HRESULT
[src]

pub unsafe fn GetGlyphPlacements(
    &self,
    textString: *const WCHAR,
    clusterMap: *const UINT16,
    textProps: *mut DWRITE_SHAPING_TEXT_PROPERTIES,
    textLength: UINT32,
    glyphIndices: *const UINT16,
    glyphProps: *const DWRITE_SHAPING_GLYPH_PROPERTIES,
    glyphCount: UINT32,
    fontFace: *mut IDWriteFontFace,
    fontEmSize: FLOAT,
    isSideways: BOOL,
    isRightToLeft: BOOL,
    scriptAnalysis: *const DWRITE_SCRIPT_ANALYSIS,
    localeName: *const WCHAR,
    features: *mut *const DWRITE_TYPOGRAPHIC_FEATURES,
    featureRangeLengths: *const UINT32,
    featureRanges: UINT32,
    glyphAdvances: *mut FLOAT,
    glyphOffsets: *mut DWRITE_GLYPH_OFFSET
) -> HRESULT
[src]

pub unsafe fn GetGdiCompatibleGlyphPlacements(
    &self,
    textString: *const WCHAR,
    clusterMap: *const UINT16,
    textProps: *mut DWRITE_SHAPING_TEXT_PROPERTIES,
    textLength: UINT32,
    glyphIndices: *const UINT16,
    glyphProps: *const DWRITE_SHAPING_GLYPH_PROPERTIES,
    glyphCount: UINT32,
    fontFace: *mut IDWriteFontFace,
    fontEmSize: FLOAT,
    pixelsPerDip: FLOAT,
    transform: *const DWRITE_MATRIX,
    useGdiNatrual: BOOL,
    isSideways: BOOL,
    isRightToLeft: BOOL,
    scriptAnalysis: *const DWRITE_SCRIPT_ANALYSIS,
    localeName: *const WCHAR,
    features: *mut *const DWRITE_TYPOGRAPHIC_FEATURES,
    featureRangeLengths: *const UINT32,
    featureRanges: UINT32,
    glyphAdvances: *mut FLOAT,
    glyphOffsets: *mut DWRITE_GLYPH_OFFSET
) -> HRESULT
[src]

Methods from Deref<Target = IUnknown>

pub unsafe fn QueryInterface(
    &self,
    riid: REFIID,
    ppvObject: *mut *mut c_void
) -> HRESULT
[src]

pub unsafe fn AddRef(&self) -> ULONG[src]

pub unsafe fn Release(&self) -> ULONG[src]

Trait Implementations

impl Interface for IDWriteTextAnalyzer[src]

impl Deref for IDWriteTextAnalyzer[src]

type Target = IUnknown

The resulting type after dereferencing.

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]