riched20: Implement GetStrikeThrough().

This commit is contained in:
Nikolay Sivov 2015-05-20 10:43:19 +03:00 committed by Alexandre Julliard
parent f875c804bd
commit 0f53b87367
1 changed files with 7 additions and 2 deletions

View File

@ -221,6 +221,7 @@ static inline BOOL is_equal_textfont_prop_value(enum textfont_prop_id propid, te
case FONT_BOLD:
case FONT_FORECOLOR:
case FONT_ITALIC:
case FONT_STRIKETHROUGH:
case FONT_UNDERLINE:
return left->l == right->l;
case FONT_SIZE:
@ -238,6 +239,7 @@ static inline void init_textfont_prop_value(enum textfont_prop_id propid, textfo
case FONT_BOLD:
case FONT_FORECOLOR:
case FONT_ITALIC:
case FONT_STRIKETHROUGH:
case FONT_UNDERLINE:
v->l = tomUndefined;
return;
@ -280,6 +282,9 @@ static HRESULT get_textfont_prop_for_pos(const IRichEditOleImpl *reole, int pos,
case FONT_SIZE:
value->f = fmt.yHeight;
break;
case FONT_STRIKETHROUGH:
value->l = fmt.dwEffects & CFE_STRIKEOUT ? tomTrue : tomFalse;
break;
case FONT_UNDERLINE:
value->l = fmt.dwEffects & CFE_UNDERLINE ? tomTrue : tomFalse;
break;
@ -2069,8 +2074,8 @@ static HRESULT WINAPI TextFont_SetSpacing(ITextFont *iface, FLOAT value)
static HRESULT WINAPI TextFont_GetStrikeThrough(ITextFont *iface, LONG *value)
{
ITextFontImpl *This = impl_from_ITextFont(iface);
FIXME("(%p)->(%p): stub\n", This, value);
return E_NOTIMPL;
TRACE("(%p)->(%p)\n", This, value);
return get_textfont_propl(This->range, FONT_STRIKETHROUGH, value);
}
static HRESULT WINAPI TextFont_SetStrikeThrough(ITextFont *iface, LONG value)