/* -*- 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 . */ #ifndef INCLUDED_CUI_SOURCE_INC_SELECTOR_HXX #define INCLUDED_CUI_SOURCE_INC_SELECTOR_HXX #include #include #include #include #include #include #include #include #include #include #include class SaveInData; #define SVX_CFGGROUP_FUNCTION 1 #define SVX_CFGFUNCTION_SLOT 2 #define SVX_CFGGROUP_SCRIPTCONTAINER 3 #define SVX_CFGFUNCTION_SCRIPT 4 #define SVX_CFGGROUP_ALLFUNCTIONS 5 struct SvxGroupInfo_Impl { sal_uInt16 nKind; sal_uInt16 nOrd; css::uno::Reference< css::script::browse::XBrowseNode > xBrowseNode; OUString sURL; OUString sHelpText; bool bWasOpened; SvxGroupInfo_Impl( sal_uInt16 n, sal_uInt16 nr ) :nKind( n ) ,nOrd( nr ) ,xBrowseNode() ,sURL() ,sHelpText() ,bWasOpened(false) { } SvxGroupInfo_Impl( sal_uInt16 n, sal_uInt16 nr, const css::uno::Reference< css::script::browse::XBrowseNode >& _rxNode ) :nKind( n ) ,nOrd( nr ) ,xBrowseNode( _rxNode ) ,sURL() ,sHelpText() ,bWasOpened(false) { } SvxGroupInfo_Impl( sal_uInt16 n, sal_uInt16 nr, const OUString& _rURL, const OUString& _rHelpText ) :nKind( n ) ,nOrd( nr ) ,xBrowseNode() ,sURL( _rURL ) ,sHelpText( _rHelpText ) ,bWasOpened(false) { } }; typedef std::vector > SvxGroupInfoArr_Impl; class SvxConfigFunctionListBox : public SvTreeListBox { friend class SvxConfigGroupListBox; Timer aTimer; SvTreeListEntry* pCurEntry; SvxGroupInfoArr_Impl aArr; SvTreeListEntry* m_pDraggingEntry; DECL_LINK(TimerHdl, Timer *, void); virtual void MouseMove( const MouseEvent& rMEvt ) override; public: SvxConfigFunctionListBox(vcl::Window* pParent, WinBits nStyle); virtual ~SvxConfigFunctionListBox() override; virtual void dispose() override; void ClearAll(); OUString GetHelpText( SvTreeListEntry *pEntry ); using Window::GetHelpText; SvTreeListEntry* GetLastSelectedEntry(); void FunctionSelected(); // drag n drop methods virtual sal_Int8 AcceptDrop( const AcceptDropEvent& rEvt ) override; virtual DragDropMode NotifyStartDrag( TransferDataContainer&, SvTreeListEntry* ) override; virtual void DragFinished( sal_Int8 ) override; }; class SvxConfigGroupListBox : public SvTreeListBox { SvxGroupInfoArr_Impl aArr; bool m_bShowSlots; VclPtr pFunctionListBox; SaveInData* m_pImageProvider; css::uno::Reference < css::frame::XFrame > m_xFrame; css::uno::Reference < css::container::XNameAccess > m_xModuleCommands; Image m_hdImage; Image m_libImage; Image m_macImage; Image m_docImage; OUString m_sMyMacros; OUString m_sProdMacros; Image GetImage( const css::uno::Reference< css::script::browse::XBrowseNode >& node, css::uno::Reference< css::uno::XComponentContext > const & xCtx, bool bIsRootNode ); static css::uno::Reference< css::uno::XInterface > getDocumentModel( css::uno::Reference< css::uno::XComponentContext > const & xCtx, OUString& docName ); private: void fillScriptList( const css::uno::Reference< css::script::browse::XBrowseNode >& _rxRootNode, SvTreeListEntry* _pParentEntry, bool _bCheapChildrenOnDemand ); void fillFunctionList( const com::sun::star::uno::Sequence< com::sun::star::frame::DispatchInformation >& commands ); protected: virtual void RequestingChildren( SvTreeListEntry *pEntry) override; virtual bool Expand( SvTreeListEntry* pParent ) override; public: SvxConfigGroupListBox(vcl::Window* pParent, WinBits nStyle); virtual ~SvxConfigGroupListBox() override; virtual void dispose() override; void Init(bool bShowSlots, const css::uno::Reference < css::frame::XFrame >& xFrame); void ClearAll(); void GroupSelected(); void SetFunctionListBox( SvxConfigFunctionListBox *pBox ) { pFunctionListBox = pBox; } void SetImageProvider( SaveInData* provider ) { m_pImageProvider = provider; } }; class SvxScriptSelectorDialog : public ModalDialog { VclPtr m_pDialogDescription; VclPtr m_pCategories; VclPtr m_pCommands; VclPtr m_pOKButton; VclPtr m_pCancelButton; VclPtr m_pDescriptionText; OUString m_sDefaultDesc; bool m_bShowSlots; Link m_aAddHdl; DECL_LINK( ClickHdl, Button *, void ); DECL_LINK( SelectHdl, SvTreeListBox*, void ); DECL_LINK( FunctionDoubleClickHdl, SvTreeListBox*, bool ); void UpdateUI(); public: SvxScriptSelectorDialog ( vcl::Window* pParent = nullptr, bool bShowSlots = false, const css::uno::Reference< css::frame::XFrame >& xFrame = nullptr ); virtual ~SvxScriptSelectorDialog() override; virtual void dispose() override; void SetAddHdl( const Link& rLink ) { m_aAddHdl = rLink; } const Link& GetAddHdl() const { return m_aAddHdl; } void SetImageProvider(SaveInData* provider) { m_pCategories->SetImageProvider(provider); } OUString GetScriptURL() const; OUString GetSelectedDisplayName(); void SetRunLabel(); void SetDialogDescription(const OUString& rDescription); }; #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */