/* -*- 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/. */ #ifndef INCLUDED_SC_SOURCE_UI_INC_XMLSOURCEDLG_HXX #define INCLUDED_SC_SOURCE_UI_INC_XMLSOURCEDLG_HXX #include #include #include #include #include "anyrefdg.hxx" #include "orcusxml.hxx" #include #include #include class ScDocument; class ScRange; class ScOrcusXMLContext; class ScXMLSourceDlg : public ScAnyRefDlg { VclPtr mpBtnSelectSource; VclPtr mpFtSourceFile; VclPtr mpMapGrid; VclPtr mpLbTree; VclPtr mpRefEdit; VclPtr mpRefBtn; VclPtr mpBtnOk; VclPtr mpBtnCancel; OUString maSrcPath; ScOrcusXMLTreeParam maXMLParam; std::set maCellLinks; std::set maRangeLinks; std::vector maHighlightedEntries; SvTreeListEntry* mpCurRefEntry; std::unique_ptr mpXMLContext; ScDocument* mpDoc; VclPtr mpActiveEdit; bool mbDlgLostFocus; public: ScXMLSourceDlg( SfxBindings* pB, SfxChildWindow* pCW, vcl::Window* pParent, ScDocument* pDoc); virtual ~ScXMLSourceDlg(); virtual void dispose() override; virtual bool IsRefInputMode() const override; virtual void SetReference(const ScRange& rRange, ScDocument* pDoc) override; virtual void Deactivate() override; virtual void SetActive() override; virtual bool Close() override; private: void SelectSourceFile(); void LoadSourceFileStructure(const OUString& rPath); void HandleGetFocus(Control* pCtrl); void TreeItemSelected(); void DefaultElementSelected(SvTreeListEntry& rEntry); void RepeatElementSelected(SvTreeListEntry& rEntry); void AttributeSelected(SvTreeListEntry& rEntry); void SetNonLinkable(); void SetSingleLinkable(); void SetRangeLinkable(); void SelectAllChildEntries(SvTreeListEntry& rEntry); /** * Check if any of its parents is linked or repeated. The passed entry is * not checked; its parent is the first one to be checked, then all its * parents get checked all the way to the root. */ bool IsParentDirty(SvTreeListEntry* pEntry) const; bool IsChildrenDirty(SvTreeListEntry* pEntry) const; void OkPressed(); void CancelPressed(); void RefEditModified(); DECL_LINK_TYPED(GetFocusHdl, Control&, void); DECL_LINK_TYPED(BtnPressedHdl, Button*, void); DECL_LINK_TYPED(TreeItemSelectHdl, SvTreeListBox*, void); DECL_LINK_TYPED(RefModifiedHdl, Edit&, void); }; #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */