diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 05:54:39 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 05:54:39 +0000 |
commit | 267c6f2ac71f92999e969232431ba04678e7437e (patch) | |
tree | 358c9467650e1d0a1d7227a21dac2e3d08b622b2 /sw/source/uibase/web | |
parent | Initial commit. (diff) | |
download | libreoffice-267c6f2ac71f92999e969232431ba04678e7437e.tar.xz libreoffice-267c6f2ac71f92999e969232431ba04678e7437e.zip |
Adding upstream version 4:24.2.0.upstream/4%24.2.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'sw/source/uibase/web')
-rw-r--r-- | sw/source/uibase/web/wdocsh.cxx | 80 | ||||
-rw-r--r-- | sw/source/uibase/web/wformsh.cxx | 50 | ||||
-rw-r--r-- | sw/source/uibase/web/wfrmsh.cxx | 50 | ||||
-rw-r--r-- | sw/source/uibase/web/wgrfsh.cxx | 54 | ||||
-rw-r--r-- | sw/source/uibase/web/wlistsh.cxx | 49 | ||||
-rw-r--r-- | sw/source/uibase/web/wolesh.cxx | 48 | ||||
-rw-r--r-- | sw/source/uibase/web/wtabsh.cxx | 52 | ||||
-rw-r--r-- | sw/source/uibase/web/wtextsh.cxx | 56 | ||||
-rw-r--r-- | sw/source/uibase/web/wview.cxx | 292 |
9 files changed, 731 insertions, 0 deletions
diff --git a/sw/source/uibase/web/wdocsh.cxx b/sw/source/uibase/web/wdocsh.cxx new file mode 100644 index 0000000000..05242544f4 --- /dev/null +++ b/sw/source/uibase/web/wdocsh.cxx @@ -0,0 +1,80 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 . + */ + +#include <svx/svxids.hrc> + +#include <comphelper/fileformat.h> +#include <comphelper/classids.hxx> +#include <sfx2/objface.hxx> +#include <tools/globname.hxx> +#include <osl/diagnose.h> + +#include <sfx2/msg.hxx> +#include <swtypes.hxx> + +#include <wdocsh.hxx> +#include <strings.hrc> + + // needed for -fsanitize=function visibility of typeinfo for functions of + // type void(SfxShell*,SfxRequest&) defined in swslots.hxx +#define ShellClass_SwWebDocShell +#include <swslots.hxx> + +SFX_IMPL_SUPERCLASS_INTERFACE(SwWebDocShell, SfxObjectShell) + +void SwWebDocShell::InitInterface_Impl() +{ +} + + +SFX_IMPL_OBJECTFACTORY(SwWebDocShell, SvGlobalName(SO3_SWWEB_CLASSID), "swriter/web" ) + +SwWebDocShell::SwWebDocShell() + : SwDocShell(SfxObjectCreateMode::STANDARD) + , m_nSourcePara(0) +{ +} + +SwWebDocShell::~SwWebDocShell() +{ +} + +void SwWebDocShell::FillClass( SvGlobalName * pClassName, + SotClipboardFormatId * pClipFormat, + OUString * pLongUserName, + sal_Int32 nVersion, + bool bTemplate /* = false */) const +{ + OSL_ENSURE( !bTemplate, "No template for Writer Web" ); + + if (nVersion == SOFFICE_FILEFORMAT_60) + { + *pClassName = SvGlobalName( SO3_SWWEB_CLASSID_60 ); + *pClipFormat = SotClipboardFormatId::STARWRITERWEB_60; + *pLongUserName = SwResId(STR_WRITER_WEBDOC_FULLTYPE); + } + else if (nVersion == SOFFICE_FILEFORMAT_8) + { + *pClassName = SvGlobalName( SO3_SWWEB_CLASSID_60 ); + *pClipFormat = SotClipboardFormatId::STARWRITERWEB_8; + *pLongUserName = SwResId(STR_WRITER_WEBDOC_FULLTYPE); + } +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sw/source/uibase/web/wformsh.cxx b/sw/source/uibase/web/wformsh.cxx new file mode 100644 index 0000000000..1d65b62b36 --- /dev/null +++ b/sw/source/uibase/web/wformsh.cxx @@ -0,0 +1,50 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 . + */ + +#include <sfx2/msg.hxx> +#include <sfx2/objface.hxx> +#include <sfx2/sfxsids.hrc> + +#include <wformsh.hxx> + + // needed for -fsanitize=function visibility of typeinfo for functions of + // type void(SfxShell*,SfxRequest&) defined in swslots.hxx +#define ShellClass_SwWebDrawFormShell +#include <swslots.hxx> + +SFX_IMPL_SUPERCLASS_INTERFACE(SwWebDrawFormShell, SwDrawFormShell) + +void SwWebDrawFormShell::InitInterface_Impl() +{ + GetStaticInterface()->RegisterPopupMenu("form"); + + GetStaticInterface()->RegisterObjectBar(SFX_OBJECTBAR_OBJECT, SfxVisibilityFlags::Invisible, ToolbarId::Text_Toolbox_Sw); +} + + +SwWebDrawFormShell::SwWebDrawFormShell(SwView& rVw) : + SwDrawFormShell(rVw) +{ +} + +SwWebDrawFormShell::~SwWebDrawFormShell() +{ +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sw/source/uibase/web/wfrmsh.cxx b/sw/source/uibase/web/wfrmsh.cxx new file mode 100644 index 0000000000..a9bac1962b --- /dev/null +++ b/sw/source/uibase/web/wfrmsh.cxx @@ -0,0 +1,50 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 . + */ + +#include <sfx2/objface.hxx> +#include <cmdid.h> +#include <view.hxx> +#include <wfrmsh.hxx> + + // needed for -fsanitize=function visibility of typeinfo for functions of + // type void(SfxShell*,SfxRequest&) defined in swslots.hxx +#define ShellClass_SwWebFrameShell +#include <sfx2/msg.hxx> +#include <swslots.hxx> + +SFX_IMPL_INTERFACE(SwWebFrameShell, SwFrameShell) + +void SwWebFrameShell::InitInterface_Impl() +{ + GetStaticInterface()->RegisterPopupMenu("frame"); + + GetStaticInterface()->RegisterObjectBar(SFX_OBJECTBAR_OBJECT, SfxVisibilityFlags::Invisible, ToolbarId::Webframe_Toolbox); +} + + +SwWebFrameShell::SwWebFrameShell(SwView &_rView) : + SwFrameShell(_rView) +{ +} + +SwWebFrameShell::~SwWebFrameShell() +{ +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sw/source/uibase/web/wgrfsh.cxx b/sw/source/uibase/web/wgrfsh.cxx new file mode 100644 index 0000000000..66fc2235d6 --- /dev/null +++ b/sw/source/uibase/web/wgrfsh.cxx @@ -0,0 +1,54 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 . + */ + +#include <sfx2/msg.hxx> + +#include <sfx2/objface.hxx> + +#include <cmdid.h> +#include <view.hxx> +#include <wgrfsh.hxx> + + // needed for -fsanitize=function visibility of typeinfo for functions of + // type void(SfxShell*,SfxRequest&) defined in swslots.hxx +#define ShellClass_SwWebGrfShell +#include <swslots.hxx> + +SFX_IMPL_INTERFACE(SwWebGrfShell, SwGrfShell) + +void SwWebGrfShell::InitInterface_Impl() +{ + GetStaticInterface()->RegisterPopupMenu("graphic"); + + GetStaticInterface()->RegisterObjectBar(SFX_OBJECTBAR_OBJECT, SfxVisibilityFlags::Invisible, ToolbarId::Webgraphic_Toolbox); +} + + +SwWebGrfShell::SwWebGrfShell(SwView &_rView) : + SwGrfShell(_rView) + +{ + SetName("Graphic"); +} + +SwWebGrfShell::~SwWebGrfShell() +{ +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sw/source/uibase/web/wlistsh.cxx b/sw/source/uibase/web/wlistsh.cxx new file mode 100644 index 0000000000..c7789c1e41 --- /dev/null +++ b/sw/source/uibase/web/wlistsh.cxx @@ -0,0 +1,49 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 . + */ + +#include <sfx2/msg.hxx> +#include <sfx2/objface.hxx> + +#include <cmdid.h> +#include <wlistsh.hxx> + + // needed for -fsanitize=function visibility of typeinfo for functions of + // type void(SfxShell*,SfxRequest&) defined in swslots.hxx +#define ShellClass_SwWebListShell +#include <swslots.hxx> + +SFX_IMPL_INTERFACE(SwWebListShell, SwListShell) + +void SwWebListShell::InitInterface_Impl() +{ + GetStaticInterface()->RegisterObjectBar(SFX_OBJECTBAR_OBJECT, SfxVisibilityFlags::Invisible, ToolbarId::Num_Toolbox); +} + + +SwWebListShell::SwWebListShell(SwView &_rView) : + SwListShell(_rView) +{ + SetName("List"); +} + +SwWebListShell::~SwWebListShell() +{ +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sw/source/uibase/web/wolesh.cxx b/sw/source/uibase/web/wolesh.cxx new file mode 100644 index 0000000000..15bab538b3 --- /dev/null +++ b/sw/source/uibase/web/wolesh.cxx @@ -0,0 +1,48 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 . + */ + +#include <sfx2/msg.hxx> +#include <sfx2/objface.hxx> + +#include <view.hxx> +#include <wolesh.hxx> + +#define ShellClass_SwWebOleShell +#include <swslots.hxx> + +SFX_IMPL_INTERFACE(SwWebOleShell, SwOleShell) + +void SwWebOleShell::InitInterface_Impl() +{ + GetStaticInterface()->RegisterPopupMenu("oleobject"); + + GetStaticInterface()->RegisterObjectBar(SFX_OBJECTBAR_OBJECT, SfxVisibilityFlags::Invisible, ToolbarId::Webole_Toolbox); +} + +SwWebOleShell::SwWebOleShell(SwView &_rView) : + SwOleShell(_rView) +{ + SetName("Object"); +} + +SwWebOleShell::~SwWebOleShell() +{ +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sw/source/uibase/web/wtabsh.cxx b/sw/source/uibase/web/wtabsh.cxx new file mode 100644 index 0000000000..88008034c6 --- /dev/null +++ b/sw/source/uibase/web/wtabsh.cxx @@ -0,0 +1,52 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 . + */ + +#include <sfx2/objface.hxx> + +#include <cmdid.h> +#include <wrtsh.hxx> +#include <wtabsh.hxx> + + // needed for -fsanitize=function visibility of typeinfo for functions of + // type void(SfxShell*,SfxRequest&) defined in swslots.hxx +#define ShellClass_SwWebTableShell +#include <sfx2/msg.hxx> +#include <swslots.hxx> + +SFX_IMPL_INTERFACE(SwWebTableShell, SwTableShell) + +void SwWebTableShell::InitInterface_Impl() +{ + GetStaticInterface()->RegisterPopupMenu("table"); + GetStaticInterface()->RegisterObjectBar(SFX_OBJECTBAR_OBJECT, SfxVisibilityFlags::Invisible, ToolbarId::Table_Toolbox); +} + + +SwWebTableShell::SwWebTableShell(SwView &_rView) : + SwTableShell(_rView) +{ + GetShell().UpdateTable(); + SetName("Table"); +} + +SwWebTableShell::~SwWebTableShell() +{ +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sw/source/uibase/web/wtextsh.cxx b/sw/source/uibase/web/wtextsh.cxx new file mode 100644 index 0000000000..c655bdf2cb --- /dev/null +++ b/sw/source/uibase/web/wtextsh.cxx @@ -0,0 +1,56 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 . + */ + +#include <sfx2/objface.hxx> + +#include <cmdid.h> +#include <view.hxx> +#include <wtextsh.hxx> +#include <basesh.hxx> +#include <globals.hrc> + + // needed for -fsanitize=function visibility of typeinfo for functions of + // type void(SfxShell*,SfxRequest&) defined in swslots.hxx +#define ShellClass_SwWebTextShell +#include <sfx2/msg.hxx> +#include <swslots.hxx> + +SFX_IMPL_INTERFACE(SwWebTextShell, SwBaseShell) + +void SwWebTextShell::InitInterface_Impl() +{ + GetStaticInterface()->RegisterPopupMenu("text"); + + GetStaticInterface()->RegisterObjectBar(SFX_OBJECTBAR_OBJECT, SfxVisibilityFlags::Invisible, ToolbarId::Text_Toolbox_Sw); + + GetStaticInterface()->RegisterChildWindow(FN_EDIT_FORMULA); + GetStaticInterface()->RegisterChildWindow(FN_INSERT_FIELD); +} + + +SwWebTextShell::SwWebTextShell(SwView &_rView) : + SwTextShell(_rView) +{ +} + +SwWebTextShell::~SwWebTextShell() +{ +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sw/source/uibase/web/wview.cxx b/sw/source/uibase/web/wview.cxx new file mode 100644 index 0000000000..766c1a5ccb --- /dev/null +++ b/sw/source/uibase/web/wview.cxx @@ -0,0 +1,292 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 . + */ + +#include <config_feature_desktop.h> + +#include <sfx2/msg.hxx> +#include <sfx2/dispatch.hxx> +#include <sfx2/infobar.hxx> +#include <sfx2/viewfrm.hxx> +#include <svx/srchdlg.hxx> +#include <uivwimp.hxx> +#include <svx/fmshell.hxx> +#include <svx/fmview.hxx> +#include <svx/extrusionbar.hxx> +#include <svx/fontworkbar.hxx> +#include <vcl/inputctx.hxx> + +#include <sfx2/objface.hxx> +#include <swmodule.hxx> +#include <unotxvw.hxx> +#include <cmdid.h> +#include <globals.hrc> +#include <wrtsh.hxx> +#include <edtwin.hxx> +#include <wgrfsh.hxx> +#include <wfrmsh.hxx> +#include <wolesh.hxx> +#include <wtabsh.hxx> +#include <wlistsh.hxx> +#include <wformsh.hxx> +#include <wtextsh.hxx> +#include <barcfg.hxx> +#include <doc.hxx> + +// TECHNICALLY not possible !! +#include <beziersh.hxx> +#include <drawsh.hxx> +#include <drwtxtsh.hxx> +#include <annotsh.hxx> + +#include <wview.hxx> +#include <wdocsh.hxx> + + // needed for -fsanitize=function visibility of typeinfo for functions of + // type void(SfxShell*,SfxRequest&) defined in swslots.hxx +#include <sfx2/viewfac.hxx> +#define ShellClass_SwWebView +#define ShellClass_Text +#include <swslots.hxx> + +SFX_IMPL_NAMED_VIEWFACTORY(SwWebView, "Default") +{ + SFX_VIEW_REGISTRATION(SwWebDocShell); +} + +SFX_IMPL_INTERFACE(SwWebView, SwView) + +void SwWebView::InitInterface_Impl() +{ + GetStaticInterface()->RegisterChildWindow(SvxSearchDialogWrapper::GetChildWindowId()); + GetStaticInterface()->RegisterChildWindow(SfxInfoBarContainerChild::GetChildWindowId()); + + GetStaticInterface()->RegisterObjectBar(SFX_OBJECTBAR_TOOLS, SfxVisibilityFlags::Standard|SfxVisibilityFlags::Server, + ToolbarId::Webtools_Toolbox); +} + + +SwWebView::SwWebView(SfxViewFrame& _rFrame, SfxViewShell* _pShell) : + SwView(_rFrame, _pShell) +{ +} + +SwWebView::~SwWebView() +{ +} + +void SwWebView::SelectShell() +{ +#if HAVE_FEATURE_DESKTOP + // Decision whether UpdateTable must be called + bool bUpdateTable = false; + const SwFrameFormat* pCurTableFormat = GetWrtShell().GetTableFormat(); + if(pCurTableFormat && pCurTableFormat != GetLastTableFrameFormat()) + { + bUpdateTable = true; // can only be executed later + } + SetLastTableFrameFormat(pCurTableFormat); + //SEL_TBL and SEL_TBL_CELLS can be ored! + SelectionType nNewSelectionType = GetWrtShell().GetSelectionType() + & ~SelectionType::TableCell; + + SelectionType _nSelectionType = GetSelectionType(); + if ( nNewSelectionType == _nSelectionType ) + { + GetViewFrame().GetBindings().InvalidateAll( false ); + if ( _nSelectionType & SelectionType::Ole || + _nSelectionType & SelectionType::Graphic ) + //The verb may of course change for graphics and OLE! + ImpSetVerb( nNewSelectionType ); + } + else + { + SfxDispatcher &rDispatcher = *GetViewFrame().GetDispatcher(); + SwToolbarConfigItem *pBarCfg = SW_MOD()->GetWebToolbarConfig(); + + if( GetCurShell() ) + { + rDispatcher.Flush(); // really delete all cached shells + + //Additional to the old selection remember which toolbar was visible. + ToolbarId eId = rDispatcher.GetObjectBarId(SFX_OBJECTBAR_OBJECT); + if (eId != ToolbarId::None) + pBarCfg->SetTopToolbar( _nSelectionType, eId ); + + SfxShell *pSfxShell; + sal_uInt16 i; + for ( i = 0; true; ++i ) + { + pSfxShell = rDispatcher.GetShell( i ); + if ( !( dynamic_cast< const SwBaseShell *>( pSfxShell ) != nullptr || + dynamic_cast< const SwDrawTextShell *>( pSfxShell ) || dynamic_cast< const SwAnnotationShell *>( pSfxShell ) != nullptr ) ) + break; + } + if (i) + { + pSfxShell = rDispatcher.GetShell( --i ); + OSL_ENSURE( pSfxShell, "My Shell is lost in space" ); + rDispatcher.Pop( *pSfxShell, SfxDispatcherPopFlags::POP_UNTIL | SfxDispatcherPopFlags::POP_DELETE); + } + } + + bool bInitFormShell = false; + if( !GetFormShell() ) + { + bInitFormShell = true; + SetFormShell( new FmFormShell( this ) ); + rDispatcher.Push( *GetFormShell() ); + } + + bool bSetExtInpCntxt = false; + _nSelectionType = nNewSelectionType; + SetSelectionType( _nSelectionType ); + ShellMode eShellMode; + + if ( _nSelectionType & SelectionType::Ole ) + { + eShellMode = ShellMode::Object; + SetShell( new SwWebOleShell( *this )); + rDispatcher.Push( *GetCurShell() ); + } + else if ( _nSelectionType & SelectionType::Frame + || _nSelectionType & SelectionType::Graphic) + { + eShellMode = ShellMode::Frame; + SetShell( new SwWebFrameShell( *this )); + rDispatcher.Push( *GetCurShell() ); + if(_nSelectionType & SelectionType::Graphic ) + { + eShellMode = ShellMode::Graphic; + SetShell( new SwWebGrfShell( *this )); + rDispatcher.Push( *GetCurShell() ); + } + } + else if ( _nSelectionType & SelectionType::Frame ) + { + eShellMode = ShellMode::Frame; + SetShell( new SwWebFrameShell( *this )); + rDispatcher.Push( *GetCurShell() ); + } + else if ( _nSelectionType & SelectionType::DrawObject ) + { + eShellMode = ShellMode::Draw; + SetShell( new svx::ExtrusionBar( this ) ); + rDispatcher.Push( *GetCurShell() ); + + SetShell( new svx::FontworkBar( this ) ); + rDispatcher.Push( *GetCurShell() ); + + SetShell( new SwDrawShell( *this )); + rDispatcher.Push( *GetCurShell() ); + if ( _nSelectionType & SelectionType::Ornament ) + { + eShellMode = ShellMode::Bezier; + SetShell( new SwBezierShell( *this )); + rDispatcher.Push( *GetCurShell() ); + } + + } + else if ( _nSelectionType & SelectionType::DbForm ) + { + eShellMode = ShellMode::DrawForm; + SetShell( new SwWebDrawFormShell( *this )); + + rDispatcher.Push( *GetCurShell() ); + } + else if ( _nSelectionType & SelectionType::DrawObjectEditMode ) + { + eShellMode = ShellMode::DrawText; + rDispatcher.Push( *(new SwBaseShell( *this )) ); + SetShell( new SwDrawTextShell( *this )); + rDispatcher.Push( *GetCurShell() ); + } + else if ( _nSelectionType & SelectionType::PostIt ) + { + eShellMode = ShellMode::PostIt; + SetShell( new SwAnnotationShell( *this ) ); + rDispatcher.Push( *GetCurShell() ); + } + else + { + bSetExtInpCntxt = true; + eShellMode = ShellMode::Text; + if ( _nSelectionType & SelectionType::NumberList ) + { + eShellMode = ShellMode::ListText; + SetShell( new SwWebListShell( *this )); + rDispatcher.Push( *GetCurShell() ); + } + SetShell( new SwWebTextShell(*this)); + rDispatcher.Push( *GetCurShell() ); + if ( _nSelectionType & SelectionType::Table ) + { + eShellMode = eShellMode == ShellMode::ListText ? ShellMode::TableListText + : ShellMode::TableText; + SetShell( new SwWebTableShell( *this )); + rDispatcher.Push( *GetCurShell() ); + } + } + ImpSetVerb( _nSelectionType ); + GetViewImpl()->SetShellMode(eShellMode); + + if( !GetDocShell()->IsReadOnly() ) + { + if( bSetExtInpCntxt && GetWrtShell().HasReadonlySel() ) + bSetExtInpCntxt = false; + + InputContext aCntxt( GetEditWin().GetInputContext() ); + aCntxt.SetOptions( bSetExtInpCntxt + ? (aCntxt.GetOptions() | + ( InputContextFlags::Text | + InputContextFlags::ExtText )) + : (aCntxt.GetOptions() & ~ + InputContextFlags( InputContextFlags::Text | + InputContextFlags::ExtText )) ); + GetEditWin().SetInputContext( aCntxt ); + } + + //Additional to the selection enable the toolbar, which was + //activated last time + //Before must be a Flush(), but concerns according to MBA not the + //user interface and is not a performance issue. + // TODO/LATER: maybe now the Flush() command is superfluous?! + rDispatcher.Flush(); + + Point aPnt = GetEditWin().GetPointerPosPixel(); + aPnt = GetEditWin().PixelToLogic(aPnt); + GetEditWin().UpdatePointer(aPnt); + + if ( bInitFormShell && GetWrtShell().GetDrawView() ) + GetFormShell()->SetView( dynamic_cast< FmFormView* >( + GetWrtShell().GetDrawView())); + + } + GetViewImpl()->GetUNOObject_Impl()->NotifySelChanged(); + + //Opportune time for the communication with OLE objects? + if ( GetDocShell()->GetDoc()->IsOLEPrtNotifyPending() ) + GetDocShell()->GetDoc()->PrtOLENotify( false ); + + //now the table update + if(bUpdateTable) + GetWrtShell().UpdateTable(); +#endif +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |