/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #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: */