2008-11-11 20:08:53 +01:00
/*
* Unit test suite for windowless rich edit controls
*
* Copyright 2008 Maarten Lankhorst
* Copyright 2008 Austin Lund
* Copyright 2008 Dylan Smith
*
* This library is free software ; you can redistribute it and / or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation ; either
* version 2.1 of the License , or ( at your option ) any later version .
*
* This library is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
* Lesser General Public License for more details .
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library ; if not , write to the Free Software
* Foundation , Inc . , 51 Franklin St , Fifth Floor , Boston , MA 02110 - 1301 , USA
*/
# define COBJMACROS
2012-03-28 00:35:47 +02:00
# define CONST_VTABLE
2008-11-11 20:08:53 +01:00
# include <stdio.h>
# include <stdarg.h>
# include <windef.h>
# include <winbase.h>
# include <objbase.h>
# include <richedit.h>
2014-10-28 13:10:46 +01:00
# include <tom.h>
# include <richole.h>
2008-11-11 20:08:53 +01:00
# include <initguid.h>
2013-10-25 17:51:15 +02:00
# include <imm.h>
2008-11-11 20:08:53 +01:00
# include <textserv.h>
# include <wine/test.h>
2009-01-09 05:51:27 +01:00
# include <oleauto.h>
2009-01-16 00:18:05 +01:00
# include <limits.h>
2008-11-11 20:08:53 +01:00
static HMODULE hmoduleRichEdit ;
2011-07-04 06:43:52 +02:00
static IID * pIID_ITextServices ;
static IID * pIID_ITextHost ;
static IID * pIID_ITextHost2 ;
2012-03-28 00:34:31 +02:00
static PCreateTextServices pCreateTextServices ;
2011-07-04 06:43:52 +02:00
2008-11-12 20:47:24 +01:00
/* Define C Macros for ITextServices calls. */
/* Use a special table for x86 machines to convert the thiscall
* calling convention . This isn ' t needed on other platforms . */
2020-04-27 02:31:25 +02:00
# if defined(__i386__) && !defined(__MINGW32__) && (!defined(_MSC_VER) || !defined(__clang__))
2009-01-04 14:12:50 +01:00
static ITextServicesVtbl itextServicesStdcallVtbl ;
2008-11-12 20:47:24 +01:00
# define TXTSERV_VTABLE(This) (&itextServicesStdcallVtbl)
# else /* __i386__ */
# define TXTSERV_VTABLE(This) (This)->lpVtbl
# endif /* __i386__ */
# define ITextServices_TxSendMessage(This,a,b,c,d) TXTSERV_VTABLE(This)->TxSendMessage(This,a,b,c,d)
# define ITextServices_TxDraw(This,a,b,c,d,e,f,g,h,i,j,k,l) TXTSERV_VTABLE(This)->TxDraw(This,a,b,c,d,e,f,g,h,i,j,k,l)
# define ITextServices_TxGetHScroll(This,a,b,c,d,e) TXTSERV_VTABLE(This)->TxGetHScroll(This,a,b,c,d,e)
# define ITextServices_TxGetVScroll(This,a,b,c,d,e) TXTSERV_VTABLE(This)->TxGetVScroll(This,a,b,c,d,e)
# define ITextServices_OnTxSetCursor(This,a,b,c,d,e,f,g,h,i) TXTSERV_VTABLE(This)->OnTxSetCursor(This,a,b,c,d,e,f,g,h,i)
# define ITextServices_TxQueryHitPoint(This,a,b,c,d,e,f,g,h,i,j) TXTSERV_VTABLE(This)->TxQueryHitPoint(This,a,b,c,d,e,f,g,h,i,j)
2021-03-19 10:14:17 +01:00
# define ITextServices_OnTxInPlaceActivate(This,a) TXTSERV_VTABLE(This)->OnTxInPlaceActivate(This,a)
# define ITextServices_OnTxInPlaceDeactivate(This) TXTSERV_VTABLE(This)->OnTxInPlaceDeactivate(This)
2008-11-12 20:47:24 +01:00
# define ITextServices_OnTxUIActivate(This) TXTSERV_VTABLE(This)->OnTxUIActivate(This)
# define ITextServices_OnTxUIDeactivate(This) TXTSERV_VTABLE(This)->OnTxUIDeactivate(This)
# define ITextServices_TxGetText(This,a) TXTSERV_VTABLE(This)->TxGetText(This,a)
# define ITextServices_TxSetText(This,a) TXTSERV_VTABLE(This)->TxSetText(This,a)
2014-03-12 14:43:35 +01:00
# define ITextServices_TxGetCurTargetX(This,a) TXTSERV_VTABLE(This)->TxGetCurTargetX(This,a)
2008-11-12 20:47:24 +01:00
# define ITextServices_TxGetBaseLinePos(This,a) TXTSERV_VTABLE(This)->TxGetBaseLinePos(This,a)
# define ITextServices_TxGetNaturalSize(This,a,b,c,d,e,f,g,h) TXTSERV_VTABLE(This)->TxGetNaturalSize(This,a,b,c,d,e,f,g,h)
# define ITextServices_TxGetDropTarget(This,a) TXTSERV_VTABLE(This)->TxGetDropTarget(This,a)
# define ITextServices_OnTxPropertyBitsChange(This,a,b) TXTSERV_VTABLE(This)->OnTxPropertyBitsChange(This,a,b)
# define ITextServices_TxGetCachedSize(This,a,b) TXTSERV_VTABLE(This)->TxGetCachedSize(This,a,b)
2008-11-11 20:08:53 +01:00
/* Set the WINETEST_DEBUG environment variable to be greater than 1 for verbose
* function call traces of ITextHost . */
# define TRACECALL if(winetest_debug > 1) trace
/************************************************************************/
/* ITextHost implementation for conformance testing. */
typedef struct ITextHostTestImpl
{
2010-12-09 10:27:13 +01:00
ITextHost ITextHost_iface ;
2008-11-11 20:08:53 +01:00
LONG refCount ;
2021-03-22 09:55:50 +01:00
HWND window ;
RECT client_rect ;
2018-08-20 16:03:49 +02:00
CHARFORMAT2W char_format ;
2021-03-22 09:55:50 +01:00
DWORD scrollbars , props ;
2008-11-11 20:08:53 +01:00
} ITextHostTestImpl ;
2010-12-09 10:27:13 +01:00
static inline ITextHostTestImpl * impl_from_ITextHost ( ITextHost * iface )
{
return CONTAINING_RECORD ( iface , ITextHostTestImpl , ITextHost_iface ) ;
}
2021-03-22 09:55:50 +01:00
static const WCHAR lorem [ ] = L " Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. "
" Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. "
" Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. "
" Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. " ;
2008-11-11 20:08:53 +01:00
static HRESULT WINAPI ITextHostImpl_QueryInterface ( ITextHost * iface ,
REFIID riid ,
LPVOID * ppvObject )
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
2011-07-04 06:43:52 +02:00
if ( IsEqualIID ( riid , & IID_IUnknown ) | | IsEqualIID ( riid , pIID_ITextHost ) ) {
2017-02-09 14:17:15 +01:00
* ppvObject = & This - > ITextHost_iface ;
2008-11-11 20:08:53 +01:00
ITextHost_AddRef ( ( ITextHost * ) * ppvObject ) ;
return S_OK ;
}
return E_NOINTERFACE ;
}
static ULONG WINAPI ITextHostImpl_AddRef ( ITextHost * iface )
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
ULONG refCount = InterlockedIncrement ( & This - > refCount ) ;
return refCount ;
}
static ULONG WINAPI ITextHostImpl_Release ( ITextHost * iface )
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
ULONG refCount = InterlockedDecrement ( & This - > refCount ) ;
if ( ! refCount )
{
CoTaskMemFree ( This ) ;
return 0 ;
} else {
return refCount ;
}
}
2019-05-16 13:53:33 +02:00
static HDC __thiscall ITextHostImpl_TxGetDC ( ITextHost * iface )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxGetDC(%p) \n " , This ) ;
2021-03-22 09:55:50 +01:00
if ( This - > window ) return GetDC ( This - > window ) ;
2008-11-11 20:08:53 +01:00
return NULL ;
}
2019-05-16 13:53:33 +02:00
static INT __thiscall ITextHostImpl_TxReleaseDC ( ITextHost * iface , HDC hdc )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxReleaseDC(%p) \n " , This ) ;
2021-03-22 09:55:50 +01:00
if ( This - > window ) return ReleaseDC ( This - > window , hdc ) ;
2008-11-11 20:08:53 +01:00
return 0 ;
}
2019-05-16 13:53:33 +02:00
static BOOL __thiscall ITextHostImpl_TxShowScrollBar ( ITextHost * iface , INT fnBar , BOOL fShow )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxShowScrollBar(%p, fnBar=%d, fShow=%d) \n " ,
This , fnBar , fShow ) ;
2008-12-18 07:56:32 +01:00
return FALSE ;
2008-11-11 20:08:53 +01:00
}
2019-05-16 13:53:33 +02:00
static BOOL __thiscall ITextHostImpl_TxEnableScrollBar ( ITextHost * iface , INT fuSBFlags , INT fuArrowflags )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxEnableScrollBar(%p, fuSBFlags=%d, fuArrowflags=%d) \n " ,
This , fuSBFlags , fuArrowflags ) ;
2008-12-18 07:56:32 +01:00
return FALSE ;
2008-11-11 20:08:53 +01:00
}
2019-05-16 13:53:33 +02:00
static BOOL __thiscall ITextHostImpl_TxSetScrollRange ( ITextHost * iface , INT fnBar , LONG nMinPos ,
INT nMaxPos , BOOL fRedraw )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxSetScrollRange(%p, fnBar=%d, nMinPos=%d, nMaxPos=%d, fRedraw=%d) \n " ,
This , fnBar , nMinPos , nMaxPos , fRedraw ) ;
2008-12-18 07:56:32 +01:00
return FALSE ;
2008-11-11 20:08:53 +01:00
}
2019-05-16 13:53:33 +02:00
static BOOL __thiscall ITextHostImpl_TxSetScrollPos ( ITextHost * iface , INT fnBar , INT nPos , BOOL fRedraw )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxSetScrollPos(%p, fnBar=%d, nPos=%d, fRedraw=%d) \n " ,
This , fnBar , nPos , fRedraw ) ;
2008-12-18 07:56:32 +01:00
return FALSE ;
2008-11-11 20:08:53 +01:00
}
2019-05-16 13:53:33 +02:00
static void __thiscall ITextHostImpl_TxInvalidateRect ( ITextHost * iface , LPCRECT prc , BOOL fMode )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxInvalidateRect(%p, prc=%p, fMode=%d) \n " ,
This , prc , fMode ) ;
}
2019-05-16 13:53:33 +02:00
static void __thiscall ITextHostImpl_TxViewChange ( ITextHost * iface , BOOL fUpdate )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxViewChange(%p, fUpdate=%d) \n " ,
This , fUpdate ) ;
}
2019-05-16 13:53:33 +02:00
static BOOL __thiscall ITextHostImpl_TxCreateCaret ( ITextHost * iface , HBITMAP hbmp , INT xWidth , INT yHeight )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxCreateCaret(%p, nbmp=%p, xWidth=%d, yHeight=%d) \n " ,
This , hbmp , xWidth , yHeight ) ;
2008-12-18 07:56:32 +01:00
return FALSE ;
2008-11-11 20:08:53 +01:00
}
2019-05-16 13:53:33 +02:00
static BOOL __thiscall ITextHostImpl_TxShowCaret ( ITextHost * iface , BOOL fShow )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxShowCaret(%p, fShow=%d) \n " ,
This , fShow ) ;
2008-12-18 07:56:32 +01:00
return FALSE ;
2008-11-11 20:08:53 +01:00
}
2019-05-16 13:53:33 +02:00
static BOOL __thiscall ITextHostImpl_TxSetCaretPos ( ITextHost * iface , INT x , INT y )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxSetCaretPos(%p, x=%d, y=%d) \n " , This , x , y ) ;
2008-12-18 07:56:32 +01:00
return FALSE ;
2008-11-11 20:08:53 +01:00
}
2019-05-16 13:53:33 +02:00
static BOOL __thiscall ITextHostImpl_TxSetTimer ( ITextHost * iface , UINT idTimer , UINT uTimeout )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxSetTimer(%p, idTimer=%u, uTimeout=%u) \n " ,
This , idTimer , uTimeout ) ;
2008-12-18 07:56:32 +01:00
return FALSE ;
2008-11-11 20:08:53 +01:00
}
2019-05-16 13:53:33 +02:00
static void __thiscall ITextHostImpl_TxKillTimer ( ITextHost * iface , UINT idTimer )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxKillTimer(%p, idTimer=%u) \n " , This , idTimer ) ;
}
2019-05-16 13:53:33 +02:00
static void __thiscall ITextHostImpl_TxScrollWindowEx ( ITextHost * iface , INT dx , INT dy , LPCRECT lprcScroll ,
LPCRECT lprcClip , HRGN hRgnUpdate , LPRECT lprcUpdate ,
UINT fuScroll )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxScrollWindowEx(%p, %d, %d, %p, %p, %p, %p, %d) \n " ,
This , dx , dy , lprcScroll , lprcClip , hRgnUpdate , lprcUpdate , fuScroll ) ;
}
2019-05-16 13:53:33 +02:00
static void __thiscall ITextHostImpl_TxSetCapture ( ITextHost * iface , BOOL fCapture )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxSetCapture(%p, fCapture=%d) \n " , This , fCapture ) ;
}
2019-05-16 13:53:33 +02:00
static void __thiscall ITextHostImpl_TxSetFocus ( ITextHost * iface )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxSetFocus(%p) \n " , This ) ;
}
2019-05-16 13:53:33 +02:00
static void __thiscall ITextHostImpl_TxSetCursor ( ITextHost * iface , HCURSOR hcur , BOOL fText )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxSetCursor(%p, hcur=%p, fText=%d) \n " ,
This , hcur , fText ) ;
}
2019-05-16 13:53:33 +02:00
static BOOL __thiscall ITextHostImpl_TxScreenToClient ( ITextHost * iface , LPPOINT lppt )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxScreenToClient(%p, lppt=%p) \n " , This , lppt ) ;
2008-12-18 07:56:32 +01:00
return FALSE ;
2008-11-11 20:08:53 +01:00
}
2019-05-16 13:53:33 +02:00
static BOOL __thiscall ITextHostImpl_TxClientToScreen ( ITextHost * iface , LPPOINT lppt )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxClientToScreen(%p, lppt=%p) \n " , This , lppt ) ;
2008-12-18 07:56:32 +01:00
return FALSE ;
2008-11-11 20:08:53 +01:00
}
2019-05-16 13:53:33 +02:00
static HRESULT __thiscall ITextHostImpl_TxActivate ( ITextHost * iface , LONG * plOldState )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxActivate(%p, plOldState=%p) \n " , This , plOldState ) ;
return E_NOTIMPL ;
}
2019-05-16 13:53:33 +02:00
static HRESULT __thiscall ITextHostImpl_TxDeactivate ( ITextHost * iface , LONG lNewState )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxDeactivate(%p, lNewState=%d) \n " , This , lNewState ) ;
return E_NOTIMPL ;
}
2019-05-16 13:53:33 +02:00
static HRESULT __thiscall ITextHostImpl_TxGetClientRect ( ITextHost * iface , LPRECT prc )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxGetClientRect(%p, prc=%p) \n " , This , prc ) ;
2021-03-22 09:55:50 +01:00
* prc = This - > client_rect ;
return S_OK ;
2008-11-11 20:08:53 +01:00
}
2019-05-16 13:53:33 +02:00
static HRESULT __thiscall ITextHostImpl_TxGetViewInset ( ITextHost * iface , LPRECT prc )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxGetViewInset(%p, prc=%p) \n " , This , prc ) ;
return E_NOTIMPL ;
}
2019-05-16 13:53:33 +02:00
static HRESULT __thiscall ITextHostImpl_TxGetCharFormat ( ITextHost * iface , const CHARFORMATW * * ppCF )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxGetCharFormat(%p, ppCF=%p) \n " , This , ppCF ) ;
2018-08-20 16:03:49 +02:00
* ppCF = ( CHARFORMATW * ) & This - > char_format ;
return S_OK ;
2008-11-11 20:08:53 +01:00
}
2019-05-16 13:53:33 +02:00
static HRESULT __thiscall ITextHostImpl_TxGetParaFormat ( ITextHost * iface , const PARAFORMAT * * ppPF )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxGetParaFormat(%p, ppPF=%p) \n " , This , ppPF ) ;
return E_NOTIMPL ;
}
2019-05-16 13:53:33 +02:00
static COLORREF __thiscall ITextHostImpl_TxGetSysColor ( ITextHost * iface , int nIndex )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxGetSysColor(%p, nIndex=%d) \n " , This , nIndex ) ;
return E_NOTIMPL ;
}
2019-05-16 13:53:33 +02:00
static HRESULT __thiscall ITextHostImpl_TxGetBackStyle ( ITextHost * iface , TXTBACKSTYLE * pStyle )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxGetBackStyle(%p, pStyle=%p) \n " , This , pStyle ) ;
return E_NOTIMPL ;
}
2019-05-16 13:53:33 +02:00
static HRESULT __thiscall ITextHostImpl_TxGetMaxLength ( ITextHost * iface , DWORD * pLength )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxGetMaxLength(%p, pLength=%p) \n " , This , pLength ) ;
return E_NOTIMPL ;
}
2021-03-22 09:55:50 +01:00
static HRESULT __thiscall ITextHostImpl_TxGetScrollBars ( ITextHost * iface , DWORD * scrollbars )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2021-03-22 09:55:50 +01:00
TRACECALL ( " Call to TxGetScrollBars(%p, scrollbars=%p) \n " , This , scrollbars ) ;
* scrollbars = This - > scrollbars ;
return S_OK ;
2008-11-11 20:08:53 +01:00
}
2019-05-16 13:53:33 +02:00
static HRESULT __thiscall ITextHostImpl_TxGetPasswordChar ( ITextHost * iface , WCHAR * pch )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxGetPasswordChar(%p, pch=%p) \n " , This , pch ) ;
return E_NOTIMPL ;
}
2019-05-16 13:53:33 +02:00
static HRESULT __thiscall ITextHostImpl_TxGetAcceleratorPos ( ITextHost * iface , LONG * pch )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxGetAcceleratorPos(%p, pch=%p) \n " , This , pch ) ;
return E_NOTIMPL ;
}
2019-05-16 13:53:33 +02:00
static HRESULT __thiscall ITextHostImpl_TxGetExtent ( ITextHost * iface , LPSIZEL lpExtent )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxGetExtent(%p, lpExtent=%p) \n " , This , lpExtent ) ;
return E_NOTIMPL ;
}
2019-05-16 13:53:33 +02:00
static HRESULT __thiscall ITextHostImpl_OnTxCharFormatChange ( ITextHost * iface , const CHARFORMATW * pcf )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to OnTxCharFormatChange(%p, pcf=%p) \n " , This , pcf ) ;
return E_NOTIMPL ;
}
2019-05-16 13:53:33 +02:00
static HRESULT __thiscall ITextHostImpl_OnTxParaFormatChange ( ITextHost * iface , const PARAFORMAT * ppf )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to OnTxParaFormatChange(%p, ppf=%p) \n " , This , ppf ) ;
return E_NOTIMPL ;
}
/* This must return S_OK for the native ITextServices object to
initialize . */
2019-05-16 13:53:33 +02:00
static HRESULT __thiscall ITextHostImpl_TxGetPropertyBits ( ITextHost * iface , DWORD dwMask , DWORD * pdwBits )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxGetPropertyBits(%p, dwMask=0x%08x, pdwBits=%p) \n " ,
This , dwMask , pdwBits ) ;
2021-03-22 09:55:50 +01:00
* pdwBits = This - > props & dwMask ;
2008-11-11 20:08:53 +01:00
return S_OK ;
}
2021-03-30 13:36:47 +02:00
static int en_vscroll_sent ;
2021-03-30 13:36:50 +02:00
static int en_update_sent ;
2021-03-30 13:36:47 +02:00
static HRESULT __thiscall ITextHostImpl_TxNotify ( ITextHost * iface , DWORD code , void * data )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2021-03-30 13:36:47 +02:00
TRACECALL ( " Call to TxNotify(%p, code = %#x, data = %p) \n " , This , code , data ) ;
switch ( code )
{
case EN_VSCROLL :
en_vscroll_sent + + ;
ok ( ! data , " got %p \n " , data ) ;
break ;
2021-03-30 13:36:50 +02:00
case EN_UPDATE :
en_update_sent + + ;
ok ( ! data , " got %p \n " , data ) ;
break ;
2021-03-30 13:36:47 +02:00
}
return S_OK ;
2008-11-11 20:08:53 +01:00
}
2019-05-16 13:53:33 +02:00
static HIMC __thiscall ITextHostImpl_TxImmGetContext ( ITextHost * iface )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxImmGetContext(%p) \n " , This ) ;
return 0 ;
}
2019-05-16 13:53:33 +02:00
static void __thiscall ITextHostImpl_TxImmReleaseContext ( ITextHost * iface , HIMC himc )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxImmReleaseContext(%p, himc=%p) \n " , This , himc ) ;
}
2009-01-16 00:18:05 +01:00
/* This function must set the variable pointed to by *lSelBarWidth.
2011-08-24 15:28:14 +02:00
Otherwise an uninitialized value will be used to calculate
2009-01-16 00:18:05 +01:00
positions and sizes even if E_NOTIMPL is returned . */
2019-05-16 13:53:33 +02:00
static HRESULT __thiscall ITextHostImpl_TxGetSelectionBarWidth ( ITextHost * iface , LONG * lSelBarWidth )
2008-11-11 20:08:53 +01:00
{
2010-12-09 10:27:13 +01:00
ITextHostTestImpl * This = impl_from_ITextHost ( iface ) ;
2008-11-11 20:08:53 +01:00
TRACECALL ( " Call to TxGetSelectionBarWidth(%p, lSelBarWidth=%p) \n " ,
This , lSelBarWidth ) ;
2009-01-16 00:18:05 +01:00
* lSelBarWidth = 0 ;
2008-11-11 20:08:53 +01:00
return E_NOTIMPL ;
}
static ITextHostVtbl itextHostVtbl = {
ITextHostImpl_QueryInterface ,
ITextHostImpl_AddRef ,
ITextHostImpl_Release ,
ITextHostImpl_TxGetDC ,
ITextHostImpl_TxReleaseDC ,
ITextHostImpl_TxShowScrollBar ,
ITextHostImpl_TxEnableScrollBar ,
ITextHostImpl_TxSetScrollRange ,
ITextHostImpl_TxSetScrollPos ,
ITextHostImpl_TxInvalidateRect ,
ITextHostImpl_TxViewChange ,
ITextHostImpl_TxCreateCaret ,
ITextHostImpl_TxShowCaret ,
ITextHostImpl_TxSetCaretPos ,
ITextHostImpl_TxSetTimer ,
ITextHostImpl_TxKillTimer ,
ITextHostImpl_TxScrollWindowEx ,
ITextHostImpl_TxSetCapture ,
ITextHostImpl_TxSetFocus ,
ITextHostImpl_TxSetCursor ,
ITextHostImpl_TxScreenToClient ,
ITextHostImpl_TxClientToScreen ,
ITextHostImpl_TxActivate ,
ITextHostImpl_TxDeactivate ,
ITextHostImpl_TxGetClientRect ,
ITextHostImpl_TxGetViewInset ,
ITextHostImpl_TxGetCharFormat ,
ITextHostImpl_TxGetParaFormat ,
ITextHostImpl_TxGetSysColor ,
ITextHostImpl_TxGetBackStyle ,
ITextHostImpl_TxGetMaxLength ,
2008-12-15 10:31:33 +01:00
ITextHostImpl_TxGetScrollBars ,
2008-11-11 20:08:53 +01:00
ITextHostImpl_TxGetPasswordChar ,
ITextHostImpl_TxGetAcceleratorPos ,
ITextHostImpl_TxGetExtent ,
ITextHostImpl_OnTxCharFormatChange ,
ITextHostImpl_OnTxParaFormatChange ,
ITextHostImpl_TxGetPropertyBits ,
ITextHostImpl_TxNotify ,
ITextHostImpl_TxImmGetContext ,
ITextHostImpl_TxImmReleaseContext ,
ITextHostImpl_TxGetSelectionBarWidth
} ;
static void * wrapperCodeMem = NULL ;
2008-11-12 20:47:24 +01:00
# include "pshpack1.h"
2008-11-11 20:08:53 +01:00
/* Code structure for x86 byte code */
typedef struct
{
BYTE pop_eax ; /* popl %eax */
BYTE push_ecx ; /* pushl %ecx */
BYTE push_eax ; /* pushl %eax */
BYTE jmp_func ; /* jmp $func */
DWORD func ;
} THISCALL_TO_STDCALL_THUNK ;
2008-11-12 20:47:24 +01:00
typedef struct
{
BYTE pop_eax ; /* popl %eax */
BYTE pop_ecx ; /* popl %ecx */
BYTE push_eax ; /* pushl %eax */
BYTE mov_vtable_eax [ 2 ] ; /* movl (%ecx), %eax */
BYTE jmp_eax [ 2 ] ; /* jmp *$vtablefunc_offset(%eax) */
int vtablefunc_offset ;
} STDCALL_TO_THISCALL_THUNK ;
# include "poppack.h"
2008-11-11 20:08:53 +01:00
static void setup_thiscall_wrappers ( void )
{
2020-04-27 02:31:25 +02:00
# if defined(__i386__) && !defined(__MINGW32__) && (!defined(_MSC_VER) || !defined(__clang__))
2008-11-11 20:08:53 +01:00
void * * pVtable ;
void * * pVtableEnd ;
THISCALL_TO_STDCALL_THUNK * thunk ;
2008-11-12 20:47:24 +01:00
STDCALL_TO_THISCALL_THUNK * thunk2 ;
2008-11-11 20:08:53 +01:00
wrapperCodeMem = VirtualAlloc ( NULL ,
( sizeof ( ITextHostVtbl ) / sizeof ( void * ) - 3 )
2008-11-12 20:47:24 +01:00
* sizeof ( THISCALL_TO_STDCALL_THUNK )
+ ( sizeof ( ITextServicesVtbl ) / sizeof ( void * ) - 3 )
* sizeof ( STDCALL_TO_THISCALL_THUNK ) ,
2008-11-11 20:08:53 +01:00
MEM_COMMIT , PAGE_EXECUTE_READWRITE ) ;
thunk = wrapperCodeMem ;
/* Wrap all ITextHostImpl methods with code to perform a thiscall to
* stdcall conversion . The thiscall calling convention places the This
* pointer in ecx on the x86 platform , and the stdcall calling convention
* pushes the This pointer on the stack as the first argument .
*
* The byte code does the conversion then jumps to the real function .
*
* Each wrapper needs to be modified so that the function to jump to is
* modified in the byte code . */
/* Skip QueryInterface, AddRef, and Release native actually
* defined them with the stdcall calling convention . */
pVtable = ( void * * ) & itextHostVtbl + 3 ;
2008-11-12 20:47:24 +01:00
pVtableEnd = ( void * * ) ( & itextHostVtbl + 1 ) ;
2008-11-11 20:08:53 +01:00
while ( pVtable ! = pVtableEnd ) {
/* write byte code to executable memory */
thunk - > pop_eax = 0x58 ; /* popl %eax */
thunk - > push_ecx = 0x51 ; /* pushl %ecx */
thunk - > push_eax = 0x50 ; /* pushl %eax */
thunk - > jmp_func = 0xe9 ; /* jmp $func */
/* The address needs to be relative to the end of the jump instructions. */
thunk - > func = ( char * ) * pVtable - ( char * ) ( & thunk - > func + 1 ) ;
* pVtable = thunk ;
pVtable + + ;
thunk + + ;
}
2008-11-12 20:47:24 +01:00
/* Setup an ITextServices standard call vtable that will call the
* native thiscall vtable when the methods are called . */
/* QueryInterface, AddRef, and Release should be called directly on the
* real vtable since they use the stdcall calling convention . */
thunk2 = ( STDCALL_TO_THISCALL_THUNK * ) thunk ;
pVtable = ( void * * ) & itextServicesStdcallVtbl + 3 ;
pVtableEnd = ( void * * ) ( & itextServicesStdcallVtbl + 1 ) ;
while ( pVtable ! = pVtableEnd ) {
/* write byte code to executable memory */
thunk2 - > pop_eax = 0x58 ; /* popl %eax */
thunk2 - > pop_ecx = 0x59 ; /* popl %ecx */
thunk2 - > push_eax = 0x50 ; /* pushl %eax */
thunk2 - > mov_vtable_eax [ 0 ] = 0x8b ; /* movl (%ecx), %eax */
thunk2 - > mov_vtable_eax [ 1 ] = 0x01 ;
thunk2 - > jmp_eax [ 0 ] = 0xff ; /* jmp *$vtablefunc_offset(%eax) */
thunk2 - > jmp_eax [ 1 ] = 0xa0 ;
thunk2 - > vtablefunc_offset = ( char * ) pVtable - ( char * ) & itextServicesStdcallVtbl ;
* pVtable = thunk2 ;
pVtable + + ;
thunk2 + + ;
}
2008-11-11 20:08:53 +01:00
# endif /* __i386__ */
}
2018-07-13 11:11:27 +02:00
static void hf_to_cf ( HFONT hf , CHARFORMAT2W * cf )
{
LOGFONTW lf ;
GetObjectW ( hf , sizeof ( lf ) , & lf ) ;
lstrcpyW ( cf - > szFaceName , lf . lfFaceName ) ;
cf - > yHeight = MulDiv ( abs ( lf . lfHeight ) , 1440 , GetDeviceCaps ( GetDC ( NULL ) , LOGPIXELSY ) ) ;
if ( lf . lfWeight > FW_NORMAL ) cf - > dwEffects | = CFE_BOLD ;
if ( lf . lfItalic ) cf - > dwEffects | = CFE_ITALIC ;
if ( lf . lfUnderline ) cf - > dwEffects | = CFE_UNDERLINE ;
if ( lf . lfStrikeOut ) cf - > dwEffects | = CFE_SUBSCRIPT ;
cf - > bPitchAndFamily = lf . lfPitchAndFamily ;
cf - > bCharSet = lf . lfCharSet ;
}
2008-11-11 20:08:53 +01:00
/*************************************************************************/
/* Conformance test functions. */
/* Initialize the test texthost structure */
2015-05-29 21:45:43 +02:00
static BOOL init_texthost ( ITextServices * * txtserv , ITextHost * * ret )
2008-11-11 20:08:53 +01:00
{
2015-05-29 21:45:43 +02:00
ITextHostTestImpl * dummyTextHost ;
2008-11-11 20:08:53 +01:00
IUnknown * init ;
HRESULT result ;
2018-08-20 16:03:49 +02:00
HFONT hf ;
2008-11-11 20:08:53 +01:00
dummyTextHost = CoTaskMemAlloc ( sizeof ( * dummyTextHost ) ) ;
if ( dummyTextHost = = NULL ) {
2015-05-29 21:45:43 +02:00
win_skip ( " Insufficient memory to create ITextHost interface \n " ) ;
2008-11-11 20:08:53 +01:00
return FALSE ;
}
2010-12-09 10:27:13 +01:00
dummyTextHost - > ITextHost_iface . lpVtbl = & itextHostVtbl ;
2008-11-11 20:08:53 +01:00
dummyTextHost - > refCount = 1 ;
2021-03-22 09:55:50 +01:00
dummyTextHost - > window = NULL ;
SetRectEmpty ( & dummyTextHost - > client_rect ) ;
2018-08-20 16:03:49 +02:00
memset ( & dummyTextHost - > char_format , 0 , sizeof ( dummyTextHost - > char_format ) ) ;
dummyTextHost - > char_format . cbSize = sizeof ( dummyTextHost - > char_format ) ;
dummyTextHost - > char_format . dwMask = CFM_ALL2 ;
2021-03-22 09:55:50 +01:00
dummyTextHost - > scrollbars = 0 ;
dummyTextHost - > props = 0 ;
2018-08-20 16:03:49 +02:00
hf = GetStockObject ( DEFAULT_GUI_FONT ) ;
hf_to_cf ( hf , & dummyTextHost - > char_format ) ;
2008-11-11 20:08:53 +01:00
/* MSDN states that an IUnknown object is returned by
CreateTextServices which is then queried to obtain a
ITextServices object . */
2015-05-29 21:45:43 +02:00
result = pCreateTextServices ( NULL , & dummyTextHost - > ITextHost_iface , & init ) ;
2010-10-06 04:29:29 +02:00
ok ( result = = S_OK , " Did not return S_OK when created (result = %x) \n " , result ) ;
2021-03-03 12:29:40 +01:00
ok ( dummyTextHost - > refCount = = 1 , " host ref %d \n " , dummyTextHost - > refCount ) ;
2008-11-11 20:08:53 +01:00
if ( result ! = S_OK ) {
CoTaskMemFree ( dummyTextHost ) ;
2015-05-29 21:45:43 +02:00
win_skip ( " CreateTextServices failed. \n " ) ;
2008-11-11 20:08:53 +01:00
return FALSE ;
}
2015-05-29 21:45:43 +02:00
result = IUnknown_QueryInterface ( init , pIID_ITextServices , ( void * * ) txtserv ) ;
ok ( ( result = = S_OK ) & & ( * txtserv ! = NULL ) , " Querying interface failed (result = %x, txtserv = %p) \n " , result , * txtserv ) ;
2008-11-11 20:08:53 +01:00
IUnknown_Release ( init ) ;
2015-05-29 21:45:43 +02:00
if ( ! ( ( result = = S_OK ) & & ( * txtserv ! = NULL ) ) ) {
2008-11-11 20:08:53 +01:00
CoTaskMemFree ( dummyTextHost ) ;
2015-05-29 21:45:43 +02:00
win_skip ( " Could not retrieve ITextServices interface \n " ) ;
2008-11-11 20:08:53 +01:00
return FALSE ;
}
2015-05-29 21:45:43 +02:00
* ret = & dummyTextHost - > ITextHost_iface ;
2008-11-11 20:08:53 +01:00
return TRUE ;
}
2021-05-20 09:56:12 +02:00
static void fill_reobject_struct ( REOBJECT * reobj , LONG cp , LPOLEOBJECT poleobj ,
LPSTORAGE pstg , LPOLECLIENTSITE polesite , LONG sizel_cx ,
LONG sizel_cy , DWORD aspect , DWORD flags , DWORD user )
{
reobj - > cbStruct = sizeof ( * reobj ) ;
reobj - > clsid = CLSID_NULL ;
reobj - > cp = cp ;
reobj - > poleobj = poleobj ;
reobj - > pstg = pstg ;
reobj - > polesite = polesite ;
reobj - > sizel . cx = sizel_cx ;
reobj - > sizel . cy = sizel_cy ;
reobj - > dvaspect = aspect ;
reobj - > dwFlags = flags ;
reobj - > dwUser = user ;
}
2008-11-12 20:47:24 +01:00
static void test_TxGetText ( void )
{
2021-05-20 09:56:12 +02:00
const WCHAR * expected_string ;
IOleClientSite * clientsite ;
2015-05-29 21:45:43 +02:00
ITextServices * txtserv ;
2021-05-20 09:56:12 +02:00
IRichEditOle * reole ;
REOBJECT reobject ;
2015-05-29 21:45:43 +02:00
ITextHost * host ;
2008-11-12 20:47:24 +01:00
HRESULT hres ;
BSTR rettext ;
2015-05-29 21:45:43 +02:00
if ( ! init_texthost ( & txtserv , & host ) )
2008-11-12 20:47:24 +01:00
return ;
hres = ITextServices_TxGetText ( txtserv , & rettext ) ;
2010-10-06 04:29:29 +02:00
ok ( hres = = S_OK , " ITextServices_TxGetText failed (result = %x) \n " , hres ) ;
2018-05-22 10:31:18 +02:00
SysFreeString ( rettext ) ;
2008-11-12 20:47:24 +01:00
2021-05-20 09:56:12 +02:00
hres = ITextServices_TxSetText ( txtserv , L " abcdefg " ) ;
ok ( hres = = S_OK , " Got hres: %#x. \n " , hres ) ;
hres = ITextServices_QueryInterface ( txtserv , & IID_IRichEditOle , ( void * * ) & reole ) ;
ok ( hres = = S_OK , " Got hres: %#x. \n " , hres ) ;
hres = IRichEditOle_GetClientSite ( reole , & clientsite ) ;
ok ( hres = = S_OK , " Got hres: %#x. \n " , hres ) ;
expected_string = L " abc \xfffc " " defg " ;
fill_reobject_struct ( & reobject , 3 , NULL , NULL , clientsite , 10 , 10 , DVASPECT_CONTENT , 0 , 1 ) ;
hres = IRichEditOle_InsertObject ( reole , & reobject ) ;
ok ( hres = = S_OK , " Got hres: %#x. \n " , hres ) ;
hres = ITextServices_TxGetText ( txtserv , & rettext ) ;
ok ( hres = = S_OK , " Got hres: %#x. \n " , hres ) ;
ok ( lstrlenW ( rettext ) = = lstrlenW ( expected_string ) , " Got wrong length: %d. \n " , lstrlenW ( rettext ) ) ;
todo_wine ok ( ! lstrcmpW ( rettext , expected_string ) , " Got wrong content: %s. \n " , debugstr_w ( rettext ) ) ;
SysFreeString ( rettext ) ;
IOleClientSite_Release ( clientsite ) ;
IRichEditOle_Release ( reole ) ;
2015-05-29 21:45:43 +02:00
ITextServices_Release ( txtserv ) ;
ITextHost_Release ( host ) ;
2008-11-12 20:47:24 +01:00
}
2009-01-09 05:51:27 +01:00
static void test_TxSetText ( void )
{
2015-05-29 21:45:43 +02:00
ITextServices * txtserv ;
ITextHost * host ;
2009-01-09 05:51:27 +01:00
HRESULT hres ;
BSTR rettext ;
WCHAR settext [ ] = { ' T ' , ' e ' , ' s ' , ' t ' , 0 } ;
2015-05-29 21:45:43 +02:00
if ( ! init_texthost ( & txtserv , & host ) )
2009-01-09 05:51:27 +01:00
return ;
hres = ITextServices_TxSetText ( txtserv , settext ) ;
2010-10-06 04:29:29 +02:00
ok ( hres = = S_OK , " ITextServices_TxSetText failed (result = %x) \n " , hres ) ;
2009-01-09 05:51:27 +01:00
hres = ITextServices_TxGetText ( txtserv , & rettext ) ;
2010-10-06 04:29:29 +02:00
ok ( hres = = S_OK , " ITextServices_TxGetText failed (result = %x) \n " , hres ) ;
2009-01-09 05:51:27 +01:00
2009-01-20 07:41:44 +01:00
ok ( SysStringLen ( rettext ) = = 4 ,
2010-10-06 04:29:29 +02:00
" String returned of wrong length (expected 4, got %d) \n " , SysStringLen ( rettext ) ) ;
2009-01-20 07:41:44 +01:00
ok ( memcmp ( rettext , settext , SysStringByteLen ( rettext ) ) = = 0 ,
2009-01-09 05:51:27 +01:00
" String returned differs \n " ) ;
2019-01-16 14:08:31 +01:00
SysFreeString ( rettext ) ;
2017-01-09 18:08:11 +01:00
/* Null-pointer should behave the same as empty-string */
hres = ITextServices_TxSetText ( txtserv , 0 ) ;
ok ( hres = = S_OK , " ITextServices_TxSetText failed (result = %x) \n " , hres ) ;
hres = ITextServices_TxGetText ( txtserv , & rettext ) ;
ok ( hres = = S_OK , " ITextServices_TxGetText failed (result = %x) \n " , hres ) ;
ok ( SysStringLen ( rettext ) = = 0 ,
" String returned of wrong length (expected 0, got %d) \n " , SysStringLen ( rettext ) ) ;
2009-11-28 19:43:14 +01:00
SysFreeString ( rettext ) ;
2015-05-29 21:45:43 +02:00
ITextServices_Release ( txtserv ) ;
ITextHost_Release ( host ) ;
2009-01-09 05:51:27 +01:00
}
2018-07-13 11:11:27 +02:00
# define CHECK_TXGETNATURALSIZE(res,width,height,hdc,rect,string) \
_check_txgetnaturalsize ( res , width , height , hdc , rect , string , __LINE__ )
static void _check_txgetnaturalsize ( HRESULT res , LONG width , LONG height , HDC hdc , RECT rect , LPCWSTR string , int line )
{
RECT expected_rect = rect ;
LONG expected_width , expected_height ;
DrawTextW ( hdc , string , - 1 , & expected_rect , DT_LEFT | DT_CALCRECT | DT_NOCLIP | DT_EDITCONTROL | DT_WORDBREAK ) ;
expected_width = expected_rect . right - expected_rect . left ;
expected_height = expected_rect . bottom - expected_rect . top ;
ok_ ( __FILE__ , line ) ( res = = S_OK , " ITextServices_TxGetNaturalSize failed: 0x%08x. \n " , res ) ;
2021-03-25 10:10:28 +01:00
todo_wine ok_ ( __FILE__ , line ) ( width > = expected_width & & width < = expected_width + 1 ,
2018-07-13 11:11:27 +02:00
" got wrong width: %d, expected: %d {+1}. \n " , width , expected_width ) ;
ok_ ( __FILE__ , line ) ( height = = expected_height , " got wrong height: %d, expected: %d. \n " ,
height , expected_height ) ;
}
2015-05-29 21:45:43 +02:00
static void test_TxGetNaturalSize ( void )
{
ITextServices * txtserv ;
ITextHost * host ;
2009-01-16 00:18:05 +01:00
HRESULT result ;
2018-07-13 11:11:27 +02:00
SIZEL extent ;
2021-03-25 10:10:28 +01:00
static const WCHAR test_text [ ] = L " TestSomeText " ;
2018-07-13 11:11:27 +02:00
LONG width , height ;
2009-01-16 00:18:05 +01:00
HDC hdcDraw ;
2018-07-13 11:11:27 +02:00
HWND hwnd ;
RECT rect ;
CHARFORMAT2W cf ;
LRESULT lresult ;
HFONT hf ;
2009-01-16 00:18:05 +01:00
2015-05-29 21:45:43 +02:00
if ( ! init_texthost ( & txtserv , & host ) )
2009-01-16 00:18:05 +01:00
return ;
2018-07-13 11:11:27 +02:00
hwnd = CreateWindowExA ( 0 , " static " , NULL , WS_POPUP | WS_VISIBLE ,
0 , 0 , 100 , 100 , 0 , 0 , 0 , NULL ) ;
hdcDraw = GetDC ( hwnd ) ;
2009-01-16 00:18:05 +01:00
SetMapMode ( hdcDraw , MM_TEXT ) ;
2018-07-13 11:11:27 +02:00
GetClientRect ( hwnd , & rect ) ;
memset ( & cf , 0 , sizeof ( cf ) ) ;
cf . cbSize = sizeof ( cf ) ;
cf . dwMask = CFM_ALL2 ;
hf = GetStockObject ( DEFAULT_GUI_FONT ) ;
hf_to_cf ( hf , & cf ) ;
result = ITextServices_TxSendMessage ( txtserv , EM_SETCHARFORMAT , SCF_DEFAULT , ( LPARAM ) & cf , & lresult ) ;
ok ( result = = S_OK , " ITextServices_TxSendMessage failed: 0x%08x. \n " , result ) ;
SelectObject ( hdcDraw , hf ) ;
result = ITextServices_TxSetText ( txtserv , test_text ) ;
ok ( result = = S_OK , " ITextServices_TxSetText failed: 0x%08x. \n " , result ) ;
extent . cx = - 1 ; extent . cy = - 1 ;
width = rect . right - rect . left ;
height = 0 ;
result = ITextServices_TxGetNaturalSize ( txtserv , DVASPECT_CONTENT , hdcDraw , NULL , NULL ,
TXTNS_FITTOCONTENT , & extent , & width , & height ) ;
2021-03-25 10:10:28 +01:00
CHECK_TXGETNATURALSIZE ( result , width , height , hdcDraw , rect , test_text ) ;
2018-07-13 11:11:27 +02:00
ReleaseDC ( hwnd , hdcDraw ) ;
DestroyWindow ( hwnd ) ;
2015-05-29 21:45:43 +02:00
ITextServices_Release ( txtserv ) ;
ITextHost_Release ( host ) ;
2009-01-16 00:18:05 +01:00
}
2009-06-03 08:02:56 +02:00
static void test_TxDraw ( void )
{
2015-05-29 21:45:43 +02:00
ITextServices * txtserv ;
ITextHost * host ;
2021-03-23 14:04:07 +01:00
HRESULT hr ;
RECT client = { 0 , 0 , 100 , 100 } ;
ITextHostTestImpl * host_impl ;
HDC hdc ;
2015-05-29 21:45:43 +02:00
if ( ! init_texthost ( & txtserv , & host ) )
2009-06-03 08:02:56 +02:00
return ;
2021-03-23 14:04:07 +01:00
host_impl = impl_from_ITextHost ( host ) ;
host_impl - > window = CreateWindowExA ( 0 , " static " , NULL , WS_POPUP | WS_VISIBLE ,
0 , 0 , 400 , 400 , 0 , 0 , 0 , NULL ) ;
host_impl - > client_rect = client ;
host_impl - > props = TXTBIT_MULTILINE | TXTBIT_RICHTEXT | TXTBIT_WORDWRAP ;
ITextServices_OnTxPropertyBitsChange ( txtserv , TXTBIT_CLIENTRECTCHANGE | TXTBIT_MULTILINE | TXTBIT_RICHTEXT | TXTBIT_WORDWRAP ,
host_impl - > props ) ;
hdc = GetDC ( host_impl - > window ) ;
hr = ITextServices_TxDraw ( txtserv , DVASPECT_CONTENT , 0 , NULL , NULL , NULL , NULL , NULL , NULL ,
NULL , NULL , 0 , TXTVIEW_INACTIVE ) ;
ok ( hr = = E_INVALIDARG , " got %08x \n " , hr ) ;
hr = ITextServices_TxDraw ( txtserv , DVASPECT_CONTENT , 0 , NULL , NULL , hdc , NULL , NULL , NULL ,
NULL , NULL , 0 , TXTVIEW_INACTIVE ) ;
ok ( hr = = E_INVALIDARG , " got %08x \n " , hr ) ;
hr = ITextServices_TxDraw ( txtserv , DVASPECT_CONTENT , 0 , NULL , NULL , NULL , NULL , ( RECTL * ) & client , NULL ,
NULL , NULL , 0 , TXTVIEW_INACTIVE ) ;
ok ( hr = = E_FAIL , " got %08x \n " , hr ) ;
hr = ITextServices_TxDraw ( txtserv , DVASPECT_CONTENT , 0 , NULL , NULL , hdc , NULL , ( RECTL * ) & client , NULL ,
NULL , NULL , 0 , TXTVIEW_INACTIVE ) ;
ok ( hr = = S_OK , " got %08x \n " , hr ) ;
hr = ITextServices_TxDraw ( txtserv , DVASPECT_CONTENT , 0 , NULL , NULL , hdc , NULL , ( RECTL * ) & client , NULL ,
NULL , NULL , 0 , TXTVIEW_ACTIVE ) ;
ok ( hr = = S_OK , " got %08x \n " , hr ) ;
hr = ITextServices_OnTxInPlaceActivate ( txtserv , & client ) ;
ok ( hr = = S_OK , " got %08x \n " , hr ) ;
hr = ITextServices_TxDraw ( txtserv , DVASPECT_CONTENT , 0 , NULL , NULL , NULL , NULL , NULL , NULL ,
NULL , NULL , 0 , TXTVIEW_INACTIVE ) ;
ok ( hr = = S_OK , " got %08x \n " , hr ) ;
hr = ITextServices_OnTxInPlaceDeactivate ( txtserv ) ;
ReleaseDC ( host_impl - > window , hdc ) ;
2015-05-29 21:45:43 +02:00
ITextServices_Release ( txtserv ) ;
2021-03-23 14:04:07 +01:00
DestroyWindow ( host_impl - > window ) ;
2015-05-29 21:45:43 +02:00
ITextHost_Release ( host ) ;
2009-06-03 08:02:56 +02:00
}
2011-07-04 06:43:52 +02:00
DEFINE_GUID ( expected_iid_itextservices , 0x8d33f740 , 0xcf58 , 0x11ce , 0xa8 , 0x9d , 0x00 , 0xaa , 0x00 , 0x6c , 0xad , 0xc5 ) ;
DEFINE_GUID ( expected_iid_itexthost , 0x13e670f4 , 0x1a5a , 0x11cf , 0xab , 0xeb , 0x00 , 0xaa , 0x00 , 0xb6 , 0x5e , 0xa1 ) ;
DEFINE_GUID ( expected_iid_itexthost2 , 0x13e670f5 , 0x1a5a , 0x11cf , 0xab , 0xeb , 0x00 , 0xaa , 0x00 , 0xb6 , 0x5e , 0xa1 ) ;
static void test_IIDs ( void )
{
ok ( IsEqualIID ( pIID_ITextServices , & expected_iid_itextservices ) ,
2014-01-25 15:24:43 +01:00
" unexpected value for IID_ITextServices: %s \n " , wine_dbgstr_guid ( pIID_ITextServices ) ) ;
2011-07-04 06:44:00 +02:00
ok ( IsEqualIID ( pIID_ITextHost , & expected_iid_itexthost ) ,
2014-01-25 15:24:43 +01:00
" unexpected value for IID_ITextHost: %s \n " , wine_dbgstr_guid ( pIID_ITextHost ) ) ;
2011-07-04 06:44:00 +02:00
ok ( IsEqualIID ( pIID_ITextHost2 , & expected_iid_itexthost2 ) ,
2014-01-25 15:24:43 +01:00
" unexpected value for IID_ITextHost2: %s \n " , wine_dbgstr_guid ( pIID_ITextHost2 ) ) ;
2011-07-04 06:43:52 +02:00
}
2012-03-28 00:35:47 +02:00
/* Outer IUnknown for COM aggregation tests */
struct unk_impl {
IUnknown IUnknown_iface ;
LONG ref ;
IUnknown * inner_unk ;
} ;
static inline struct unk_impl * impl_from_IUnknown ( IUnknown * iface )
{
return CONTAINING_RECORD ( iface , struct unk_impl , IUnknown_iface ) ;
}
static HRESULT WINAPI unk_QueryInterface ( IUnknown * iface , REFIID riid , void * * ppv )
{
struct unk_impl * This = impl_from_IUnknown ( iface ) ;
return IUnknown_QueryInterface ( This - > inner_unk , riid , ppv ) ;
}
static ULONG WINAPI unk_AddRef ( IUnknown * iface )
{
struct unk_impl * This = impl_from_IUnknown ( iface ) ;
return InterlockedIncrement ( & This - > ref ) ;
}
static ULONG WINAPI unk_Release ( IUnknown * iface )
{
struct unk_impl * This = impl_from_IUnknown ( iface ) ;
return InterlockedDecrement ( & This - > ref ) ;
}
static const IUnknownVtbl unk_vtbl =
{
unk_QueryInterface ,
unk_AddRef ,
unk_Release
} ;
static void test_COM ( void )
{
struct unk_impl unk_obj = { { & unk_vtbl } , 19 , NULL } ;
struct ITextHostTestImpl texthost = { { & itextHostVtbl } , 1 } ;
ITextServices * textsrv ;
ULONG refcount ;
HRESULT hr ;
/* COM aggregation */
hr = pCreateTextServices ( & unk_obj . IUnknown_iface , & texthost . ITextHost_iface ,
& unk_obj . inner_unk ) ;
ok ( hr = = S_OK , " CreateTextServices failed: %08x \n " , hr ) ;
hr = IUnknown_QueryInterface ( unk_obj . inner_unk , pIID_ITextServices , ( void * * ) & textsrv ) ;
ok ( hr = = S_OK , " QueryInterface for IID_ITextServices failed: %08x \n " , hr ) ;
refcount = ITextServices_AddRef ( textsrv ) ;
ok ( refcount = = unk_obj . ref , " CreateTextServices just pretends to support COM aggregation \n " ) ;
refcount = ITextServices_Release ( textsrv ) ;
ok ( refcount = = unk_obj . ref , " CreateTextServices just pretends to support COM aggregation \n " ) ;
refcount = ITextServices_Release ( textsrv ) ;
ok ( refcount = = 19 , " Refcount should be back at 19 but is %u \n " , refcount ) ;
IUnknown_Release ( unk_obj . inner_unk ) ;
}
2011-07-04 06:43:52 +02:00
2014-10-28 13:10:46 +01:00
static ULONG get_refcount ( IUnknown * iface )
{
IUnknown_AddRef ( iface ) ;
return IUnknown_Release ( iface ) ;
}
static void test_QueryInterface ( void )
{
2015-05-29 21:45:43 +02:00
ITextServices * txtserv ;
ITextHost * host ;
2014-10-28 13:10:46 +01:00
HRESULT hres ;
IRichEditOle * reole , * txtsrv_reole ;
ITextDocument * txtdoc , * txtsrv_txtdoc ;
2018-09-27 15:48:02 +02:00
ITextDocument2Old * txtdoc2old , * txtsrv_txtdoc2old ;
2021-03-31 13:23:05 +02:00
IUnknown * unk , * unk2 ;
2014-10-28 13:10:46 +01:00
ULONG refcount ;
2015-05-29 21:45:43 +02:00
if ( ! init_texthost ( & txtserv , & host ) )
2014-10-28 13:10:46 +01:00
return ;
refcount = get_refcount ( ( IUnknown * ) txtserv ) ;
ok ( refcount = = 1 , " got wrong ref count: %d \n " , refcount ) ;
/* IID_IRichEditOle */
hres = ITextServices_QueryInterface ( txtserv , & IID_IRichEditOle , ( void * * ) & txtsrv_reole ) ;
ok ( hres = = S_OK , " ITextServices_QueryInterface: 0x%08x \n " , hres ) ;
refcount = get_refcount ( ( IUnknown * ) txtserv ) ;
ok ( refcount = = 2 , " got wrong ref count: %d \n " , refcount ) ;
refcount = get_refcount ( ( IUnknown * ) txtsrv_reole ) ;
ok ( refcount = = 2 , " got wrong ref count: %d \n " , refcount ) ;
2021-03-31 13:23:05 +02:00
hres = ITextServices_QueryInterface ( txtserv , & IID_IUnknown , ( void * * ) & unk ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
hres = IRichEditOle_QueryInterface ( txtsrv_reole , & IID_IUnknown , ( void * * ) & unk2 ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
ok ( unk = = unk2 , " unknowns differ \n " ) ;
IUnknown_Release ( unk2 ) ;
IUnknown_Release ( unk ) ;
2014-10-28 13:10:46 +01:00
hres = IRichEditOle_QueryInterface ( txtsrv_reole , & IID_ITextDocument , ( void * * ) & txtdoc ) ;
ok ( hres = = S_OK , " IRichEditOle_QueryInterface: 0x%08x \n " , hres ) ;
refcount = get_refcount ( ( IUnknown * ) txtserv ) ;
ok ( refcount = = 3 , " got wrong ref count: %d \n " , refcount ) ;
refcount = get_refcount ( ( IUnknown * ) txtsrv_reole ) ;
ok ( refcount = = 3 , " got wrong ref count: %d \n " , refcount ) ;
ITextDocument_Release ( txtdoc ) ;
refcount = get_refcount ( ( IUnknown * ) txtserv ) ;
ok ( refcount = = 2 , " got wrong ref count: %d \n " , refcount ) ;
2018-09-27 15:48:02 +02:00
hres = IRichEditOle_QueryInterface ( txtsrv_reole , & IID_ITextDocument2Old , ( void * * ) & txtdoc2old ) ;
ok ( hres = = S_OK , " IRichEditOle_QueryInterface: 0x%08x \n " , hres ) ;
refcount = get_refcount ( ( IUnknown * ) txtserv ) ;
ok ( refcount = = 3 , " got wrong ref count: %d \n " , refcount ) ;
refcount = get_refcount ( ( IUnknown * ) txtsrv_reole ) ;
ok ( refcount = = 3 , " got wrong ref count: %d \n " , refcount ) ;
ITextDocument2Old_Release ( txtdoc2old ) ;
refcount = get_refcount ( ( IUnknown * ) txtserv ) ;
ok ( refcount = = 2 , " got wrong ref count: %d \n " , refcount ) ;
2014-10-28 13:10:46 +01:00
IRichEditOle_Release ( txtsrv_reole ) ;
refcount = get_refcount ( ( IUnknown * ) txtserv ) ;
ok ( refcount = = 1 , " got wrong ref count: %d \n " , refcount ) ;
/* IID_ITextDocument */
hres = ITextServices_QueryInterface ( txtserv , & IID_ITextDocument , ( void * * ) & txtsrv_txtdoc ) ;
ok ( hres = = S_OK , " ITextServices_QueryInterface: 0x%08x \n " , hres ) ;
refcount = get_refcount ( ( IUnknown * ) txtserv ) ;
ok ( refcount = = 2 , " got wrong ref count: %d \n " , refcount ) ;
refcount = get_refcount ( ( IUnknown * ) txtsrv_txtdoc ) ;
ok ( refcount = = 2 , " got wrong ref count: %d \n " , refcount ) ;
hres = ITextDocument_QueryInterface ( txtsrv_txtdoc , & IID_IRichEditOle , ( void * * ) & reole ) ;
ok ( hres = = S_OK , " ITextDocument_QueryInterface: 0x%08x \n " , hres ) ;
refcount = get_refcount ( ( IUnknown * ) txtserv ) ;
ok ( refcount = = 3 , " got wrong ref count: %d \n " , refcount ) ;
refcount = get_refcount ( ( IUnknown * ) txtsrv_txtdoc ) ;
ok ( refcount = = 3 , " got wrong ref count: %d \n " , refcount ) ;
IRichEditOle_Release ( reole ) ;
refcount = get_refcount ( ( IUnknown * ) txtserv ) ;
ok ( refcount = = 2 , " got wrong ref count: %d \n " , refcount ) ;
ITextDocument_Release ( txtsrv_txtdoc ) ;
refcount = get_refcount ( ( IUnknown * ) txtserv ) ;
ok ( refcount = = 1 , " got wrong ref count: %d \n " , refcount ) ;
2018-09-27 15:48:02 +02:00
/* ITextDocument2Old */
hres = ITextServices_QueryInterface ( txtserv , & IID_ITextDocument2Old , ( void * * ) & txtsrv_txtdoc2old ) ;
ok ( hres = = S_OK , " ITextServices_QueryInterface: 0x%08x \n " , hres ) ;
refcount = get_refcount ( ( IUnknown * ) txtserv ) ;
ok ( refcount = = 2 , " got wrong ref count: %d \n " , refcount ) ;
refcount = get_refcount ( ( IUnknown * ) txtsrv_txtdoc2old ) ;
ok ( refcount = = 2 , " got wrong ref count: %d \n " , refcount ) ;
hres = ITextDocument2Old_QueryInterface ( txtsrv_txtdoc2old , & IID_IRichEditOle , ( void * * ) & reole ) ;
ok ( hres = = S_OK , " ITextDocument2Old_QueryInterface: 0x%08x \n " , hres ) ;
refcount = get_refcount ( ( IUnknown * ) txtserv ) ;
ok ( refcount = = 3 , " got wrong ref count: %d \n " , refcount ) ;
refcount = get_refcount ( ( IUnknown * ) txtsrv_txtdoc2old ) ;
ok ( refcount = = 3 , " got wrong ref count: %d \n " , refcount ) ;
IRichEditOle_Release ( reole ) ;
refcount = get_refcount ( ( IUnknown * ) txtserv ) ;
ok ( refcount = = 2 , " got wrong ref count: %d \n " , refcount ) ;
ITextDocument2Old_Release ( txtsrv_txtdoc2old ) ;
refcount = get_refcount ( ( IUnknown * ) txtserv ) ;
ok ( refcount = = 1 , " got wrong ref count: %d \n " , refcount ) ;
2014-10-28 13:10:46 +01:00
2015-05-29 21:45:43 +02:00
ITextServices_Release ( txtserv ) ;
ITextHost_Release ( host ) ;
2014-10-28 13:10:46 +01:00
}
2018-08-20 16:03:49 +02:00
static void test_default_format ( void )
{
ITextServices * txtserv ;
ITextHost * host ;
HRESULT result ;
LRESULT lresult ;
CHARFORMAT2W cf2 ;
const CHARFORMATW * host_cf ;
DWORD expected_effects ;
if ( ! init_texthost ( & txtserv , & host ) )
return ;
cf2 . cbSize = sizeof ( CHARFORMAT2W ) ;
result = ITextServices_TxSendMessage ( txtserv , EM_GETCHARFORMAT , SCF_DEFAULT , ( LPARAM ) & cf2 , & lresult ) ;
ok ( result = = S_OK , " ITextServices_TxSendMessage failed: 0x%08x. \n " , result ) ;
ITextHostImpl_TxGetCharFormat ( host , & host_cf ) ;
ok ( ! lstrcmpW ( host_cf - > szFaceName , cf2 . szFaceName ) , " got wrong font name: %s. \n " , wine_dbgstr_w ( cf2 . szFaceName ) ) ;
2018-11-29 13:16:21 +01:00
ok ( cf2 . yHeight = = host_cf - > yHeight , " got wrong yHeight: %d, expected %d. \n " , cf2 . yHeight , host_cf - > yHeight ) ;
2018-08-20 16:03:49 +02:00
expected_effects = ( cf2 . dwEffects & ~ ( CFE_AUTOCOLOR | CFE_AUTOBACKCOLOR ) ) ;
2018-11-29 13:16:21 +01:00
ok ( host_cf - > dwEffects = = expected_effects , " got wrong dwEffects: %x, expected %x. \n " , cf2 . dwEffects , expected_effects ) ;
2018-08-20 16:03:49 +02:00
ok ( cf2 . bPitchAndFamily = = host_cf - > bPitchAndFamily , " got wrong bPitchAndFamily: %x, expected %x. \n " ,
cf2 . bPitchAndFamily , host_cf - > bPitchAndFamily ) ;
ok ( cf2 . bCharSet = = host_cf - > bCharSet , " got wrong bCharSet: %x, expected %x. \n " , cf2 . bCharSet , host_cf - > bCharSet ) ;
ITextServices_Release ( txtserv ) ;
ITextHost_Release ( host ) ;
}
2018-09-07 10:01:26 +02:00
static void test_TxGetScroll ( void )
{
ITextServices * txtserv ;
ITextHost * host ;
HRESULT ret ;
2021-03-22 09:55:50 +01:00
LONG min_pos , max_pos , pos , page ;
BOOL enabled ;
ITextHostTestImpl * host_impl ;
RECT client = { 0 , 0 , 100 , 100 } ;
2018-09-07 10:01:26 +02:00
if ( ! init_texthost ( & txtserv , & host ) )
return ;
2021-03-22 09:55:50 +01:00
host_impl = impl_from_ITextHost ( host ) ;
2018-09-07 10:01:26 +02:00
ret = ITextServices_TxGetHScroll ( txtserv , NULL , NULL , NULL , NULL , NULL ) ;
2019-12-02 00:15:18 +01:00
ok ( ret = = S_OK , " ITextServices_TxGetHScroll failed: 0x%08x. \n " , ret ) ;
2018-09-07 10:01:26 +02:00
ret = ITextServices_TxGetVScroll ( txtserv , NULL , NULL , NULL , NULL , NULL ) ;
2019-12-02 00:15:18 +01:00
ok ( ret = = S_OK , " ITextServices_TxGetVScroll failed: 0x%08x. \n " , ret ) ;
2018-09-07 10:01:26 +02:00
2021-03-22 09:55:50 +01:00
ret = ITextServices_TxGetVScroll ( txtserv , & min_pos , & max_pos , & pos , & page , & enabled ) ;
ok ( ret = = S_OK , " ITextServices_TxGetHScroll failed: 0x%08x. \n " , ret ) ;
ok ( min_pos = = 0 , " got %d \n " , min_pos ) ;
ok ( max_pos = = 0 , " got %d \n " , max_pos ) ;
ok ( pos = = 0 , " got %d \n " , pos ) ;
ok ( page = = 0 , " got %d \n " , page ) ;
ok ( ! enabled , " got %d \n " , enabled ) ;
host_impl - > scrollbars = WS_VSCROLL ;
host_impl - > props = TXTBIT_MULTILINE | TXTBIT_RICHTEXT | TXTBIT_WORDWRAP ;
ITextServices_OnTxPropertyBitsChange ( txtserv , TXTBIT_SCROLLBARCHANGE | TXTBIT_MULTILINE | TXTBIT_RICHTEXT | TXTBIT_WORDWRAP , host_impl - > props ) ;
host_impl - > window = CreateWindowExA ( 0 , " static " , NULL , WS_POPUP | WS_VISIBLE ,
0 , 0 , 400 , 400 , 0 , 0 , 0 , NULL ) ;
host_impl - > client_rect = client ;
ret = ITextServices_OnTxInPlaceActivate ( txtserv , & client ) ;
ok ( ret = = S_OK , " got 0x%08x. \n " , ret ) ;
ret = ITextServices_TxGetVScroll ( txtserv , & min_pos , & max_pos , & pos , & page , & enabled ) ;
ok ( ret = = S_OK , " ITextServices_TxGetHScroll failed: 0x%08x. \n " , ret ) ;
ok ( min_pos = = 0 , " got %d \n " , min_pos ) ;
2022-01-29 00:36:43 +01:00
todo_wine
2021-03-22 09:55:50 +01:00
ok ( max_pos = = 0 , " got %d \n " , max_pos ) ;
ok ( pos = = 0 , " got %d \n " , pos ) ;
ok ( page = = client . bottom , " got %d \n " , page ) ;
ok ( ! enabled , " got %d \n " , enabled ) ;
ret = ITextServices_TxSetText ( txtserv , lorem ) ;
ok ( ret = = S_OK , " got 0x%08x. \n " , ret ) ;
ret = ITextServices_TxGetVScroll ( txtserv , & min_pos , & max_pos , & pos , & page , & enabled ) ;
ok ( ret = = S_OK , " ITextServices_TxGetHScroll failed: 0x%08x. \n " , ret ) ;
ok ( min_pos = = 0 , " got %d \n " , min_pos ) ;
ok ( max_pos > client . bottom , " got %d \n " , max_pos ) ;
ok ( pos = = 0 , " got %d \n " , pos ) ;
ok ( page = = client . bottom , " got %d \n " , page ) ;
ok ( enabled , " got %d \n " , enabled ) ;
host_impl - > scrollbars = WS_VSCROLL | ES_DISABLENOSCROLL ;
ITextServices_OnTxPropertyBitsChange ( txtserv , TXTBIT_SCROLLBARCHANGE , host_impl - > props ) ;
ITextServices_TxSetText ( txtserv , L " short " ) ;
ret = ITextServices_TxGetVScroll ( txtserv , & min_pos , & max_pos , & pos , & page , & enabled ) ;
ok ( ret = = S_OK , " ITextServices_TxGetHScroll failed: 0x%08x. \n " , ret ) ;
ok ( min_pos = = 0 , " got %d \n " , min_pos ) ;
2022-01-29 00:36:43 +01:00
todo_wine
2021-03-22 09:55:50 +01:00
ok ( max_pos = = 0 , " got %d \n " , max_pos ) ;
ok ( pos = = 0 , " got %d \n " , pos ) ;
ok ( page = = client . bottom , " got %d \n " , page ) ;
ok ( ! enabled , " got %d \n " , enabled ) ;
DestroyWindow ( host_impl - > window ) ;
2018-09-07 10:01:26 +02:00
ITextServices_Release ( txtserv ) ;
ITextHost_Release ( host ) ;
}
2021-03-30 13:36:47 +02:00
static void test_notifications ( void )
{
ITextServices * txtserv ;
ITextHost * host ;
LRESULT res ;
HRESULT hr ;
RECT client = { 0 , 0 , 100 , 100 } ;
ITextHostTestImpl * host_impl ;
init_texthost ( & txtserv , & host ) ;
host_impl = impl_from_ITextHost ( host ) ;
host_impl - > scrollbars = WS_VSCROLL ;
host_impl - > props = TXTBIT_MULTILINE | TXTBIT_RICHTEXT | TXTBIT_WORDWRAP ;
ITextServices_OnTxPropertyBitsChange ( txtserv , TXTBIT_SCROLLBARCHANGE | TXTBIT_MULTILINE | TXTBIT_RICHTEXT | TXTBIT_WORDWRAP , host_impl - > props ) ;
ITextServices_TxSetText ( txtserv , lorem ) ;
host_impl - > window = CreateWindowExA ( 0 , " static " , NULL , WS_POPUP | WS_VISIBLE ,
0 , 0 , 400 , 400 , 0 , 0 , 0 , NULL ) ;
host_impl - > client_rect = client ;
hr = ITextServices_OnTxInPlaceActivate ( txtserv , & client ) ;
ok ( hr = = S_OK , " got 0x%08x. \n " , hr ) ;
hr = ITextServices_TxSendMessage ( txtserv , EM_SETEVENTMASK , 0 , ENM_SCROLL , & res ) ;
ok ( hr = = S_OK , " got %08x \n " , hr ) ;
/* check EN_VSCROLL notification is sent */
en_vscroll_sent = 0 ;
hr = ITextServices_TxSendMessage ( txtserv , WM_VSCROLL , SB_LINEDOWN , 0 , & res ) ;
ok ( hr = = S_OK , " got %08x \n " , hr ) ;
ok ( en_vscroll_sent = = 1 , " got %d \n " , en_vscroll_sent ) ;
hr = ITextServices_TxSendMessage ( txtserv , WM_VSCROLL , SB_BOTTOM , 0 , & res ) ;
ok ( hr = = S_OK , " got %08x \n " , hr ) ;
ok ( en_vscroll_sent = = 2 , " got %d \n " , en_vscroll_sent ) ;
/* but not when the thumb is moved */
hr = ITextServices_TxSendMessage ( txtserv , WM_VSCROLL , MAKEWPARAM ( SB_THUMBTRACK , 0 ) , 0 , & res ) ;
ok ( hr = = S_OK , " got %08x \n " , hr ) ;
hr = ITextServices_TxSendMessage ( txtserv , WM_VSCROLL , MAKEWPARAM ( SB_THUMBPOSITION , 0 ) , 0 , & res ) ;
ok ( hr = = S_OK , " got %08x \n " , hr ) ;
ok ( en_vscroll_sent = = 2 , " got %d \n " , en_vscroll_sent ) ;
2021-03-30 13:36:50 +02:00
/* EN_UPDATE is sent by TxDraw() */
en_update_sent = 0 ;
hr = ITextServices_TxDraw ( txtserv , DVASPECT_CONTENT , 0 , NULL , NULL , NULL , NULL , NULL , NULL ,
NULL , NULL , 0 , TXTVIEW_ACTIVE ) ;
ok ( hr = = S_OK , " got %08x \n " , hr ) ;
ok ( en_update_sent = = 1 , " got %d \n " , en_update_sent ) ;
2021-03-30 13:36:47 +02:00
DestroyWindow ( host_impl - > window ) ;
ITextServices_Release ( txtserv ) ;
ITextHost_Release ( host ) ;
}
2008-11-11 20:08:53 +01:00
START_TEST ( txtsrv )
{
2015-05-29 21:45:43 +02:00
ITextServices * txtserv ;
ITextHost * host ;
2008-11-11 20:08:53 +01:00
setup_thiscall_wrappers ( ) ;
/* Must explicitly LoadLibrary(). The test has no references to functions in
* RICHED20 . DLL , so the linker doesn ' t actually link to it . */
2013-10-01 23:09:53 +02:00
hmoduleRichEdit = LoadLibraryA ( " riched20.dll " ) ;
2008-11-11 20:08:53 +01:00
ok ( hmoduleRichEdit ! = NULL , " error: %d \n " , ( int ) GetLastError ( ) ) ;
2011-07-04 06:43:52 +02:00
pIID_ITextServices = ( IID * ) GetProcAddress ( hmoduleRichEdit , " IID_ITextServices " ) ;
pIID_ITextHost = ( IID * ) GetProcAddress ( hmoduleRichEdit , " IID_ITextHost " ) ;
pIID_ITextHost2 = ( IID * ) GetProcAddress ( hmoduleRichEdit , " IID_ITextHost2 " ) ;
2012-03-28 00:34:31 +02:00
pCreateTextServices = ( void * ) GetProcAddress ( hmoduleRichEdit , " CreateTextServices " ) ;
2011-07-04 06:43:52 +02:00
test_IIDs ( ) ;
2012-03-28 00:35:47 +02:00
test_COM ( ) ;
2011-07-04 06:43:52 +02:00
2015-05-29 21:45:43 +02:00
if ( init_texthost ( & txtserv , & host ) )
2008-11-11 20:08:53 +01:00
{
2015-05-29 21:45:43 +02:00
ITextServices_Release ( txtserv ) ;
ITextHost_Release ( host ) ;
2008-11-12 20:47:24 +01:00
test_TxGetText ( ) ;
2009-01-09 05:51:27 +01:00
test_TxSetText ( ) ;
2009-01-16 00:18:05 +01:00
test_TxGetNaturalSize ( ) ;
2009-06-03 08:02:56 +02:00
test_TxDraw ( ) ;
2014-10-28 13:10:46 +01:00
test_QueryInterface ( ) ;
2018-08-20 16:03:49 +02:00
test_default_format ( ) ;
2018-09-07 10:01:26 +02:00
test_TxGetScroll ( ) ;
2021-03-30 13:36:47 +02:00
test_notifications ( ) ;
2008-11-11 20:08:53 +01:00
}
if ( wrapperCodeMem ) VirtualFree ( wrapperCodeMem , 0 , MEM_RELEASE ) ;
}