/* -*- 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_FILTER_SOURCE_XSLTDIALOG_XMLFILTERSETTINGSDIALOG_HXX #define INCLUDED_FILTER_SOURCE_XSLTDIALOG_XMLFILTERSETTINGSDIALOG_HXX #include #include #include #include #include #include #include #include #include #include #include "xmlfiltercommon.hxx" class HeaderBar; class XMLFilterListBox; class SvxPathControl : public vcl::Window { private: bool bHasBeenShown; VclPtr m_pVBox; VclPtr m_pHeaderBar; VclPtr m_pFocusCtrl; protected: virtual void Resize() override; virtual Size GetOptimalSize() const override; public: explicit SvxPathControl(vcl::Window* pParent); HeaderBar* getHeaderBar() { return m_pHeaderBar; } XMLFilterListBox* getListBox() { return m_pFocusCtrl; } virtual ~SvxPathControl(); virtual void dispose() override; virtual bool Notify( NotifyEvent& rNEvt ) override; }; class HeaderBar; class XMLFilterListBox : public SvTabListBox { private: VclPtr m_pHeaderBar; DECL_LINK_TYPED( TabBoxScrollHdl_Impl, SvTreeListBox*, void ); DECL_LINK_TYPED( HeaderEndDrag_Impl, HeaderBar*, void ); static OUString getEntryString( const filter_info_impl* pInfo ); public: XMLFilterListBox(Window* pParent, SvxPathControl* pPathControl); virtual ~XMLFilterListBox(); virtual void dispose() override; /** adds a new filter info entry to the ui filter list */ void addFilterEntry( const filter_info_impl* pInfo ); void changeEntry( const filter_info_impl* pInfo ); virtual void Paint( vcl::RenderContext& rRenderContext, const Rectangle& rRect ) override; }; class XMLFilterSettingsDialog : public ModelessDialog { public: XMLFilterSettingsDialog(vcl::Window* pParent, const css::uno::Reference< css::uno::XComponentContext >& rxContext, Dialog::InitFlag eFlag = Dialog::InitFlag::Default); virtual ~XMLFilterSettingsDialog(); virtual void dispose() override; DECL_LINK_TYPED(ClickHdl_Impl, Button *, void ); DECL_LINK_TYPED(SelectionChangedHdl_Impl, SvTreeListBox*, void ); DECL_LINK_TYPED(DoubleClickHdl_Impl, SvTreeListBox*, bool ); virtual short Execute() override; void onNew(); void onEdit(); void onTest(); void onDelete(); void onSave(); void onOpen(); void onClose(); void updateStates(); virtual bool Notify( NotifyEvent& rNEvt ) override; bool isClosable() { return m_bIsClosable;} private: void initFilterList(); void disposeFilterList(); bool insertOrEdit( filter_info_impl* pNewInfo, const filter_info_impl* pOldInfo = NULL ); OUString createUniqueFilterName( const OUString& rUIName ); OUString createUniqueTypeName( const OUString& rTypeName ); OUString createUniqueInterfaceName( const OUString& rInterfaceName ); private: css::uno::Reference< css::uno::XComponentContext > mxContext; css::uno::Reference< css::container::XNameContainer > mxFilterContainer; css::uno::Reference< css::container::XNameContainer > mxTypeDetection; css::uno::Reference< css::container::XNameContainer > mxExtendedTypeDetection; std::vector< filter_info_impl* > maFilterVector; VclPtr m_pFilterListBox; VclPtr m_pCtrlFilterList; VclPtr m_pPBNew; VclPtr m_pPBEdit; VclPtr m_pPBTest; VclPtr m_pPBDelete; VclPtr m_pPBSave; VclPtr m_pPBOpen; VclPtr m_pPBClose; bool m_bIsClosable; OUString m_sTemplatePath; OUString m_sDocTypePrefix; SvtModuleOptions maModuleOpt; }; #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */