richole.c 45.9 KB
Newer Older
1
/*
2
 * RichEdit GUIDs and OLE interface
3 4
 *
 * Copyright 2004 by Krzysztof Foltman
5
 * Copyright 2004 Aric Stewart
6 7 8 9 10 11 12 13 14 15 16 17 18
 *
 * 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
19
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 21
 */

22
#include <stdarg.h>
23

24 25 26 27 28 29 30 31 32 33
#define NONAMELESSUNION
#define NONAMELESSSTRUCT
#define COBJMACROS

#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "ole2.h"
#include "richole.h"
34
#include "editor.h"
35
#include "tom.h"
36
#include "wine/debug.h"
37

38
WINE_DEFAULT_DEBUG_CHANNEL(richedit);
39

40 41
/* there is no way to be consistent across different sets of headers - mingw, Wine, Win32 SDK*/

42
#include "initguid.h"
43 44 45
DEFINE_GUID(IID_ITextServices, 0x8d33f740, 0xcf58, 0x11ce, 0xa8, 0x9d, 0x00, 0xaa, 0x00, 0x6c, 0xad, 0xc5);
DEFINE_GUID(IID_ITextHost, 0x13e670f4,0x1a5a,0x11cf,0xab,0xeb,0x00,0xaa,0x00,0xb6,0x5e,0xa1);
DEFINE_GUID(IID_ITextHost2, 0x13e670f5,0x1a5a,0x11cf,0xab,0xeb,0x00,0xaa,0x00,0xb6,0x5e,0xa1);
46
DEFINE_GUID(IID_ITextDocument, 0x8cc497c0, 0xa1df, 0x11ce, 0x80, 0x98, 0x00, 0xaa, 0x00, 0x47, 0xbe, 0x5d);
47 48 49 50
DEFINE_GUID(IID_ITextRange, 0x8cc497c2, 0xa1df, 0x11ce, 0x80, 0x98, 0x00, 0xaa, 0x00, 0x47, 0xbe, 0x5d);
DEFINE_GUID(IID_ITextSelection, 0x8cc497c1, 0xa1df, 0x11ce, 0x80, 0x98, 0x00, 0xaa, 0x00, 0x47, 0xbe, 0x5d);

typedef struct ITextSelectionImpl ITextSelectionImpl;
51
typedef struct IOleClientSiteImpl IOleClientSiteImpl;
52

53
typedef struct IRichEditOleImpl {
54 55
    IRichEditOle IRichEditOle_iface;
    ITextDocument ITextDocument_iface;
56 57 58
    LONG ref;

    ME_TextEditor *editor;
59
    ITextSelectionImpl *txtSel;
60
    IOleClientSiteImpl *clientSite;
61 62
} IRichEditOleImpl;

63
struct ITextSelectionImpl {
64
    ITextSelection ITextSelection_iface;
65 66 67 68 69
    LONG ref;

    IRichEditOleImpl *reOle;
};

70
struct IOleClientSiteImpl {
71
    IOleClientSite IOleClientSite_iface;
72 73 74 75 76
    LONG ref;

    IRichEditOleImpl *reOle;
};

77 78
static inline IRichEditOleImpl *impl_from_IRichEditOle(IRichEditOle *iface)
{
79
    return CONTAINING_RECORD(iface, IRichEditOleImpl, IRichEditOle_iface);
80 81 82 83
}

static inline IRichEditOleImpl *impl_from_ITextDocument(ITextDocument *iface)
{
84
    return CONTAINING_RECORD(iface, IRichEditOleImpl, ITextDocument_iface);
85 86
}

87 88 89
static HRESULT WINAPI
IRichEditOle_fnQueryInterface(IRichEditOle *me, REFIID riid, LPVOID *ppvObj)
{
90
    IRichEditOleImpl *This = impl_from_IRichEditOle(me);
91 92 93

    TRACE("%p %s\n", This, debugstr_guid(riid) );

94
    *ppvObj = NULL;
95 96
    if (IsEqualGUID(riid, &IID_IUnknown) ||
        IsEqualGUID(riid, &IID_IRichEditOle))
97
        *ppvObj = &This->IRichEditOle_iface;
98
    else if (IsEqualGUID(riid, &IID_ITextDocument))
99
        *ppvObj = &This->ITextDocument_iface;
100
    if (*ppvObj)
101 102 103 104
    {
        IRichEditOle_AddRef(me);
        return S_OK;
    }
105
    FIXME("%p: unhandled interface %s\n", This, debugstr_guid(riid) );
106 107 108 109 110 111 112
 
    return E_NOINTERFACE;   
}

static ULONG WINAPI
IRichEditOle_fnAddRef(IRichEditOle *me)
{
113
    IRichEditOleImpl *This = impl_from_IRichEditOle(me);
114 115
    ULONG ref = InterlockedIncrement( &This->ref );

116
    TRACE("%p ref = %u\n", This, ref);
117 118 119 120 121 122 123

    return ref;
}

static ULONG WINAPI
IRichEditOle_fnRelease(IRichEditOle *me)
{
124
    IRichEditOleImpl *This = impl_from_IRichEditOle(me);
125 126
    ULONG ref = InterlockedDecrement(&This->ref);

127
    TRACE ("%p ref=%u\n", This, ref);
128 129 130 131

    if (!ref)
    {
        TRACE ("Destroying %p\n", This);
132
        This->txtSel->reOle = NULL;
133
        ITextSelection_Release(&This->txtSel->ITextSelection_iface);
134
        IOleClientSite_Release(&This->clientSite->IOleClientSite_iface);
135
        heap_free(This);
136 137 138 139 140 141 142
    }
    return ref;
}

static HRESULT WINAPI
IRichEditOle_fnActivateAs(IRichEditOle *me, REFCLSID rclsid, REFCLSID rclsidAs)
{
143
    IRichEditOleImpl *This = impl_from_IRichEditOle(me);
144 145 146 147 148 149 150
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
IRichEditOle_fnContextSensitiveHelp(IRichEditOle *me, BOOL fEnterMode)
{
151
    IRichEditOleImpl *This = impl_from_IRichEditOle(me);
152 153 154 155 156 157 158 159
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
IRichEditOle_fnConvertObject(IRichEditOle *me, LONG iob,
               REFCLSID rclsidNew, LPCSTR lpstrUserTypeNew)
{
160
    IRichEditOleImpl *This = impl_from_IRichEditOle(me);
161 162 163 164
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

165 166 167 168 169
static inline IOleClientSiteImpl *impl_from_IOleClientSite(IOleClientSite *iface)
{
    return CONTAINING_RECORD(iface, IOleClientSiteImpl, IOleClientSite_iface);
}

170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
static HRESULT WINAPI
IOleClientSite_fnQueryInterface(IOleClientSite *me, REFIID riid, LPVOID *ppvObj)
{
    TRACE("%p %s\n", me, debugstr_guid(riid) );

    *ppvObj = NULL;
    if (IsEqualGUID(riid, &IID_IUnknown) ||
        IsEqualGUID(riid, &IID_IOleClientSite))
        *ppvObj = me;
    if (*ppvObj)
    {
        IOleClientSite_AddRef(me);
        return S_OK;
    }
    FIXME("%p: unhandled interface %s\n", me, debugstr_guid(riid) );

    return E_NOINTERFACE;
}

189
static ULONG WINAPI IOleClientSite_fnAddRef(IOleClientSite *iface)
190
{
191
    IOleClientSiteImpl *This = impl_from_IOleClientSite(iface);
192 193 194
    return InterlockedIncrement(&This->ref);
}

195
static ULONG WINAPI IOleClientSite_fnRelease(IOleClientSite *iface)
196
{
197
    IOleClientSiteImpl *This = impl_from_IOleClientSite(iface);
198 199 200 201 202 203
    ULONG ref = InterlockedDecrement(&This->ref);
    if (ref == 0)
        heap_free(This);
    return ref;
}

204
static HRESULT WINAPI IOleClientSite_fnSaveObject(IOleClientSite *iface)
205
{
206
    IOleClientSiteImpl *This = impl_from_IOleClientSite(iface);
207 208 209
    if (!This->reOle)
        return CO_E_RELEASED;

210
    FIXME("stub %p\n", iface);
211 212 213 214
    return E_NOTIMPL;
}


215 216
static HRESULT WINAPI IOleClientSite_fnGetMoniker(IOleClientSite *iface, DWORD dwAssign,
        DWORD dwWhichMoniker, IMoniker **ppmk)
217
{
218
    IOleClientSiteImpl *This = impl_from_IOleClientSite(iface);
219 220 221
    if (!This->reOle)
        return CO_E_RELEASED;

222
    FIXME("stub %p\n", iface);
223 224 225
    return E_NOTIMPL;
}

226 227
static HRESULT WINAPI IOleClientSite_fnGetContainer(IOleClientSite *iface,
        IOleContainer **ppContainer)
228
{
229
    IOleClientSiteImpl *This = impl_from_IOleClientSite(iface);
230 231 232
    if (!This->reOle)
        return CO_E_RELEASED;

233
    FIXME("stub %p\n", iface);
234 235 236
    return E_NOTIMPL;
}

237
static HRESULT WINAPI IOleClientSite_fnShowObject(IOleClientSite *iface)
238
{
239
    IOleClientSiteImpl *This = impl_from_IOleClientSite(iface);
240 241 242
    if (!This->reOle)
        return CO_E_RELEASED;

243
    FIXME("stub %p\n", iface);
244 245 246
    return E_NOTIMPL;
}

247
static HRESULT WINAPI IOleClientSite_fnOnShowWindow(IOleClientSite *iface, BOOL fShow)
248
{
249
    IOleClientSiteImpl *This = impl_from_IOleClientSite(iface);
250 251 252
    if (!This->reOle)
        return CO_E_RELEASED;

253
    FIXME("stub %p\n", iface);
254 255 256
    return E_NOTIMPL;
}

257
static HRESULT WINAPI IOleClientSite_fnRequestNewObjectLayout(IOleClientSite *iface)
258
{
259
    IOleClientSiteImpl *This = impl_from_IOleClientSite(iface);
260 261 262
    if (!This->reOle)
        return CO_E_RELEASED;

263
    FIXME("stub %p\n", iface);
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
    return E_NOTIMPL;
}

static const IOleClientSiteVtbl ocst = {
    IOleClientSite_fnQueryInterface,
    IOleClientSite_fnAddRef,
    IOleClientSite_fnRelease,
    IOleClientSite_fnSaveObject,
    IOleClientSite_fnGetMoniker,
    IOleClientSite_fnGetContainer,
    IOleClientSite_fnShowObject,
    IOleClientSite_fnOnShowWindow,
    IOleClientSite_fnRequestNewObjectLayout
};

static IOleClientSiteImpl *
CreateOleClientSite(IRichEditOleImpl *reOle)
{
    IOleClientSiteImpl *clientSite = heap_alloc(sizeof *clientSite);
    if (!clientSite)
        return NULL;

286
    clientSite->IOleClientSite_iface.lpVtbl = &ocst;
287 288 289 290 291
    clientSite->ref = 1;
    clientSite->reOle = reOle;
    return clientSite;
}

292 293 294 295
static HRESULT WINAPI
IRichEditOle_fnGetClientSite(IRichEditOle *me,
               LPOLECLIENTSITE *lplpolesite)
{
296
    IRichEditOleImpl *This = impl_from_IRichEditOle(me);
297 298 299 300 301

    TRACE("%p,%p\n",This, lplpolesite);

    if(!lplpolesite)
        return E_INVALIDARG;
302
    *lplpolesite = &This->clientSite->IOleClientSite_iface;
303 304
    IOleClientSite_fnAddRef(*lplpolesite);
    return S_OK;
305 306 307 308 309 310
}

static HRESULT WINAPI
IRichEditOle_fnGetClipboardData(IRichEditOle *me, CHARRANGE *lpchrg,
               DWORD reco, LPDATAOBJECT *lplpdataobj)
{
311
    IRichEditOleImpl *This = impl_from_IRichEditOle(me);
312 313
    ME_Cursor start;
    int nChars;
314

315
    TRACE("(%p,%p,%d)\n",This, lpchrg, reco);
316 317 318
    if(!lplpdataobj)
        return E_INVALIDARG;
    if(!lpchrg) {
319 320 321 322 323 324
        int nFrom, nTo, nStartCur = ME_GetSelectionOfs(This->editor, &nFrom, &nTo);
        start = This->editor->pCursors[nStartCur];
        nChars = nTo - nFrom;
    } else {
        ME_CursorFromCharOfs(This->editor, lpchrg->cpMin, &start);
        nChars = lpchrg->cpMax - lpchrg->cpMin;
325
    }
326
    return ME_GetDataObject(This->editor, &start, nChars, lplpdataobj);
327 328 329 330
}

static LONG WINAPI IRichEditOle_fnGetLinkCount(IRichEditOle *me)
{
331
    IRichEditOleImpl *This = impl_from_IRichEditOle(me);
332 333 334 335 336 337 338 339
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
IRichEditOle_fnGetObject(IRichEditOle *me, LONG iob,
               REOBJECT *lpreobject, DWORD dwFlags)
{
340
    IRichEditOleImpl *This = impl_from_IRichEditOle(me);
341 342 343 344 345 346 347
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static LONG WINAPI
IRichEditOle_fnGetObjectCount(IRichEditOle *me)
{
348
    IRichEditOleImpl *This = impl_from_IRichEditOle(me);
349
    FIXME("stub %p\n",This);
350
    return 0;
351 352 353 354 355
}

static HRESULT WINAPI
IRichEditOle_fnHandsOffStorage(IRichEditOle *me, LONG iob)
{
356
    IRichEditOleImpl *This = impl_from_IRichEditOle(me);
357 358 359 360 361 362 363 364
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
IRichEditOle_fnImportDataObject(IRichEditOle *me, LPDATAOBJECT lpdataobj,
               CLIPFORMAT cf, HGLOBAL hMetaPict)
{
365
    IRichEditOleImpl *This = impl_from_IRichEditOle(me);
366 367 368 369 370 371 372
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
IRichEditOle_fnInPlaceDeactivate(IRichEditOle *me)
{
373
    IRichEditOleImpl *This = impl_from_IRichEditOle(me);
374 375 376 377 378
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
379
IRichEditOle_fnInsertObject(IRichEditOle *me, REOBJECT *reo)
380
{
381
    IRichEditOleImpl *This = impl_from_IRichEditOle(me);
382 383 384 385 386
    TRACE("(%p,%p)\n", This, reo);

    if (reo->cbStruct < sizeof(*reo)) return STG_E_INVALIDPARAMETER;

    ME_InsertOLEFromCursor(This->editor, reo, 0);
387
    ME_CommitUndo(This->editor);
388
    ME_UpdateRepaint(This->editor, FALSE);
389
    return S_OK;
390 391 392 393 394
}

static HRESULT WINAPI IRichEditOle_fnSaveCompleted(IRichEditOle *me, LONG iob,
               LPSTORAGE lpstg)
{
395
    IRichEditOleImpl *This = impl_from_IRichEditOle(me);
396 397 398 399 400 401 402
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
IRichEditOle_fnSetDvaspect(IRichEditOle *me, LONG iob, DWORD dvaspect)
{
403
    IRichEditOleImpl *This = impl_from_IRichEditOle(me);
404 405 406 407 408 409 410
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI IRichEditOle_fnSetHostNames(IRichEditOle *me,
               LPCSTR lpstrContainerApp, LPCSTR lpstrContainerObj)
{
411
    IRichEditOleImpl *This = impl_from_IRichEditOle(me);
412
    FIXME("stub %p %s %s\n",This, lpstrContainerApp, lpstrContainerObj);
413 414 415 416 417 418
    return E_NOTIMPL;
}

static HRESULT WINAPI
IRichEditOle_fnSetLinkAvailable(IRichEditOle *me, LONG iob, BOOL fAvailable)
{
419
    IRichEditOleImpl *This = impl_from_IRichEditOle(me);
420 421 422 423
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

424
static const IRichEditOleVtbl revt = {
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445
    IRichEditOle_fnQueryInterface,
    IRichEditOle_fnAddRef,
    IRichEditOle_fnRelease,
    IRichEditOle_fnGetClientSite,
    IRichEditOle_fnGetObjectCount,
    IRichEditOle_fnGetLinkCount,
    IRichEditOle_fnGetObject,
    IRichEditOle_fnInsertObject,
    IRichEditOle_fnConvertObject,
    IRichEditOle_fnActivateAs,
    IRichEditOle_fnSetHostNames,
    IRichEditOle_fnSetLinkAvailable,
    IRichEditOle_fnSetDvaspect,
    IRichEditOle_fnHandsOffStorage,
    IRichEditOle_fnSaveCompleted,
    IRichEditOle_fnInPlaceDeactivate,
    IRichEditOle_fnContextSensitiveHelp,
    IRichEditOle_fnGetClipboardData,
    IRichEditOle_fnImportDataObject
};

446 447 448 449 450
static HRESULT WINAPI
ITextDocument_fnQueryInterface(ITextDocument* me, REFIID riid,
    void** ppvObject)
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
451
    return IRichEditOle_fnQueryInterface(&This->IRichEditOle_iface, riid, ppvObject);
452 453 454 455 456 457
}

static ULONG WINAPI
ITextDocument_fnAddRef(ITextDocument* me)
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
458
    return IRichEditOle_fnAddRef(&This->IRichEditOle_iface);
459 460 461 462 463 464
}

static ULONG WINAPI
ITextDocument_fnRelease(ITextDocument* me)
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
465
    return IRichEditOle_fnRelease(&This->IRichEditOle_iface);
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
}

static HRESULT WINAPI
ITextDocument_fnGetTypeInfoCount(ITextDocument* me,
    UINT* pctinfo)
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
ITextDocument_fnGetTypeInfo(ITextDocument* me, UINT iTInfo, LCID lcid,
    ITypeInfo** ppTInfo)
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
ITextDocument_fnGetIDsOfNames(ITextDocument* me, REFIID riid,
    LPOLESTR* rgszNames, UINT cNames, LCID lcid, DISPID* rgDispId)
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
ITextDocument_fnInvoke(ITextDocument* me, DISPID dispIdMember,
    REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS* pDispParams,
    VARIANT* pVarResult, EXCEPINFO* pExcepInfo, UINT* puArgErr)
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
ITextDocument_fnGetName(ITextDocument* me, BSTR* pName)
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
ITextDocument_fnGetSelection(ITextDocument* me, ITextSelection** ppSel)
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
517
    TRACE("(%p)\n", me);
518
    *ppSel = &This->txtSel->ITextSelection_iface;
519 520
    ITextSelection_AddRef(*ppSel);
    return S_OK;
521 522 523
}

static HRESULT WINAPI
524
ITextDocument_fnGetStoryCount(ITextDocument* me, LONG* pCount)
525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
ITextDocument_fnGetStoryRanges(ITextDocument* me,
    ITextStoryRanges** ppStories)
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
541
ITextDocument_fnGetSaved(ITextDocument* me, LONG* pValue)
542 543 544 545 546 547 548
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
549
ITextDocument_fnSetSaved(ITextDocument* me, LONG Value)
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
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
ITextDocument_fnGetDefaultTabStop(ITextDocument* me, float* pValue)
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
ITextDocument_fnSetDefaultTabStop(ITextDocument* me, float Value)
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
ITextDocument_fnNew(ITextDocument* me)
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
581 582
ITextDocument_fnOpen(ITextDocument* me, VARIANT* pVar, LONG Flags,
    LONG CodePage)
583 584 585 586 587 588 589
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
590 591
ITextDocument_fnSave(ITextDocument* me, VARIANT* pVar, LONG Flags,
    LONG CodePage)
592 593 594 595 596 597 598
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
599
ITextDocument_fnFreeze(ITextDocument* me, LONG* pCount)
600 601 602 603 604 605 606
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
607
ITextDocument_fnUnfreeze(ITextDocument* me, LONG* pCount)
608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
ITextDocument_fnBeginEditCollection(ITextDocument* me)
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
ITextDocument_fnEndEditCollection(ITextDocument* me)
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
631
ITextDocument_fnUndo(ITextDocument* me, LONG Count, LONG* prop)
632 633 634 635 636 637 638
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
639
ITextDocument_fnRedo(ITextDocument* me, LONG Count, LONG* prop)
640 641 642 643 644 645 646
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
647
ITextDocument_fnRange(ITextDocument* me, LONG cp1, LONG cp2,
648 649 650 651 652 653 654 655
    ITextRange** ppRange)
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static HRESULT WINAPI
656
ITextDocument_fnRangeFromPoint(ITextDocument* me, LONG x, LONG y,
657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692
    ITextRange** ppRange)
{
    IRichEditOleImpl *This = impl_from_ITextDocument(me);
    FIXME("stub %p\n",This);
    return E_NOTIMPL;
}

static const ITextDocumentVtbl tdvt = {
    ITextDocument_fnQueryInterface,
    ITextDocument_fnAddRef,
    ITextDocument_fnRelease,
    ITextDocument_fnGetTypeInfoCount,
    ITextDocument_fnGetTypeInfo,
    ITextDocument_fnGetIDsOfNames,
    ITextDocument_fnInvoke,
    ITextDocument_fnGetName,
    ITextDocument_fnGetSelection,
    ITextDocument_fnGetStoryCount,
    ITextDocument_fnGetStoryRanges,
    ITextDocument_fnGetSaved,
    ITextDocument_fnSetSaved,
    ITextDocument_fnGetDefaultTabStop,
    ITextDocument_fnSetDefaultTabStop,
    ITextDocument_fnNew,
    ITextDocument_fnOpen,
    ITextDocument_fnSave,
    ITextDocument_fnFreeze,
    ITextDocument_fnUnfreeze,
    ITextDocument_fnBeginEditCollection,
    ITextDocument_fnEndEditCollection,
    ITextDocument_fnUndo,
    ITextDocument_fnRedo,
    ITextDocument_fnRange,
    ITextDocument_fnRangeFromPoint
};

693 694 695 696 697
static inline ITextSelectionImpl *impl_from_ITextSelection(ITextSelection *iface)
{
    return CONTAINING_RECORD(iface, ITextSelectionImpl, ITextSelection_iface);
}

698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716
static HRESULT WINAPI ITextSelection_fnQueryInterface(
    ITextSelection *me,
    REFIID riid,
    void **ppvObj)
{
    *ppvObj = NULL;
    if (IsEqualGUID(riid, &IID_IUnknown)
        || IsEqualGUID(riid, &IID_IDispatch)
        || IsEqualGUID(riid, &IID_ITextRange)
        || IsEqualGUID(riid, &IID_ITextSelection))
    {
        *ppvObj = me;
        ITextSelection_AddRef(me);
        return S_OK;
    }

    return E_NOINTERFACE;
}

717
static ULONG WINAPI ITextSelection_fnAddRef(ITextSelection *me)
718
{
719
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
720 721 722
    return InterlockedIncrement(&This->ref);
}

723
static ULONG WINAPI ITextSelection_fnRelease(ITextSelection *me)
724
{
725
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
726 727 728 729 730 731
    ULONG ref = InterlockedDecrement(&This->ref);
    if (ref == 0)
        heap_free(This);
    return ref;
}

732
static HRESULT WINAPI ITextSelection_fnGetTypeInfoCount(ITextSelection *me, UINT *pctinfo)
733
{
734
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
735 736 737 738 739 740 741
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

742
static HRESULT WINAPI ITextSelection_fnGetTypeInfo(ITextSelection *me, UINT iTInfo, LCID lcid,
743 744
    ITypeInfo **ppTInfo)
{
745
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
746 747 748 749 750 751 752
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

753 754
static HRESULT WINAPI ITextSelection_fnGetIDsOfNames(ITextSelection *me, REFIID riid,
    LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)
755
{
756
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

static HRESULT WINAPI ITextSelection_fnInvoke(
    ITextSelection *me,
    DISPID dispIdMember,
    REFIID riid,
    LCID lcid,
    WORD wFlags,
    DISPPARAMS *pDispParams,
    VARIANT *pVarResult,
    EXCEPINFO *pExcepInfo,
    UINT *puArgErr)
{
    FIXME("not implemented\n");
    return E_NOTIMPL;
}

/*** ITextRange methods ***/
780
static HRESULT WINAPI ITextSelection_fnGetText(ITextSelection *me, BSTR *pbstr)
781
{
782
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
783 784 785 786 787 788 789
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

790
static HRESULT WINAPI ITextSelection_fnSetText(ITextSelection *me, BSTR bstr)
791
{
792
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
793 794 795 796 797 798 799
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

800
static HRESULT WINAPI ITextSelection_fnGetChar(ITextSelection *me, LONG *pch)
801
{
802
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
803 804 805 806 807 808 809
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

810
static HRESULT WINAPI ITextSelection_fnSetChar(ITextSelection *me, LONG ch)
811
{
812
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
813 814 815 816 817 818 819
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

820
static HRESULT WINAPI ITextSelection_fnGetDuplicate(ITextSelection *me, ITextRange **ppRange)
821
{
822
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
823 824 825 826 827 828 829
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

830
static HRESULT WINAPI ITextSelection_fnGetFormattedText(ITextSelection *me, ITextRange **ppRange)
831
{
832
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
833 834 835 836 837 838 839
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

840
static HRESULT WINAPI ITextSelection_fnSetFormattedText(ITextSelection *me, ITextRange *pRange)
841
{
842
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
843 844 845 846 847 848 849
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

850
static HRESULT WINAPI ITextSelection_fnGetStart(ITextSelection *me, LONG *pcpFirst)
851
{
852
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
853 854 855 856 857 858 859
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

860
static HRESULT WINAPI ITextSelection_fnSetStart(ITextSelection *me, LONG cpFirst)
861
{
862
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
863 864 865 866 867 868 869
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

870
static HRESULT WINAPI ITextSelection_fnGetEnd(ITextSelection *me, LONG *pcpLim)
871
{
872
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
873 874 875 876 877 878 879
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

880
static HRESULT WINAPI ITextSelection_fnSetEnd(ITextSelection *me, LONG cpLim)
881
{
882
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
883 884 885 886 887 888 889
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

890
static HRESULT WINAPI ITextSelection_fnGetFont(ITextSelection *me, ITextFont **pFont)
891
{
892
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
893 894 895 896 897 898 899
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

900
static HRESULT WINAPI ITextSelection_fnSetFont(ITextSelection *me, ITextFont *pFont)
901
{
902
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
903 904 905 906 907 908 909
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

910
static HRESULT WINAPI ITextSelection_fnGetPara(ITextSelection *me, ITextPara **ppPara)
911
{
912
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
913 914 915 916 917 918 919
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

920
static HRESULT WINAPI ITextSelection_fnSetPara(ITextSelection *me, ITextPara *pPara)
921
{
922
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
923 924 925 926 927 928 929
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

930
static HRESULT WINAPI ITextSelection_fnGetStoryLength(ITextSelection *me, LONG *pcch)
931
{
932
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
933 934 935 936 937 938 939
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

940
static HRESULT WINAPI ITextSelection_fnGetStoryType(ITextSelection *me, LONG *pValue)
941
{
942
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
943 944 945 946 947 948 949
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

950
static HRESULT WINAPI ITextSelection_fnCollapse(ITextSelection *me, LONG bStart)
951
{
952
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
953 954 955 956 957 958 959
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

960
static HRESULT WINAPI ITextSelection_fnExpand(ITextSelection *me, LONG Unit, LONG *pDelta)
961
{
962
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
963 964 965 966 967 968 969
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

970
static HRESULT WINAPI ITextSelection_fnGetIndex(ITextSelection *me, LONG Unit, LONG *pIndex)
971
{
972
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
973 974 975 976 977 978 979
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

980
static HRESULT WINAPI ITextSelection_fnSetIndex(ITextSelection *me, LONG Unit, LONG Index,
981
    LONG Extend)
982
{
983
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
984 985 986 987 988 989 990
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

991
static HRESULT WINAPI ITextSelection_fnSetRange(ITextSelection *me, LONG cpActive, LONG cpOther)
992
{
993
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
994 995 996 997 998 999 1000
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1001
static HRESULT WINAPI ITextSelection_fnInRange(ITextSelection *me, ITextRange *pRange, LONG *pb)
1002
{
1003
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1004 1005 1006 1007 1008 1009 1010
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1011
static HRESULT WINAPI ITextSelection_fnInStory(ITextSelection *me, ITextRange *pRange, LONG *pb)
1012
{
1013
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1014 1015 1016 1017 1018 1019 1020
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1021
static HRESULT WINAPI ITextSelection_fnIsEqual(ITextSelection *me, ITextRange *pRange, LONG *pb)
1022
{
1023
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1024 1025 1026 1027 1028 1029 1030
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1031
static HRESULT WINAPI ITextSelection_fnSelect(ITextSelection *me)
1032
{
1033
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1034 1035 1036 1037 1038 1039 1040
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1041
static HRESULT WINAPI ITextSelection_fnStartOf(ITextSelection *me, LONG Unit, LONG Extend,
1042
    LONG *pDelta)
1043
{
1044
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1045 1046 1047 1048 1049 1050 1051
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1052
static HRESULT WINAPI ITextSelection_fnEndOf(ITextSelection *me, LONG Unit, LONG Extend,
1053
    LONG *pDelta)
1054
{
1055
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1056 1057 1058 1059 1060 1061 1062
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1063
static HRESULT WINAPI ITextSelection_fnMove(ITextSelection *me, LONG Unit, LONG Count, LONG *pDelta)
1064
{
1065
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1066 1067 1068 1069 1070 1071 1072
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1073
static HRESULT WINAPI ITextSelection_fnMoveStart(ITextSelection *me, LONG Unit, LONG Count,
1074
    LONG *pDelta)
1075
{
1076
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1077 1078 1079 1080 1081 1082 1083
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1084
static HRESULT WINAPI ITextSelection_fnMoveEnd(ITextSelection *me, LONG Unit, LONG Count,
1085
    LONG *pDelta)
1086
{
1087
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1088 1089 1090 1091 1092 1093 1094
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1095
static HRESULT WINAPI ITextSelection_fnMoveWhile(ITextSelection *me, VARIANT *Cset, LONG Count,
1096
    LONG *pDelta)
1097
{
1098
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1099 1100 1101 1102 1103 1104 1105
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1106
static HRESULT WINAPI ITextSelection_fnMoveStartWhile(ITextSelection *me, VARIANT *Cset, LONG Count,
1107
    LONG *pDelta)
1108
{
1109
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1110 1111 1112 1113 1114 1115 1116
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1117
static HRESULT WINAPI ITextSelection_fnMoveEndWhile(ITextSelection *me, VARIANT *Cset, LONG Count,
1118
    LONG *pDelta)
1119
{
1120
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1121 1122 1123 1124 1125 1126 1127
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1128
static HRESULT WINAPI ITextSelection_fnMoveUntil(ITextSelection *me, VARIANT *Cset, LONG Count,
1129
    LONG *pDelta)
1130
{
1131
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1132 1133 1134 1135 1136 1137 1138
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1139
static HRESULT WINAPI ITextSelection_fnMoveStartUntil(ITextSelection *me, VARIANT *Cset, LONG Count,
1140
    LONG *pDelta)
1141
{
1142
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1143 1144 1145 1146 1147 1148 1149
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1150
static HRESULT WINAPI ITextSelection_fnMoveEndUntil(ITextSelection *me, VARIANT *Cset, LONG Count,
1151
    LONG *pDelta)
1152
{
1153
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1154 1155 1156 1157 1158 1159 1160
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1161
static HRESULT WINAPI ITextSelection_fnFindText(ITextSelection *me, BSTR bstr, LONG cch, LONG Flags,
1162
    LONG *pLength)
1163
{
1164
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1165 1166 1167 1168 1169 1170 1171
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1172 1173
static HRESULT WINAPI ITextSelection_fnFindTextStart(ITextSelection *me, BSTR bstr, LONG cch,
    LONG Flags, LONG *pLength)
1174
{
1175
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1176 1177 1178 1179 1180 1181 1182
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1183 1184
static HRESULT WINAPI ITextSelection_fnFindTextEnd(ITextSelection *me, BSTR bstr, LONG cch,
    LONG Flags, LONG *pLength)
1185
{
1186
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1187 1188 1189 1190 1191 1192 1193
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1194
static HRESULT WINAPI ITextSelection_fnDelete(ITextSelection *me, LONG Unit, LONG Count,
1195
    LONG *pDelta)
1196
{
1197
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1198 1199 1200 1201 1202 1203 1204
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1205
static HRESULT WINAPI ITextSelection_fnCut(ITextSelection *me, VARIANT *pVar)
1206
{
1207
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1208 1209 1210 1211 1212 1213 1214
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1215
static HRESULT WINAPI ITextSelection_fnCopy(ITextSelection *me, VARIANT *pVar)
1216
{
1217
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1218 1219 1220 1221 1222 1223 1224
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1225
static HRESULT WINAPI ITextSelection_fnPaste(ITextSelection *me, VARIANT *pVar, LONG Format)
1226
{
1227
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1228 1229 1230 1231 1232 1233 1234
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1235
static HRESULT WINAPI ITextSelection_fnCanPaste(ITextSelection *me, VARIANT *pVar, LONG Format,
1236
    LONG *pb)
1237
{
1238
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1239 1240 1241 1242 1243 1244 1245
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1246
static HRESULT WINAPI ITextSelection_fnCanEdit(ITextSelection *me, LONG *pb)
1247
{
1248
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1249 1250 1251 1252 1253 1254 1255
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1256
static HRESULT WINAPI ITextSelection_fnChangeCase(ITextSelection *me, LONG Type)
1257
{
1258
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1259 1260 1261 1262 1263 1264 1265
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1266
static HRESULT WINAPI ITextSelection_fnGetPoint(ITextSelection *me, LONG Type, LONG *cx, LONG *cy)
1267
{
1268
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1269 1270 1271 1272 1273 1274 1275
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1276
static HRESULT WINAPI ITextSelection_fnSetPoint(ITextSelection *me, LONG x, LONG y, LONG Type,
1277
    LONG Extend)
1278
{
1279
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1280 1281 1282 1283 1284 1285 1286
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1287
static HRESULT WINAPI ITextSelection_fnScrollIntoView(ITextSelection *me, LONG Value)
1288
{
1289
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1290 1291 1292 1293 1294 1295 1296
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1297
static HRESULT WINAPI ITextSelection_fnGetEmbeddedObject(ITextSelection *me, IUnknown **ppv)
1298
{
1299
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1300 1301 1302 1303 1304 1305 1306 1307
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

/*** ITextSelection methods ***/
1308
static HRESULT WINAPI ITextSelection_fnGetFlags(ITextSelection *me, LONG *pFlags)
1309
{
1310
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1311 1312 1313 1314 1315 1316 1317
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1318
static HRESULT WINAPI ITextSelection_fnSetFlags(ITextSelection *me, LONG Flags)
1319
{
1320
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1321 1322 1323 1324 1325 1326 1327
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1328
static HRESULT WINAPI ITextSelection_fnGetType(ITextSelection *me, LONG *pType)
1329
{
1330
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1331 1332 1333 1334 1335 1336 1337
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1338 1339
static HRESULT WINAPI ITextSelection_fnMoveLeft(ITextSelection *me, LONG Unit, LONG Count,
    LONG Extend, LONG *pDelta)
1340
{
1341
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1342 1343 1344 1345 1346 1347 1348
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1349 1350
static HRESULT WINAPI ITextSelection_fnMoveRight(ITextSelection *me, LONG Unit, LONG Count,
    LONG Extend, LONG *pDelta)
1351
{
1352
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1353 1354 1355 1356 1357 1358 1359
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1360 1361
static HRESULT WINAPI ITextSelection_fnMoveUp(ITextSelection *me, LONG Unit, LONG Count,
    LONG Extend, LONG *pDelta)
1362
{
1363
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1364 1365 1366 1367 1368 1369 1370
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1371 1372
static HRESULT WINAPI ITextSelection_fnMoveDown(ITextSelection *me, LONG Unit, LONG Count,
    LONG Extend, LONG *pDelta)
1373
{
1374
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1375 1376 1377 1378 1379 1380 1381
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1382
static HRESULT WINAPI ITextSelection_fnHomeKey(ITextSelection *me, LONG Unit, LONG Extend,
1383
    LONG *pDelta)
1384
{
1385
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1386 1387 1388 1389 1390 1391 1392
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1393
static HRESULT WINAPI ITextSelection_fnEndKey(ITextSelection *me, LONG Unit, LONG Extend,
1394
    LONG *pDelta)
1395
{
1396
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1397 1398 1399 1400 1401 1402 1403
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

1404
static HRESULT WINAPI ITextSelection_fnTypeText(ITextSelection *me, BSTR bstr)
1405
{
1406
    ITextSelectionImpl *This = impl_from_ITextSelection(me);
1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491
    if (!This->reOle)
        return CO_E_RELEASED;

    FIXME("not implemented\n");
    return E_NOTIMPL;
}

static const ITextSelectionVtbl tsvt = {
    ITextSelection_fnQueryInterface,
    ITextSelection_fnAddRef,
    ITextSelection_fnRelease,
    ITextSelection_fnGetTypeInfoCount,
    ITextSelection_fnGetTypeInfo,
    ITextSelection_fnGetIDsOfNames,
    ITextSelection_fnInvoke,
    ITextSelection_fnGetText,
    ITextSelection_fnSetText,
    ITextSelection_fnGetChar,
    ITextSelection_fnSetChar,
    ITextSelection_fnGetDuplicate,
    ITextSelection_fnGetFormattedText,
    ITextSelection_fnSetFormattedText,
    ITextSelection_fnGetStart,
    ITextSelection_fnSetStart,
    ITextSelection_fnGetEnd,
    ITextSelection_fnSetEnd,
    ITextSelection_fnGetFont,
    ITextSelection_fnSetFont,
    ITextSelection_fnGetPara,
    ITextSelection_fnSetPara,
    ITextSelection_fnGetStoryLength,
    ITextSelection_fnGetStoryType,
    ITextSelection_fnCollapse,
    ITextSelection_fnExpand,
    ITextSelection_fnGetIndex,
    ITextSelection_fnSetIndex,
    ITextSelection_fnSetRange,
    ITextSelection_fnInRange,
    ITextSelection_fnInStory,
    ITextSelection_fnIsEqual,
    ITextSelection_fnSelect,
    ITextSelection_fnStartOf,
    ITextSelection_fnEndOf,
    ITextSelection_fnMove,
    ITextSelection_fnMoveStart,
    ITextSelection_fnMoveEnd,
    ITextSelection_fnMoveWhile,
    ITextSelection_fnMoveStartWhile,
    ITextSelection_fnMoveEndWhile,
    ITextSelection_fnMoveUntil,
    ITextSelection_fnMoveStartUntil,
    ITextSelection_fnMoveEndUntil,
    ITextSelection_fnFindText,
    ITextSelection_fnFindTextStart,
    ITextSelection_fnFindTextEnd,
    ITextSelection_fnDelete,
    ITextSelection_fnCut,
    ITextSelection_fnCopy,
    ITextSelection_fnPaste,
    ITextSelection_fnCanPaste,
    ITextSelection_fnCanEdit,
    ITextSelection_fnChangeCase,
    ITextSelection_fnGetPoint,
    ITextSelection_fnSetPoint,
    ITextSelection_fnScrollIntoView,
    ITextSelection_fnGetEmbeddedObject,
    ITextSelection_fnGetFlags,
    ITextSelection_fnSetFlags,
    ITextSelection_fnGetType,
    ITextSelection_fnMoveLeft,
    ITextSelection_fnMoveRight,
    ITextSelection_fnMoveUp,
    ITextSelection_fnMoveDown,
    ITextSelection_fnHomeKey,
    ITextSelection_fnEndKey,
    ITextSelection_fnTypeText
};

static ITextSelectionImpl *
CreateTextSelection(IRichEditOleImpl *reOle)
{
    ITextSelectionImpl *txtSel = heap_alloc(sizeof *txtSel);
    if (!txtSel)
        return NULL;

1492
    txtSel->ITextSelection_iface.lpVtbl = &tsvt;
1493 1494 1495 1496 1497
    txtSel->ref = 1;
    txtSel->reOle = reOle;
    return txtSel;
}

1498
LRESULT CreateIRichEditOle(ME_TextEditor *editor, LPVOID *ppObj)
1499 1500 1501
{
    IRichEditOleImpl *reo;

1502
    reo = heap_alloc(sizeof(IRichEditOleImpl));
1503 1504 1505
    if (!reo)
        return 0;

1506 1507
    reo->IRichEditOle_iface.lpVtbl = &revt;
    reo->ITextDocument_iface.lpVtbl = &tdvt;
1508
    reo->ref = 1;
1509
    reo->editor = editor;
1510 1511 1512 1513 1514 1515
    reo->txtSel = CreateTextSelection(reo);
    if (!reo->txtSel)
    {
        heap_free(reo);
        return 0;
    }
1516 1517 1518
    reo->clientSite = CreateOleClientSite(reo);
    if (!reo->txtSel)
    {
1519
        ITextSelection_Release(&reo->txtSel->ITextSelection_iface);
1520 1521 1522
        heap_free(reo);
        return 0;
    }
1523
    TRACE("Created %p\n",reo);
1524
    *ppObj = reo;
1525 1526 1527

    return 1;
}
1528

1529
static void convert_sizel(const ME_Context *c, const SIZEL* szl, SIZE* sz)
1530 1531 1532 1533 1534 1535
{
  /* sizel is in .01 millimeters, sz in pixels */
  sz->cx = MulDiv(szl->cx, c->dpi.cx, 2540);
  sz->cy = MulDiv(szl->cy, c->dpi.cy, 2540);
}

1536 1537 1538 1539 1540
/******************************************************************************
 * ME_GetOLEObjectSize
 *
 * Sets run extent for OLE objects.
 */
1541
void ME_GetOLEObjectSize(const ME_Context *c, ME_Run *run, SIZE *pSize)
1542 1543 1544 1545 1546 1547 1548 1549 1550
{
  IDataObject*  ido;
  FORMATETC     fmt;
  STGMEDIUM     stgm;
  DIBSECTION    dibsect;
  ENHMETAHEADER emh;

  assert(run->nFlags & MERF_GRAPHICS);
  assert(run->ole_obj);
1551 1552 1553 1554

  if (run->ole_obj->sizel.cx != 0 || run->ole_obj->sizel.cy != 0)
  {
    convert_sizel(c, &run->ole_obj->sizel, pSize);
1555 1556 1557 1558 1559
    if (c->editor->nZoomNumerator != 0)
    {
      pSize->cx = MulDiv(pSize->cx, c->editor->nZoomNumerator, c->editor->nZoomDenominator);
      pSize->cy = MulDiv(pSize->cy, c->editor->nZoomNumerator, c->editor->nZoomDenominator);
    }
1560 1561 1562
    return;
  }

1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600
  IOleObject_QueryInterface(run->ole_obj->poleobj, &IID_IDataObject, (void**)&ido);
  fmt.cfFormat = CF_BITMAP;
  fmt.ptd = NULL;
  fmt.dwAspect = DVASPECT_CONTENT;
  fmt.lindex = -1;
  fmt.tymed = TYMED_GDI;
  if (IDataObject_GetData(ido, &fmt, &stgm) != S_OK)
  {
    fmt.cfFormat = CF_ENHMETAFILE;
    fmt.tymed = TYMED_ENHMF;
    if (IDataObject_GetData(ido, &fmt, &stgm) != S_OK)
    {
      FIXME("unsupported format\n");
      pSize->cx = pSize->cy = 0;
      IDataObject_Release(ido);
      return;
    }
  }

  switch (stgm.tymed)
  {
  case TYMED_GDI:
    GetObjectW(stgm.u.hBitmap, sizeof(dibsect), &dibsect);
    pSize->cx = dibsect.dsBm.bmWidth;
    pSize->cy = dibsect.dsBm.bmHeight;
    if (!stgm.pUnkForRelease) DeleteObject(stgm.u.hBitmap);
    break;
  case TYMED_ENHMF:
    GetEnhMetaFileHeader(stgm.u.hEnhMetaFile, sizeof(emh), &emh);
    pSize->cx = emh.rclBounds.right - emh.rclBounds.left;
    pSize->cy = emh.rclBounds.bottom - emh.rclBounds.top;
    if (!stgm.pUnkForRelease) DeleteEnhMetaFile(stgm.u.hEnhMetaFile);
    break;
  default:
    FIXME("Unsupported tymed %d\n", stgm.tymed);
    break;
  }
  IDataObject_Release(ido);
1601
  if (c->editor->nZoomNumerator != 0)
1602
  {
1603 1604
    pSize->cx = MulDiv(pSize->cx, c->editor->nZoomNumerator, c->editor->nZoomDenominator);
    pSize->cy = MulDiv(pSize->cy, c->editor->nZoomNumerator, c->editor->nZoomDenominator);
1605
  }
1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616
}

void ME_DrawOLE(ME_Context *c, int x, int y, ME_Run *run,
                ME_Paragraph *para, BOOL selected)
{
  IDataObject*  ido;
  FORMATETC     fmt;
  STGMEDIUM     stgm;
  DIBSECTION    dibsect;
  ENHMETAHEADER emh;
  HDC           hMemDC;
1617
  SIZE          sz;
1618
  BOOL          has_size;
1619 1620 1621 1622 1623 1624 1625 1626

  assert(run->nFlags & MERF_GRAPHICS);
  assert(run->ole_obj);
  if (IOleObject_QueryInterface(run->ole_obj->poleobj, &IID_IDataObject, (void**)&ido) != S_OK)
  {
    FIXME("Couldn't get interface\n");
    return;
  }
1627
  has_size = run->ole_obj->sizel.cx != 0 || run->ole_obj->sizel.cy != 0;
1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649
  fmt.cfFormat = CF_BITMAP;
  fmt.ptd = NULL;
  fmt.dwAspect = DVASPECT_CONTENT;
  fmt.lindex = -1;
  fmt.tymed = TYMED_GDI;
  if (IDataObject_GetData(ido, &fmt, &stgm) != S_OK)
  {
    fmt.cfFormat = CF_ENHMETAFILE;
    fmt.tymed = TYMED_ENHMF;
    if (IDataObject_GetData(ido, &fmt, &stgm) != S_OK)
    {
      FIXME("Couldn't get storage medium\n");
      IDataObject_Release(ido);
      return;
    }
  }
  switch (stgm.tymed)
  {
  case TYMED_GDI:
    GetObjectW(stgm.u.hBitmap, sizeof(dibsect), &dibsect);
    hMemDC = CreateCompatibleDC(c->hDC);
    SelectObject(hMemDC, stgm.u.hBitmap);
1650
    if (has_size)
1651
    {
1652 1653 1654 1655 1656 1657 1658 1659 1660
      convert_sizel(c, &run->ole_obj->sizel, &sz);
    } else {
      sz.cx = MulDiv(dibsect.dsBm.bmWidth, c->dpi.cx, 96);
      sz.cy = MulDiv(dibsect.dsBm.bmHeight, c->dpi.cy, 96);
    }
    if (c->editor->nZoomNumerator != 0)
    {
      sz.cx = MulDiv(sz.cx, c->editor->nZoomNumerator, c->editor->nZoomDenominator);
      sz.cy = MulDiv(sz.cy, c->editor->nZoomNumerator, c->editor->nZoomDenominator);
1661
    }
1662
    if (sz.cx == dibsect.dsBm.bmWidth && sz.cy == dibsect.dsBm.bmHeight)
1663
    {
1664 1665 1666 1667
      BitBlt(c->hDC, x, y - sz.cy,
             dibsect.dsBm.bmWidth, dibsect.dsBm.bmHeight,
             hMemDC, 0, 0, SRCCOPY);
    } else {
1668
      StretchBlt(c->hDC, x, y - sz.cy, sz.cx, sz.cy,
1669 1670
                 hMemDC, 0, 0, dibsect.dsBm.bmWidth,
                 dibsect.dsBm.bmHeight, SRCCOPY);
1671
    }
1672
    DeleteDC(hMemDC);
1673 1674 1675 1676
    if (!stgm.pUnkForRelease) DeleteObject(stgm.u.hBitmap);
    break;
  case TYMED_ENHMF:
    GetEnhMetaFileHeader(stgm.u.hEnhMetaFile, sizeof(emh), &emh);
1677
    if (has_size)
1678
    {
1679 1680 1681 1682
      convert_sizel(c, &run->ole_obj->sizel, &sz);
    } else {
      sz.cy = MulDiv(emh.rclBounds.bottom - emh.rclBounds.top, c->dpi.cx, 96);
      sz.cx = MulDiv(emh.rclBounds.right - emh.rclBounds.left, c->dpi.cy, 96);
1683
    }
1684
    if (c->editor->nZoomNumerator != 0)
1685
    {
1686 1687
      sz.cx = MulDiv(sz.cx, c->editor->nZoomNumerator, c->editor->nZoomDenominator);
      sz.cy = MulDiv(sz.cy, c->editor->nZoomNumerator, c->editor->nZoomDenominator);
1688
    }
1689

1690 1691 1692 1693 1694 1695 1696 1697
    {
      RECT    rc;

      rc.left = x;
      rc.top = y - sz.cy;
      rc.right = x + sz.cx;
      rc.bottom = y;
      PlayEnhMetaFile(c->hDC, stgm.u.hEnhMetaFile, &rc);
1698
    }
1699 1700 1701 1702
    if (!stgm.pUnkForRelease) DeleteEnhMetaFile(stgm.u.hEnhMetaFile);
    break;
  default:
    FIXME("Unsupported tymed %d\n", stgm.tymed);
1703
    selected = FALSE;
1704 1705
    break;
  }
1706 1707
  if (selected && !c->editor->bHideSelection)
    PatBlt(c->hDC, x, y - sz.cy, sz.cx, sz.cy, DSTINVERT);
1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726
  IDataObject_Release(ido);
}

void ME_DeleteReObject(REOBJECT* reo)
{
    if (reo->poleobj)   IOleObject_Release(reo->poleobj);
    if (reo->pstg)      IStorage_Release(reo->pstg);
    if (reo->polesite)  IOleClientSite_Release(reo->polesite);
    FREE_OBJ(reo);
}

void ME_CopyReObject(REOBJECT* dst, const REOBJECT* src)
{
    *dst = *src;

    if (dst->poleobj)   IOleObject_AddRef(dst->poleobj);
    if (dst->pstg)      IStorage_AddRef(dst->pstg);
    if (dst->polesite)  IOleClientSite_AddRef(dst->polesite);
}