/* -*- 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_SC_SOURCE_UI_INC_FILTDLG_HXX #define INCLUDED_SC_SOURCE_UI_INC_FILTDLG_HXX #include #include #include #include #include #include "global.hxx" #include "address.hxx" #include "anyrefdg.hxx" #include "queryparam.hxx" #include "typedstrdata.hxx" #include #include #include #include class ScFilterOptionsMgr; class ScViewData; class ScDocument; class ScQueryItem; class ScFilterDlg : public ScAnyRefDlg { struct EntryList { std::vector maList; size_t mnHeaderPos; EntryList(const EntryList&) = delete; const EntryList& operator=(const EntryList&) = delete; EntryList(); }; typedef std::map> EntryListsMap; public: ScFilterDlg( SfxBindings* pB, SfxChildWindow* pCW, vcl::Window* pParent, const SfxItemSet& rArgSet ); virtual ~ScFilterDlg(); virtual void dispose() override; virtual void SetReference( const ScRange& rRef, ScDocument* pDoc ) override; virtual bool IsRefInputMode() const override; virtual void SetActive() override; virtual bool Close() override; void SliderMoved(); size_t GetSliderPos(); void RefreshEditRow( size_t nOffset ); private: VclPtr pLbConnect1; VclPtr pLbField1; VclPtr pLbCond1; VclPtr pEdVal1; VclPtr pLbConnect2; VclPtr pLbField2; VclPtr pLbCond2; VclPtr pEdVal2; VclPtr pLbConnect3; VclPtr pLbField3; VclPtr pLbCond3; VclPtr pEdVal3; VclPtr pLbConnect4; VclPtr pLbField4; VclPtr pLbCond4; VclPtr pEdVal4; VclPtr pScrollBar; VclPtr pExpander; VclPtr pBtnOk; VclPtr pBtnCancel; VclPtr pBtnCase; VclPtr pBtnRegExp; VclPtr pBtnHeader; VclPtr pBtnUnique; VclPtr pBtnCopyResult; VclPtr pLbCopyArea; VclPtr pEdCopyArea; VclPtr pRbCopyArea; VclPtr pBtnDestPers; VclPtr pFtDbAreaLabel; VclPtr pFtDbArea; const OUString aStrUndefined; const OUString aStrNone; const OUString aStrEmpty; const OUString aStrNotEmpty; const OUString aStrColumn; ScFilterOptionsMgr* pOptionsMgr; const sal_uInt16 nWhichQuery; ScQueryParam theQueryData; ScQueryItem* pOutItem; ScViewData* pViewData; ScDocument* pDoc; SCTAB nSrcTab; std::vector> maValueEdArr; std::vector> maFieldLbArr; std::vector> maCondLbArr; std::vector> maConnLbArr; std::deque maHasDates; std::deque maRefreshExceptQuery; bool bRefInputMode; EntryListsMap m_EntryLists; // Hack: RefInput control Timer* pTimer; private: void Init ( const SfxItemSet& rArgSet ); void FillFieldLists (); void UpdateValueList ( size_t nList ); void UpdateHdrInValueList( size_t nList ); void ClearValueList ( size_t nList ); size_t GetFieldSelPos ( SCCOL nField ); ScQueryItem* GetOutputItem (); // Handler: DECL_LINK_TYPED( LbSelectHdl, ListBox&, void ); DECL_LINK_TYPED( ValModifyHdl, Edit&, void ); DECL_LINK_TYPED( CheckBoxHdl, Button*, void ); DECL_LINK_TYPED( EndDlgHdl, Button*, void ); DECL_LINK_TYPED( ScrollHdl, ScrollBar*, void ); DECL_LINK_TYPED( MoreExpandedHdl, VclExpander&, void ); // Hack: RefInput control DECL_LINK_TYPED( TimeOutHdl, Timer*, void ); }; class ScSpecialFilterDlg : public ScAnyRefDlg { public: ScSpecialFilterDlg( SfxBindings* pB, SfxChildWindow* pCW, vcl::Window* pParent, const SfxItemSet& rArgSet ); virtual ~ScSpecialFilterDlg(); virtual void dispose() override; virtual void SetReference( const ScRange& rRef, ScDocument* pDoc ) override; virtual bool IsRefInputMode() const override; virtual void SetActive() override; virtual bool Close() override; private: VclPtr pLbFilterArea; VclPtr pEdFilterArea; VclPtr pRbFilterArea; VclPtr pExpander; VclPtr pBtnCase; VclPtr pBtnRegExp; VclPtr pBtnHeader; VclPtr pBtnUnique; VclPtr pBtnCopyResult; VclPtr pLbCopyArea; VclPtr pEdCopyArea; VclPtr pRbCopyArea; VclPtr pBtnDestPers; VclPtr pFtDbAreaLabel; VclPtr pFtDbArea; const OUString aStrUndefined; VclPtr pBtnOk; VclPtr pBtnCancel; ScFilterOptionsMgr* pOptionsMgr; const sal_uInt16 nWhichQuery; const ScQueryParam theQueryData; ScQueryItem* pOutItem; ScViewData* pViewData; ScDocument* pDoc; VclPtr pRefInputEdit; bool bRefInputMode; // Hack: RefInput control Idle* pIdle; private: void Init( const SfxItemSet& rArgSet ); ScQueryItem* GetOutputItem( const ScQueryParam& rParam, const ScRange& rSource ); // Handler DECL_LINK_TYPED( FilterAreaSelHdl, ListBox&, void ); DECL_LINK_TYPED( FilterAreaModHdl, Edit&, void ); DECL_LINK_TYPED( EndDlgHdl, Button*, void ); // Hack: RefInput control DECL_LINK_TYPED( TimeOutHdl, Idle*, void ); }; #endif // INCLUDED_SC_SOURCE_UI_INC_FILTDLG_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */