summaryrefslogtreecommitdiffstats
path: root/sw/source/ui/frmdlg/frmdlg.cxx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sw/source/ui/frmdlg/frmdlg.cxx201
1 files changed, 201 insertions, 0 deletions
diff --git a/sw/source/ui/frmdlg/frmdlg.cxx b/sw/source/ui/frmdlg/frmdlg.cxx
new file mode 100644
index 000000000..5ce1d903c
--- /dev/null
+++ b/sw/source/ui/frmdlg/frmdlg.cxx
@@ -0,0 +1,201 @@
+/* -*- 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/dialogs.hrc>
+#include <hintids.hxx>
+#include <sfx2/viewfrm.hxx>
+#include <sfx2/sfxdlg.hxx>
+#include <sfx2/htmlmode.hxx>
+#include <fmtfsize.hxx>
+#include <wrtsh.hxx>
+#include <view.hxx>
+#include <viewopt.hxx>
+#include <frmdlg.hxx>
+#include <frmpage.hxx>
+#include <wrap.hxx>
+#include <column.hxx>
+#include <macassgn.hxx>
+#include <IDocumentSettingAccess.hxx>
+
+#include <strings.hrc>
+#include <svl/eitem.hxx>
+#include <svx/svxids.hrc>
+#include <svx/flagsdef.hxx>
+#include <svx/drawitem.hxx>
+#include <comphelper/lok.hxx>
+
+// the dialog's carrier
+SwFrameDlg::SwFrameDlg(SfxViewFrame const * pViewFrame,
+ weld::Window* pParent,
+ const SfxItemSet& rCoreSet,
+ bool bNewFrame,
+ const OUString& sResType,
+ bool bFormat,
+ const OString& sDefPage,
+ const OUString* pStr)
+
+ : SfxTabDialogController(pParent, "modules/swriter/ui/" + sResType.toAsciiLowerCase() + ".ui",
+ sResType.toUtf8(), &rCoreSet, pStr != nullptr)
+ , m_bFormat(bFormat)
+ , m_bNew(bNewFrame)
+ , m_rSet(rCoreSet)
+ , m_sDlgType(sResType)
+ , m_pWrtShell(static_cast<SwView*>(pViewFrame->GetViewShell())->GetWrtShellPtr())
+{
+ sal_uInt16 nHtmlMode = ::GetHtmlMode(m_pWrtShell->GetView().GetDocShell());
+ bool bHTMLMode = (nHtmlMode & HTMLMODE_ON) != 0;
+
+ // example font for both example TabPages
+
+ if (pStr)
+ {
+ m_xDialog->set_title(m_xDialog->get_title() + SwResId(STR_FRMUI_COLL_HEADER) + *pStr + ")");
+ }
+
+ AddTabPage("type", SwFramePage::Create, nullptr);
+ AddTabPage("options", SwFrameAddPage::Create, nullptr);
+ AddTabPage("wrap", SwWrapTabPage::Create, nullptr);
+ AddTabPage("hyperlink", SwFrameURLPage::Create, nullptr);
+ if (m_sDlgType == "PictureDialog")
+ {
+ AddTabPage("picture", SwGrfExtPage::Create, nullptr);
+ AddTabPage("crop", RID_SVXPAGE_GRFCROP);
+ }
+ if (m_sDlgType == "FrameDialog")
+ {
+ AddTabPage("columns", SwColumnPage::Create, nullptr);
+ }
+ SfxAbstractDialogFactory* pFact = SfxAbstractDialogFactory::Create();
+
+ // add Area and Transparence TabPages
+ AddTabPage("area", pFact->GetTabPageCreatorFunc( RID_SVXPAGE_AREA ), pFact->GetTabPageRangesFunc( RID_SVXPAGE_AREA ));
+ AddTabPage("transparence", pFact->GetTabPageCreatorFunc( RID_SVXPAGE_TRANSPARENCE ), pFact->GetTabPageRangesFunc( RID_SVXPAGE_TRANSPARENCE ) );
+
+ AddTabPage("macro", pFact->GetTabPageCreatorFunc(RID_SVXPAGE_MACROASSIGN), nullptr);
+ AddTabPage("borders", pFact->GetTabPageCreatorFunc( RID_SVXPAGE_BORDER ), nullptr);
+
+ if(bHTMLMode)
+ {
+ if (m_sDlgType == "FrameDialog" || m_sDlgType == "ObjectDialog")
+ {
+ if (m_sDlgType == "FrameDialog")
+ RemoveTabPage("columns");
+ RemoveTabPage("hyperlink");
+ RemoveTabPage("macro");
+ }
+ else if (m_sDlgType == "PictureDialog")
+ RemoveTabPage("crop");
+ if( m_sDlgType != "FrameDialog" )
+ {
+ // RemoveTabPage("background");
+ RemoveTabPage("area");
+ RemoveTabPage("transparence");
+ }
+ }
+
+ if(comphelper::LibreOfficeKit::isActive())
+ RemoveTabPage("macro");
+
+ if (m_bNew)
+ SetCurPageId("type");
+
+ if (!sDefPage.isEmpty())
+ SetCurPageId(sDefPage);
+}
+
+SwFrameDlg::~SwFrameDlg()
+{
+}
+
+void SwFrameDlg::PageCreated(const OString& rId, SfxTabPage &rPage)
+{
+ SfxAllItemSet aSet(*(GetInputSetImpl()->GetPool()));
+ if (rId == "type")
+ {
+ static_cast<SwFramePage&>(rPage).SetNewFrame(m_bNew);
+ static_cast<SwFramePage&>(rPage).SetFormatUsed(m_bFormat);
+ static_cast<SwFramePage&>(rPage).SetFrameType(m_sDlgType);
+ }
+ else if (rId == "options")
+ {
+ static_cast<SwFrameAddPage&>(rPage).SetFormatUsed(m_bFormat);
+ static_cast<SwFrameAddPage&>(rPage).SetFrameType(m_sDlgType);
+ static_cast<SwFrameAddPage&>(rPage).SetNewFrame(m_bNew);
+ static_cast<SwFrameAddPage&>(rPage).SetShell(m_pWrtShell);
+ }
+ else if (rId == "wrap")
+ {
+ static_cast<SwWrapTabPage&>(rPage).SetNewFrame(m_bNew);
+ static_cast<SwWrapTabPage&>(rPage).SetFormatUsed(m_bFormat, false);
+ static_cast<SwWrapTabPage&>(rPage).SetShell(m_pWrtShell);
+ }
+ else if (rId == "columns")
+ {
+ static_cast<SwColumnPage&>(rPage).SetFrameMode(true);
+ static_cast<SwColumnPage&>(rPage).SetFormatUsed(m_bFormat);
+
+ const SwFormatFrameSize& rSize = m_rSet.Get( RES_FRM_SIZE );
+ static_cast<SwColumnPage&>(rPage).SetPageWidth( rSize.GetWidth() );
+ }
+ else if (rId == "macro")
+ {
+ SfxAllItemSet aNewSet(*aSet.GetPool());
+ aNewSet.Put( SwMacroAssignDlg::AddEvents(
+ m_sDlgType == "PictureDialog" ? MACASSGN_GRAPHIC : m_sDlgType == "ObjectDialog" ? MACASSGN_OLE : MACASSGN_FRMURL ) );
+ if (m_pWrtShell)
+ rPage.SetFrame( m_pWrtShell->GetView().GetViewFrame()->GetFrame().GetFrameInterface() );
+ rPage.PageCreated(aNewSet);
+ }
+ else if (rId == "borders")
+ {
+ aSet.Put (SfxUInt16Item(SID_SWMODE_TYPE,static_cast<sal_uInt16>(SwBorderModes::FRAME)));
+ rPage.PageCreated(aSet);
+ }
+ // inits for Area and Transparency TabPages
+ // The selection attribute lists (XPropertyList derivates, e.g. XColorList for
+ // the color table) need to be added as items (e.g. SvxColorListItem) to make
+ // these pages find the needed attributes for fill style suggestions.
+ // These are set in preparation to trigger this dialog (FN_FORMAT_FRAME_DLG and
+ // FN_DRAW_WRAP_DLG), but could also be directly added from the DrawModel.
+ else if (rId == "area")
+ {
+ SfxItemSetFixed<SID_COLOR_TABLE, SID_PATTERN_LIST,
+ SID_OFFER_IMPORT, SID_OFFER_IMPORT>
+ aNew(*GetInputSetImpl()->GetPool());
+
+ aNew.Put(m_rSet);
+
+ // add flag for direct graphic content selection
+ aNew.Put(SfxBoolItem(SID_OFFER_IMPORT, true));
+
+ rPage.PageCreated(aNew);
+ }
+ else if (rId == "transparence")
+ {
+ rPage.PageCreated(m_rSet);
+ }
+ else if (rId == "crop")
+ {
+ sal_Int32 nPreferredDPI = m_pWrtShell->GetDoc()->getIDocumentSettingAccess().getImagePreferredDPI();
+ if (nPreferredDPI)
+ rPage.getAdditionalProperties().emplace("PreferredDPI", css::uno::Any(nPreferredDPI));
+ }
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */