/* -*- 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 SC_FILTDLG_HXX #define SC_FILTDLG_HXX #include #include #include #include #include "global.hxx" // -> ScQueryParam #include "address.hxx" #include "anyrefdg.hxx" #include "queryparam.hxx" #include "typedstrdata.hxx" #include #include #include #include #include #include //---------------------------------------------------------------------------- class ScFilterOptionsMgr; class ScViewData; class ScDocument; class ScQueryItem; class ScFilterDlg : public ScAnyRefDlg { struct EntryList : boost::noncopyable { std::vector maList; size_t mnHeaderPos; EntryList(); }; typedef boost::ptr_map EntryListsMap; public: ScFilterDlg( SfxBindings* pB, SfxChildWindow* pCW, Window* pParent, const SfxItemSet& rArgSet ); ~ScFilterDlg(); virtual void SetReference( const ScRange& rRef, ScDocument* pDoc ); virtual sal_Bool IsRefInputMode() const; virtual void SetActive(); virtual sal_Bool Close(); void SliderMoved(); size_t GetSliderPos(); void RefreshEditRow( size_t nOffset ); private: FixedLine aFlCriteria; //---------------------------- ListBox aLbConnect1; ListBox aLbField1; ListBox aLbCond1; ComboBox aEdVal1; //---------------------------- ListBox aLbConnect2; ListBox aLbField2; ListBox aLbCond2; ComboBox aEdVal2; //---------------------------- ListBox aLbConnect3; ListBox aLbField3; ListBox aLbCond3; ComboBox aEdVal3; //---------------------------- ListBox aLbConnect4; ListBox aLbField4; ListBox aLbCond4; ComboBox aEdVal4; //---------------------------- FixedText aFtConnect; FixedText aFtField; FixedText aFtCond; FixedText aFtVal; FixedLine aFlSeparator; ScrollBar aScrollBar; FixedLine aFlOptions; MoreButton aBtnMore; HelpButton aBtnHelp; OKButton aBtnOk; CancelButton aBtnCancel; CheckBox aBtnCase; CheckBox aBtnRegExp; CheckBox aBtnHeader; CheckBox aBtnUnique; CheckBox aBtnCopyResult; ListBox aLbCopyArea; formula::RefEdit aEdCopyArea; formula::RefButton aRbCopyArea; CheckBox aBtnDestPers; FixedText aFtDbAreaLabel; FixedInfo aFtDbArea; const rtl::OUString aStrUndefined; const rtl::OUString aStrNone; const rtl::OUString aStrEmpty; const rtl::OUString aStrNotEmpty; const rtl::OUString aStrRow; const rtl::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 maEntryLists; // Hack: RefInput control Timer* pTimer; #ifdef _FILTDLG_CXX private: void Init ( const SfxItemSet& rArgSet ); void FillFieldLists (); void FillAreaList (); 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( LbSelectHdl, ListBox* ); DECL_LINK( ValModifyHdl, ComboBox* ); DECL_LINK( CheckBoxHdl, CheckBox* ); DECL_LINK( EndDlgHdl, Button* ); DECL_LINK( MoreClickHdl, void* ); DECL_LINK( ScrollHdl, void* ); // Hack: RefInput control DECL_LINK( TimeOutHdl, Timer* ); #endif }; class ScSpecialFilterDlg : public ScAnyRefDlg { public: ScSpecialFilterDlg( SfxBindings* pB, SfxChildWindow* pCW, Window* pParent, const SfxItemSet& rArgSet ); ~ScSpecialFilterDlg(); virtual void SetReference( const ScRange& rRef, ScDocument* pDoc ); virtual sal_Bool IsRefInputMode() const; virtual void SetActive(); virtual sal_Bool Close(); private: FixedText aFtFilterArea; ListBox aLbFilterArea; formula::RefEdit aEdFilterArea; formula::RefButton aRbFilterArea; FixedLine aFlOptions; CheckBox aBtnCase; CheckBox aBtnRegExp; CheckBox aBtnHeader; CheckBox aBtnUnique; CheckBox aBtnCopyResult; ListBox aLbCopyArea; formula::RefEdit aEdCopyArea; formula::RefButton aRbCopyArea; CheckBox aBtnDestPers; FixedText aFtDbAreaLabel; FixedInfo aFtDbArea; const rtl::OUString aStrUndefined; const rtl::OUString aStrNoName; OKButton aBtnOk; CancelButton aBtnCancel; HelpButton aBtnHelp; MoreButton aBtnMore; ScFilterOptionsMgr* pOptionsMgr; const sal_uInt16 nWhichQuery; const ScQueryParam theQueryData; ScQueryItem* pOutItem; ScViewData* pViewData; ScDocument* pDoc; formula::RefEdit* pRefInputEdit; bool bRefInputMode; // Hack: RefInput control Timer* pTimer; #ifdef _SFILTDLG_CXX private: void Init( const SfxItemSet& rArgSet ); ScQueryItem* GetOutputItem( const ScQueryParam& rParam, const ScRange& rSource ); // Handler DECL_LINK( FilterAreaSelHdl, ListBox* ); DECL_LINK( FilterAreaModHdl, formula::RefEdit* ); DECL_LINK( EndDlgHdl, Button* ); DECL_LINK( ScrollHdl, ScrollBar* ); // Hack: RefInput control DECL_LINK( TimeOutHdl, Timer* ); #endif }; #endif // SC_FILTDLG_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */