/* -*- 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 . */ #include #include #include "anyrefdg.hxx" #include "rangeutl.hxx" #include "dbdata.hxx" #include "viewdata.hxx" #include "document.hxx" #include "queryparam.hxx" #include "globalnames.hxx" #define _FOPTMGR_CXX #include "foptmgr.hxx" #undef _FOPTMGR_CXX //---------------------------------------------------------------------------- ScFilterOptionsMgr::ScFilterOptionsMgr( ScViewData* ptrViewData, const ScQueryParam& refQueryData, MoreButton& refBtnMore, CheckBox& refBtnCase, CheckBox& refBtnRegExp, CheckBox& refBtnHeader, CheckBox& refBtnUnique, CheckBox& refBtnCopyResult, CheckBox& refBtnDestPers, ListBox& refLbCopyArea, Edit& refEdCopyArea, formula::RefButton& refRbCopyArea, FixedText& refFtDbAreaLabel, FixedInfo& refFtDbArea, FixedLine& refFlOptions, const String& refStrUndefined ) : pViewData ( ptrViewData ), pDoc ( ptrViewData ? ptrViewData->GetDocument() : NULL ), rBtnMore ( refBtnMore ), rBtnCase ( refBtnCase ), rBtnRegExp ( refBtnRegExp ), rBtnHeader ( refBtnHeader ), rBtnUnique ( refBtnUnique ), rBtnCopyResult ( refBtnCopyResult ), rBtnDestPers ( refBtnDestPers ), rLbCopyPos ( refLbCopyArea ), rEdCopyPos ( refEdCopyArea ), rRbCopyPos ( refRbCopyArea ), rFtDbAreaLabel ( refFtDbAreaLabel ), rFtDbArea ( refFtDbArea ), rFlOptions ( refFlOptions ), rStrUndefined ( refStrUndefined ), rQueryData ( refQueryData ) { Init(); } //---------------------------------------------------------------------------- ScFilterOptionsMgr::~ScFilterOptionsMgr() { sal_uInt16 nEntries = rLbCopyPos.GetEntryCount(); sal_uInt16 i; for ( i=2; iGetTabNo() ), ScAddress( rQueryData.nCol2, rQueryData.nRow2, pViewData->GetTabNo() ) ); ScDBCollection* pDBColl = pDoc->GetDBCollection(); OUStringBuffer theDbArea; OUString theDbName(STR_DB_LOCAL_NONAME); const formula::FormulaGrammar::AddressConvention eConv = pDoc->GetAddressConvention(); theCurArea.Format( theAreaStr, SCR_ABS_3D, pDoc, eConv ); // Zielbereichsliste fuellen rLbCopyPos.Clear(); rLbCopyPos.InsertEntry( rStrUndefined, 0 ); ScAreaNameIterator aIter( pDoc ); String aName; ScRange aRange; String aRefStr; while ( aIter.Next( aName, aRange ) ) { sal_uInt16 nInsert = rLbCopyPos.InsertEntry( aName ); aRange.aStart.Format( aRefStr, SCA_ABS_3D, pDoc, eConv ); rLbCopyPos.SetEntryData( nInsert, new String( aRefStr ) ); } rBtnDestPers.Check( sal_True ); // beim Aufruf immer an rLbCopyPos.SelectEntryPos( 0 ); rEdCopyPos.SetText( EMPTY_STRING ); /* * Ueberpruefen, ob es sich bei dem uebergebenen * Bereich um einen Datenbankbereich handelt: */ theDbArea = theAreaStr; if ( pDBColl ) { ScAddress& rStart = theCurArea.aStart; ScAddress& rEnd = theCurArea.aEnd; const ScDBData* pDBData = pDBColl->GetDBAtArea( rStart.Tab(), rStart.Col(), rStart.Row(), rEnd.Col(), rEnd.Row()); if ( pDBData ) { rBtnHeader.Check( pDBData->HasHeader() ); theDbName = pDBData->GetName(); if ( theDbName == STR_DB_LOCAL_NONAME ) rBtnHeader.Enable(); else rBtnHeader.Disable(); } } if ( !theDbName.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(STR_DB_LOCAL_NONAME)) ) { theDbArea.appendAscii(RTL_CONSTASCII_STRINGPARAM(" (")); theDbArea.append(theDbName).append(')'); rFtDbArea.SetText( theDbArea.makeStringAndClear() ); } else { rFtDbAreaLabel.SetText( OUString() ); rFtDbArea.SetText( OUString() ); } //------------------------------------------------------ // Kopierposition: if ( !rQueryData.bInplace ) { String aString; ScAddress( rQueryData.nDestCol, rQueryData.nDestRow, rQueryData.nDestTab ).Format( aString, SCA_ABS_3D, pDoc, eConv ); rBtnCopyResult.Check( sal_True ); rEdCopyPos.SetText( aString ); EdPosModifyHdl( &rEdCopyPos ); rLbCopyPos.Enable(); rEdCopyPos.Enable(); rRbCopyPos.Enable(); rBtnDestPers.Enable(); } else { rBtnCopyResult.Check( false ); rEdCopyPos.SetText( EMPTY_STRING ); rLbCopyPos.Disable(); rEdCopyPos.Disable(); rRbCopyPos.Disable(); rBtnDestPers.Disable(); } } else rEdCopyPos.SetText( EMPTY_STRING ); } //---------------------------------------------------------------------------- sal_Bool ScFilterOptionsMgr::VerifyPosStr( const String& rPosStr ) const { String aPosStr( rPosStr ); xub_StrLen nColonPos = aPosStr.Search( ':' ); if ( STRING_NOTFOUND != nColonPos ) aPosStr.Erase( nColonPos ); sal_uInt16 nResult = ScAddress().Parse( aPosStr, pDoc, pDoc->GetAddressConvention() ); return ( SCA_VALID == (nResult & SCA_VALID) ); } //---------------------------------------------------------------------------- // Handler: //---------------------------------------------------------------------------- IMPL_LINK( ScFilterOptionsMgr, LbPosSelHdl, ListBox*, pLb ) { if ( pLb == &rLbCopyPos ) { String aString; sal_uInt16 nSelPos = rLbCopyPos.GetSelectEntryPos(); if ( nSelPos > 0 ) aString = *(String*)rLbCopyPos.GetEntryData( nSelPos ); rEdCopyPos.SetText( aString ); } return 0; } //---------------------------------------------------------------------------- IMPL_LINK( ScFilterOptionsMgr, EdPosModifyHdl, Edit*, pEd ) { if ( pEd == &rEdCopyPos ) { String theCurPosStr = pEd->GetText(); sal_uInt16 nResult = ScAddress().Parse( theCurPosStr, pDoc, pDoc->GetAddressConvention() ); if ( SCA_VALID == (nResult & SCA_VALID) ) { String* pStr = NULL; sal_Bool bFound = false; sal_uInt16 i = 0; sal_uInt16 nCount = rLbCopyPos.GetEntryCount(); for ( i=2; iIsChecked() ) { rBtnDestPers.Enable(); rLbCopyPos.Enable(); rEdCopyPos.Enable(); rRbCopyPos.Enable(); rEdCopyPos.GrabFocus(); } else { rBtnDestPers.Disable(); rLbCopyPos.Disable(); rEdCopyPos.Disable(); rRbCopyPos.Disable(); } } return 0; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */