summaryrefslogtreecommitdiff
path: root/sc/source/ui/view/tabvwshb.cxx
blob: ce67faee2cc33f6d87b8ccd1cf1785bf2458aa02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
/*************************************************************************
 *
 *  $RCSfile: tabvwshb.cxx,v $
 *
 *  $Revision: 1.16 $
 *
 *  last change: $Author: hr $ $Date: 2003-03-26 18:06:50 $
 *
 *  The Contents of this file are made available subject to the terms of
 *  either of the following licenses
 *
 *         - GNU Lesser General Public License Version 2.1
 *         - Sun Industry Standards Source License Version 1.1
 *
 *  Sun Microsystems Inc., October, 2000
 *
 *  GNU Lesser General Public License Version 2.1
 *  =============================================
 *  Copyright 2000 by Sun Microsystems, Inc.
 *  901 San Antonio Road, Palo Alto, CA 94303, USA
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License version 2.1, as published by the Free Software Foundation.
 *
 *  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., 59 Temple Place, Suite 330, Boston,
 *  MA  02111-1307  USA
 *
 *
 *  Sun Industry Standards Source License Version 1.1
 *  =================================================
 *  The contents of this file are subject to the Sun Industry Standards
 *  Source License Version 1.1 (the "License"); You may not use this file
 *  except in compliance with the License. You may obtain a copy of the
 *  License at http://www.openoffice.org/license.html.
 *
 *  Software provided under this License is provided on an "AS IS" basis,
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 *  See the License for the specific provisions governing your rights and
 *  obligations concerning the Software.
 *
 *  The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 *
 *  Copyright: 2000 by Sun Microsystems, Inc.
 *
 *  All Rights Reserved.
 *
 *  Contributor(s): _______________________________________
 *
 *
 ************************************************************************/

#ifdef PCH
#include "ui_pch.hxx"
#endif

#pragma hdrstop

//------------------------------------------------------------------

#ifdef WNT
#pragma optimize ("", off)
#endif

// INCLUDE ---------------------------------------------------------------

#include <svx/dataaccessdescriptor.hxx>
#include <svx/pfiledlg.hxx>
#include <svx/svditer.hxx>
#include <svx/svdmark.hxx>
#include <svx/svdograf.hxx>
#include <svx/svdogrp.hxx>
#include <svx/svdoole2.hxx>
#include <svx/svdouno.hxx>
#include <svx/svdview.hxx>
#include <svx/linkmgr.hxx>
#include <sfx2/bindings.hxx>
#include <sfx2/dispatch.hxx>
#include <so3/ipenv.hxx>
#include <so3/ipobj.hxx>
#include <so3/linkdlg.hxx>
#include <so3/svstor.hxx>
#include <so3/soerr.hxx>
#include <svtools/rectitem.hxx>
#include <svtools/whiter.hxx>
#include <svtools/moduleoptions.hxx>
#include <sch/schdll.hxx>
#include <sch/memchrt.hxx>
#include <sch/schdll0.hxx>



#ifndef SO2_DECL_SVINPLACEOBJECT_DEFINED
#define SO2_DECL_SVINPLACEOBJECT_DEFINED
SO2_DECL_REF(SvInPlaceObject)
#endif
#ifndef SO2_DECL_SVSTORAGE_DEFINED
#define SO2_DECL_SVSTORAGE_DEFINED
SO2_DECL_REF(SvStorage)
#endif

#include "tabvwsh.hxx"
#include "globstr.hrc"
#include "scmod.hxx"
#include "document.hxx"
#include "sc.hrc"
#include "client.hxx"
#include "fuinsert.hxx"
#include "docsh.hxx"
#include "chartarr.hxx"
#include "drawview.hxx"

// STATIC DATA -----------------------------------------------------------

void ScTabViewShell::ConnectObject( SdrOle2Obj* pObj )
{
    //  wird aus dem Paint gerufen

    SvInPlaceObjectRef xIPObj = pObj->GetObjRef();
    Window* pWin = GetActiveWin();

    //  #41412# wenn schon connected ist, nicht nochmal SetObjArea/SetSizeScale

    SfxInPlaceClientRef xClient = FindIPClient( xIPObj, pWin );
    if ( !xClient.Is() )
    {
        xClient = new ScClient( this, pWin, GetSdrView()->GetModel() );

        ErrCode nErr = xIPObj->DoConnect( xClient );
        if (nErr != ERRCODE_NONE)
            ErrorHandler::HandleError(nErr);

        Rectangle aRect = pObj->GetLogicRect();
        Size aDrawSize = aRect.GetSize();
        Size aOleSize = xIPObj->GetVisArea().GetSize();

                // sichtbarer Ausschnitt wird nur inplace veraendert!
        aRect.SetSize( aOleSize );
        xClient->GetEnv()->SetObjArea( aRect );

        Fraction aScaleWidth (aDrawSize.Width(),  aOleSize.Width() );
        Fraction aScaleHeight(aDrawSize.Height(), aOleSize.Height() );
        aScaleWidth.ReduceInaccurate(10);       // kompatibel zum SdrOle2Obj
        aScaleHeight.ReduceInaccurate(10);
        xClient->GetEnv()->SetSizeScale(aScaleWidth,aScaleHeight);

        ((ScClient*)(SfxInPlaceClient*)xClient)->SetGrafEdit( NULL );
    }
}

BOOL ScTabViewShell::ActivateObject( SdrOle2Obj* pObj, long nVerb )
{
    // #41081# Gueltigkeits-Hinweisfenster nicht ueber dem Objekt stehenlassen
    RemoveHintWindow();

    SvInPlaceObjectRef xIPObj = pObj->GetObjRef();
    Window* pWin = GetActiveWin();
    ErrCode nErr = ERRCODE_NONE;
    BOOL bErrorShown = FALSE;

    // linked objects aren't supported
//  if ( xIPObj->IsLink() )
//      nErr = xIPObj->DoVerb(nVerb);           // gelinkt -> ohne Client etc.
//  else
    {
        SfxInPlaceClientRef xClient = FindIPClient( xIPObj, pWin );
        if ( !xClient.Is() )
            xClient = new ScClient( this, pWin, GetSdrView()->GetModel() );
        nErr = xIPObj->DoConnect( xClient );

        if ( !(nErr & ERRCODE_ERROR_MASK) )
        {
            Rectangle aRect = pObj->GetLogicRect();
            Size aDrawSize = aRect.GetSize();
            Rectangle aVisArea = xIPObj->GetVisArea();
            Size aOleSize = aVisArea.GetSize();
            aOleSize = OutputDevice::LogicToLogic( aOleSize,
                                                   xIPObj->GetMapUnit(), MAP_100TH_MM );

                    // sichtbarer Ausschnitt wird nur inplace veraendert!
            aRect.SetSize( aOleSize );
            xClient->GetEnv()->SetObjArea( aRect );

            if ( xIPObj->GetMiscStatus() & SVOBJ_MISCSTATUS_SERVERRESIZE )
            {
                //  scale must always be 1 - change VisArea if different from client size

                if ( aDrawSize != aOleSize )
                {
                    aVisArea.SetSize( OutputDevice::LogicToLogic( aDrawSize,
                                            MAP_100TH_MM, xIPObj->GetMapUnit() ) );
                    xIPObj->SetVisArea( aVisArea );
                }
                Fraction aOne( 1, 1 );
                xClient->GetEnv()->SetSizeScale( aOne, aOne );
            }
            else
            {
                //  calculate scale from client and VisArea size

                Fraction aScaleWidth (aDrawSize.Width(),  aOleSize.Width() );
                Fraction aScaleHeight(aDrawSize.Height(), aOleSize.Height() );
                aScaleWidth.ReduceInaccurate(10);       // kompatibel zum SdrOle2Obj
                aScaleHeight.ReduceInaccurate(10);
                xClient->GetEnv()->SetSizeScale(aScaleWidth,aScaleHeight);
            }

            ((ScClient*)(SfxInPlaceClient*)xClient)->SetGrafEdit( NULL );

            //  Link fuer Daten-Highlighting im Chart setzen
            if ( SvtModuleOptions().IsChart() )
            {
                SvGlobalName aObjClsId = *xIPObj->GetSvFactory();
                if (SchModuleDummy::HasID( aObjClsId ))
                {
                    SchMemChart* pMemChart = SchDLL::GetChartData(xIPObj);
                    if (pMemChart)
                    {
                        // set handler for highlighting cell ranges
                        // for selection inside the chart
                        pMemChart->SetSelectionHdl( LINK( GetViewData()->GetDocShell(),
                                                          ScDocShell, ChartSelectionHdl ) );

                        //  #96148# if an unmodified chart in a 5.2-document is edited
                        //  after swapping out and in again, the ChartRange has to be set
                        //  (from SomeData strings) again, or SetReadOnly doesn't work
                        if ( pMemChart->SomeData1().Len() && pMemChart->GetChartRange().maRanges.size() == 0 )
                        {
                            ScChartArray aArray( GetViewData()->GetDocument(), *pMemChart );
                            if ( aArray.IsValid() )
                                aArray.SetExtraStrings( *pMemChart );
                        }

                        // #102706# After loaded, a chart doesn't know our
                        // number formatter, therefor new formats added in the
                        // meantime aren't available in the chart's number
                        // formatter dialog. Set the formatter here. The
                        // original bug was the SourceFormat checkbox not being
                        // available, but that is a problem of the chart.
                        pMemChart->SetNumberFormatter( GetViewData()->GetDocument()->GetFormatTable() );

                        // disable DataBrowseBox for editing chart data
                        pMemChart->SetReadOnly( TRUE );

                        // #102706# The new NumberFormatter is set at the
                        // SchMemChart, but not at the corresponding
                        // ChartModel. Therefore, an Update is needed, because
                        // the MemChart doesn't know its ChartModel.
                        SchDLL::Update( xIPObj, pMemChart );
                    }
                }
            }

            nErr = SfxViewShell::DoVerb( xClient, nVerb );
            bErrorShown = TRUE;
            // SfxViewShell::DoVerb zeigt seine Fehlermeldungen selber an
        }
    }
    if (nErr != ERRCODE_NONE && !bErrorShown)
        ErrorHandler::HandleError(nErr);

    //! SetDocumentName sollte schon im Sfx passieren ???
    xIPObj->SetDocumentName( GetViewData()->GetDocShell()->GetTitle() );

    return ( !(nErr & ERRCODE_ERROR_MASK) );
}

ErrCode __EXPORT ScTabViewShell::DoVerb(long nVerb)
{
    SdrView* pView = GetSdrView();
    if (!pView)
        return ERRCODE_SO_NOTIMPL;          // soll nicht sein

    SdrOle2Obj* pOle2Obj = NULL;
    SdrGrafObj* pGrafObj = NULL;
    SdrObject* pObj = NULL;
    ErrCode nErr = ERRCODE_NONE;

    const SdrMarkList& rMarkList = pView->GetMarkList();
    if (rMarkList.GetMarkCount() == 1)
    {
        pObj = rMarkList.GetMark(0)->GetObj();
        if (pObj->GetObjIdentifier() == OBJ_OLE2)
            pOle2Obj = (SdrOle2Obj*) pObj;
        else if (pObj->GetObjIdentifier() == OBJ_GRAF)
        {
            pGrafObj = (SdrGrafObj*) pObj;
        }
    }

    if (pOle2Obj)
    {
        ActivateObject( pOle2Obj, nVerb );
    }
#if 0
    //! remove this along with pGrafEdit member of ScClient
    else if ( pGrafObj && SFX_APP()->HasFeature(SFX_FEATURE_SIMAGE) )
    {
        /**********************************************************
        * OLE-Objekt erzeugen, StarImage starten
        * Grafik-Objekt loeschen (durch OLE-Objekt ersetzt)
        **********************************************************/

        pView->HideMarkHdl(NULL);

        String aEmtpyString;
        SvStorageRef aStor = new SvStorage(String());
        SvInPlaceObjectRef aNewIPObj =
#ifndef SO3
                    &SvInPlaceObject::ClassFactory()->CreateAndInit(
                    *SIM_MOD()->pSimDrawDocShellFactory, aStor );
#else
                    &((SvFactory*)SvInPlaceObject::ClassFactory())->CreateAndInit(
                    *SIM_MOD()->pSimDrawDocShellFactory, aStor );
#endif
        if ( aNewIPObj.Is() )
        {
            SdrGrafObj* pTempSdrGrafObj = (SdrGrafObj*) pObj->Clone ();
            pView->BegUndo( ScGlobal::GetRscString( STR_UNDO_GRAFEDIT ) );

            SvEmbeddedInfoObject* pInfo =
                    GetViewFrame()->GetObjectShell()->
                                   InsertObject( aNewIPObj, String() );
            String aName;
            if( pInfo )
                aName = pInfo->GetObjName();

            Rectangle aRect = pObj->GetLogicRect();
            SdrOle2Obj* pSdrOle2Obj = new SdrOle2Obj( aNewIPObj, aName, aRect );

            SdrPageView* pPV = pView->GetPageViewPvNum(0);
            pView->ReplaceObject(pObj, *pPV, pSdrOle2Obj);
            pSdrOle2Obj->SetLogicRect(aRect);   // erst nach InsertObject !!!
            aNewIPObj->SetVisAreaSize( aRect.GetSize() );

            const Graphic& rGraphic = pTempSdrGrafObj->GetGraphic();
            SimDLL::Update(aNewIPObj, rGraphic, GetActiveWin() );

//                          pView->EndUndo();
            //  passendes EndUndo in ScDrawView::MarkListHasChanged

            ActivateObject( pSdrOle2Obj, SVVERB_SHOW );

            ScClient* pClient = (ScClient*) GetIPClient();
            pClient->SetGrafEdit( pTempSdrGrafObj );
        }
    }
#endif
    else
        DBG_ERROR("kein Objekt fuer Verb gefunden");

    return nErr;
}

void ScTabViewShell::ExecDrawIns(SfxRequest& rReq)
{
    USHORT nSlot = rReq.GetSlot();
    if (nSlot != SID_OBJECTRESIZE )
    {
        SC_MOD()->InputEnterHandler();
        UpdateInputHandler();
    }

    //  Rahmen fuer Chart einfuegen wird abgebrochen:
    FuPoor* pPoor = GetDrawFuncPtr();
    if ( pPoor && pPoor->GetSlotID() == SID_DRAW_CHART )
        GetViewData()->GetDispatcher().Execute(SID_DRAW_CHART, SFX_CALLMODE_SLOT | SFX_CALLMODE_RECORD);

    MakeDrawLayer();

    SfxBindings& rBindings = GetViewFrame()->GetBindings();
    ScTabView*   pTabView  = GetViewData()->GetView();
    Window*      pWin      = pTabView->GetActiveWin();
    SdrView*     pView     = pTabView->GetSdrView();
    ScDocShell*  pDocSh    = GetViewData()->GetDocShell();
    ScDocument*  pDoc      = pDocSh->GetDocument();
//  SdrModel*    pDrModel  = pDocSh->MakeDrawLayer();
    SdrModel*    pDrModel  = pView->GetModel();

    switch ( nSlot )
    {
        case SID_INSERT_GRAPHIC:
            FuInsertGraphic(this, pWin, pView, pDrModel, rReq);
            // shell is set in MarkListHasChanged
            break;

        case SID_INSERT_DIAGRAM:
            FuInsertChart(this, pWin, pView, pDrModel, rReq);
//?         SC_MOD()->SetFunctionDlg( NULL );//XXX
            break;

        case SID_INSERT_OBJECT:
        case SID_INSERT_PLUGIN:
        case SID_INSERT_SOUND:
        case SID_INSERT_VIDEO:
        case SID_INSERT_APPLET:
        case SID_INSERT_SMATH:
        case SID_INSERT_FLOATINGFRAME:
            FuInsertOLE(this, pWin, pView, pDrModel, rReq);
            break;

        case SID_OBJECTRESIZE:
            {
                //          Der Server moechte die Clientgrosse verandern

                SfxInPlaceClient* pIPClient = GetIPClient();

                if ( pIPClient && pIPClient->IsInPlaceActive() )
                {
                    const SfxRectangleItem& rRect =
                        (SfxRectangleItem&)rReq.GetArgs()->Get(SID_OBJECTRESIZE);
                    Rectangle aRect( pWin->PixelToLogic( rRect.GetValue() ) );

                    if ( pView->HasMarkedObj() )
                    {
                        const SdrMarkList& rMarkList = pView->GetMarkList();

                        if (rMarkList.GetMarkCount() == 1)
                        {
                            SdrMark* pMark = rMarkList.GetMark(0);
                            SdrObject* pObj = pMark->GetObj();

                            UINT16 nSdrObjKind = pObj->GetObjIdentifier();

                            if (nSdrObjKind == OBJ_OLE2)
                            {
                                SvInPlaceObjectRef aIPObj =
                                ( (SdrOle2Obj*) pObj)->GetObjRef();

                                if ( aIPObj.Is() )
                                {
                                    pObj->SetLogicRect(aRect);
                                }
                            }
                        }
                    }
                }
            }
            break;

        case SID_LINKS:
            {
                ::so3::SvBaseLinksDialog( pWin, pDoc->GetLinkManager() ).Execute();
                rBindings.Invalidate( nSlot );
                SFX_APP()->Broadcast( SfxSimpleHint( SC_HINT_AREALINKS_CHANGED ) );     // Navigator
                rReq.Done();
            }
            break;

        // #98721#
        case SID_FM_CREATE_FIELDCONTROL:
            {
                SFX_REQUEST_ARG( rReq, pDescriptorItem, SfxUnoAnyItem, SID_FM_DATACCESS_DESCRIPTOR, sal_False );
                DBG_ASSERT( pDescriptorItem, "SID_FM_CREATE_FIELDCONTROL: invalid request args!" );

                if(pDescriptorItem)
                {
                    //! merge with ScViewFunc::PasteDataFormat (SOT_FORMATSTR_ID_SBA_FIELDDATAEXCHANGE)?

                    ScDrawView* pDrView = GetScDrawView();
                    SdrPageView* pPageView = pDrView ? pDrView->GetPageViewPvNum(0) : NULL;
                    if(pPageView)
                    {
                        ::svx::ODataAccessDescriptor aDescriptor(pDescriptorItem->GetValue());
                        SdrObject* pNewDBField = pDrView->CreateFieldControl(aDescriptor);

                        if(pNewDBField)
                        {
                            Rectangle aVisArea = pWin->PixelToLogic(Rectangle(Point(0,0), pWin->GetOutputSizePixel()));
                            Point aObjPos(aVisArea.Center());
                            Size aObjSize(pNewDBField->GetLogicRect().GetSize());
                            aObjPos.X() -= aObjSize.Width() / 2;
                            aObjPos.Y() -= aObjSize.Height() / 2;
                            Rectangle aNewObjectRectangle(aObjPos, aObjSize);

                            pNewDBField->SetLogicRect(aNewObjectRectangle);

                            // controls must be on control layer, groups on front layer
                            if ( pNewDBField->ISA(SdrUnoObj) )
                                pNewDBField->NbcSetLayer(SC_LAYER_CONTROLS);
                            else
                                pNewDBField->NbcSetLayer(SC_LAYER_FRONT);
                            if (pNewDBField->ISA(SdrObjGroup))
                            {
                                SdrObjListIter aIter( *pNewDBField, IM_DEEPWITHGROUPS );
                                SdrObject* pSubObj = aIter.Next();
                                while (pSubObj)
                                {
                                    if ( pSubObj->ISA(SdrUnoObj) )
                                        pSubObj->NbcSetLayer(SC_LAYER_CONTROLS);
                                    else
                                        pSubObj->NbcSetLayer(SC_LAYER_FRONT);
                                    pSubObj = aIter.Next();
                                }
                            }

                            pView->InsertObject(pNewDBField, *pPageView, pView->IsSolidDraggingNow() ? SDRINSERT_NOBROADCAST : 0);
                        }
                    }
                }
                rReq.Done();
            }
            break;
    }
}

void ScTabViewShell::GetDrawInsState(SfxItemSet &rSet)
{
    BOOL bOle = GetViewFrame()->ISA(SfxInPlaceFrame);
    BOOL bTabProt = GetViewData()->GetDocument()->IsTabProtected(GetViewData()->GetTabNo());
    SfxApplication* pSfxApp = SFX_APP();

    SfxWhichIter aIter(rSet);
    USHORT nWhich = aIter.FirstWhich();
    while ( nWhich )
    {
        switch ( nWhich )
        {
            case SID_INSERT_DIAGRAM:
            case SID_OPENDLG_CHART:
                if ( bOle || bTabProt || !SvtModuleOptions().IsChart() )
                    rSet.DisableItem( nWhich );
                break;

            case SID_OPENDLG_MODCHART:
                if ( bTabProt || !GetSelectedChartName().Len() )
                    rSet.DisableItem( nWhich );
                break;

            case SID_INSERT_SMATH:
                if ( bOle || bTabProt || !SvtModuleOptions().IsMath() )
                    rSet.DisableItem( nWhich );
                break;

            case SID_INSERT_OBJECT:
            case SID_INSERT_PLUGIN:
            case SID_INSERT_FLOATINGFRAME:
                if (bOle || bTabProt)
                    rSet.DisableItem( nWhich );
                break;

            case SID_INSERT_SOUND:
            case SID_INSERT_VIDEO:
                if (bOle || bTabProt || !SvxPluginFileDlg::IsAvailable(nWhich))
                    rSet.DisableItem( nWhich );
                break;

            case SID_INSERT_APPLET:
                //  wenn SOLAR_JAVA nicht definiert ist, immer disablen
#ifdef SOLAR_JAVA
                if (bOle || bTabProt)
#endif
                    rSet.DisableItem( nWhich );
                break;

            case SID_INSERT_GRAPHIC:
                if (bTabProt)
                    rSet.DisableItem( nWhich );
                break;

            case SID_LINKS:
                {
                    if (GetViewData()->GetDocument()->GetLinkManager()->GetLinks().Count() == 0 )
                        rSet.DisableItem( SID_LINKS );
                }
                break;
        }
        nWhich = aIter.NextWhich();
    }
}