LCOV - code coverage report
Current view: top level - reportdesign/source/ui/dlg - Formula.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 1 130 0.8 %
Date: 2015-06-13 12:38:46 Functions: 2 34 5.9 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : #include <vcl/svapp.hxx>
      21             : #include <vcl/mnemonic.hxx>
      22             : #include <vcl/msgbox.hxx>
      23             : #include <unotools/charclass.hxx>
      24             : #include <unotools/viewoptions.hxx>
      25             : #include <formula/formdata.hxx>
      26             : #include <formula/funcutl.hxx>
      27             : #include <formula/tokenarray.hxx>
      28             : #include <com/sun/star/lang/XMultiServiceFactory.hpp>
      29             : 
      30             : #include <boost/scoped_ptr.hpp>
      31             : 
      32             : #include "Formula.hxx"
      33             : #include "AddField.hxx"
      34             : #include "helpids.hrc"
      35             : 
      36             : 
      37             : namespace rptui
      38             : {
      39             :     using namespace formula;
      40             :     using namespace ::com::sun::star;
      41             : 
      42             : 
      43             : //      Initialisierung / gemeinsame Funktionen  fuer Dialog
      44             : 
      45             : 
      46           0 : FormulaDialog::FormulaDialog(vcl::Window* pParent
      47             :                              , const uno::Reference<lang::XMultiServiceFactory>& _xServiceFactory
      48             :                              , const ::boost::shared_ptr< IFunctionManager >&  _pFunctionMgr
      49             :                              , const OUString& _sFormula
      50             :                              , const ::com::sun::star::uno::Reference < ::com::sun::star::beans::XPropertySet >& _xRowSet
      51             :                              , svl::SharedStringPool& rStrPool )
      52             :     : FormulaModalDialog( pParent, false,false,false,_pFunctionMgr.get(),this)
      53             :     ,m_aFunctionManager(_pFunctionMgr)
      54           0 :     ,m_pFormulaData(new FormEditData())
      55             :     ,m_pAddField(NULL)
      56             :     ,m_xRowSet(_xRowSet)
      57             :     ,m_pEdit(NULL)
      58             :     ,m_sFormula("=")
      59             :     ,m_nStart(0)
      60             :     ,m_nEnd(1)
      61           0 :     ,mrStringPool(rStrPool)
      62             : {
      63           0 :     if ( !_sFormula.isEmpty() )
      64             :     {
      65           0 :         if ( _sFormula[0] != '=' )
      66           0 :             m_sFormula += _sFormula;
      67             :         else
      68           0 :             m_sFormula = _sFormula;
      69             :     }
      70           0 :     m_xParser.set(_xServiceFactory->createInstance("org.libreoffice.report.pentaho.SOFormulaParser"),uno::UNO_QUERY);
      71           0 :     if ( m_xParser.is() )
      72           0 :         m_xOpCodeMapper = m_xParser->getFormulaOpCodeMapper();
      73           0 :     fill();
      74           0 : }
      75             : 
      76           0 : void FormulaDialog::notifyChange()
      77             : {
      78           0 : }
      79             : 
      80           0 : void FormulaDialog::fill()
      81             : {
      82           0 :     SetMeText(m_sFormula);
      83           0 :     Update(m_sFormula);
      84           0 :     CheckMatrix(m_sFormula);
      85           0 :     Update();
      86           0 : }
      87             : 
      88           0 : FormulaDialog::~FormulaDialog()
      89             : {
      90           0 :     disposeOnce();
      91           0 : }
      92             : 
      93           0 : void FormulaDialog::dispose()
      94             : {
      95           0 :     if ( m_pAddField )
      96             :     {
      97           0 :         SvtViewOptions aDlgOpt( E_WINDOW, OUString( HID_RPT_FIELD_SEL_WIN ) );
      98           0 :         aDlgOpt.SetWindowState(OStringToOUString(m_pAddField->GetWindowState((WINDOWSTATE_MASK_X | WINDOWSTATE_MASK_Y | WINDOWSTATE_MASK_STATE | WINDOWSTATE_MASK_MINIMIZED)), RTL_TEXTENCODING_ASCII_US));
      99             :     }
     100             : 
     101           0 :     StoreFormEditData( m_pFormulaData );
     102           0 :     m_pEdit.clear();
     103           0 :     m_pAddField.clear();
     104           0 :     formula::FormulaModalDialog::dispose();
     105           0 : }
     106             : 
     107             : 
     108             : //                          Funktionen fuer rechte Seite
     109             : 
     110           0 : bool FormulaDialog::calculateValue( const OUString& rStrExp, OUString& rStrResult )
     111             : {
     112           0 :     rStrResult = rStrExp;
     113           0 :     return false;
     114             : }
     115           0 : void FormulaDialog::doClose(bool _bOk)
     116             : {
     117           0 :     EndDialog(_bOk ? RET_OK : RET_CANCEL);
     118           0 : }
     119           0 : void FormulaDialog::insertEntryToLRUList(const IFunctionDescription*    /*_pDesc*/)
     120             : {
     121           0 : }
     122           0 : void FormulaDialog::showReference(const OUString& /*_sFormula*/)
     123             : {
     124           0 : }
     125           0 : void FormulaDialog::dispatch(bool /*_bOK*/, bool /*_bMatrixChecked*/)
     126             : {
     127           0 : }
     128           0 : void FormulaDialog::setDispatcherLock( bool /*bLock*/ )
     129             : {
     130           0 : }
     131           0 : void FormulaDialog::setReferenceInput(const FormEditData* /*_pData*/)
     132             : {
     133           0 : }
     134           0 : void FormulaDialog::deleteFormData()
     135             : {
     136           0 : }
     137           0 : void FormulaDialog::clear()
     138             : {
     139           0 : }
     140           0 : void FormulaDialog::switchBack()
     141             : {
     142           0 : }
     143           0 : FormEditData* FormulaDialog::getFormEditData() const
     144             : {
     145           0 :     return m_pFormulaData;
     146             : }
     147           0 : void FormulaDialog::setCurrentFormula(const OUString& _sReplacement)
     148             : {
     149           0 :     const sal_Int32 nOldLen = m_nEnd - m_nStart;
     150           0 :     const sal_Int32 nNewLen = _sReplacement.getLength();
     151           0 :     if (nOldLen)
     152           0 :         m_sFormula = m_sFormula.replaceAt( m_nStart, nOldLen, "" );
     153           0 :     if (nNewLen)
     154           0 :         m_sFormula = m_sFormula.replaceAt( m_nStart, 0, _sReplacement );
     155           0 :     m_nEnd = m_nStart + nNewLen;
     156           0 : }
     157           0 : void FormulaDialog::setSelection(sal_Int32 _nStart, sal_Int32 _nEnd)
     158             : {
     159           0 :     if ( _nStart <= _nEnd )
     160             :     {
     161           0 :         m_nStart = _nStart;
     162           0 :         m_nEnd = _nEnd;
     163             :     }
     164             :     else
     165             :     {
     166           0 :         m_nEnd = _nStart;
     167           0 :         m_nStart = _nEnd;
     168             :     }
     169           0 : }
     170           0 : void FormulaDialog::getSelection(sal_Int32& _nStart, sal_Int32& _nEnd) const
     171             : {
     172           0 :     _nStart = m_nStart;
     173           0 :     _nEnd = m_nEnd;
     174           0 : }
     175           0 : OUString FormulaDialog::getCurrentFormula() const
     176             : {
     177           0 :     return m_sFormula;
     178             : }
     179           0 : IFunctionManager* FormulaDialog::getFunctionManager()
     180             : {
     181           0 :     return m_aFunctionManager.get();
     182             : }
     183             : 
     184           0 : void FormulaDialog::ShowReference(const OUString& /*_sRef*/)
     185             : {
     186           0 : }
     187             : 
     188           0 : void FormulaDialog::HideReference( bool /*bDoneRefMode*/)
     189             : {
     190           0 : }
     191             : 
     192           0 : void FormulaDialog::ReleaseFocus( RefEdit* /*pEdit*/, RefButton* /*pButton*/)
     193             : {
     194           0 : }
     195             : 
     196           0 : void FormulaDialog::ToggleCollapsed( RefEdit* _pEdit, RefButton* _pButton)
     197             : {
     198           0 :     ::std::pair<RefButton*,RefEdit*> aPair = RefInputStartBefore( _pEdit, _pButton );
     199           0 :     m_pEdit = aPair.second;
     200           0 :     if ( m_pEdit )
     201           0 :         m_pEdit->Hide();
     202           0 :     if ( aPair.first )
     203           0 :         aPair.first->Hide();
     204             : 
     205           0 :     if ( !m_pAddField )
     206             :     {
     207           0 :         m_pAddField = VclPtr<OAddFieldWindow>::Create(this,m_xRowSet);
     208           0 :         m_pAddField->SetCreateHdl(LINK( this, FormulaDialog, OnClickHdl ) );
     209           0 :         SvtViewOptions aDlgOpt( E_WINDOW, OUString( HID_RPT_FIELD_SEL_WIN ) );
     210           0 :         if ( aDlgOpt.Exists() )
     211             :         {
     212           0 :             m_pAddField->SetWindowState(OUStringToOString(aDlgOpt.GetWindowState().getStr(), RTL_TEXTENCODING_ASCII_US));
     213             : 
     214             :         }
     215             : 
     216           0 :         m_pAddField->Update();
     217             :     }
     218           0 :     RefInputStartAfter( aPair.second, aPair.first );
     219           0 :     m_pAddField->Show();
     220             : 
     221           0 : }
     222             : 
     223           0 : IMPL_LINK( FormulaDialog, OnClickHdl, OAddFieldWindow* ,_pAddFieldDlg)
     224             : {
     225           0 :     const uno::Sequence< beans::PropertyValue > aArgs = _pAddFieldDlg->getSelectedFieldDescriptors();
     226             :     // we use this way to create undo actions
     227           0 :     if ( m_pEdit && aArgs.getLength() == 1)
     228             :     {
     229           0 :         uno::Sequence< beans::PropertyValue > aValue;
     230           0 :         aArgs[0].Value >>= aValue;
     231           0 :         svx::ODataAccessDescriptor aDescriptor(aValue);
     232           0 :         OUString sName;
     233           0 :         aDescriptor[ svx::daColumnName ] >>= sName;
     234           0 :         if ( !sName.isEmpty() )
     235             :         {
     236           0 :             sName = "[" + sName + "]";
     237           0 :             m_pEdit->SetText(sName);
     238           0 :         }
     239             :     }
     240           0 :     m_pEdit = NULL;
     241           0 :     _pAddFieldDlg->Hide();
     242           0 :     RefInputDoneAfter( true );
     243             : 
     244           0 :     return 0L;
     245             : }
     246             : 
     247           0 : uno::Reference< sheet::XFormulaParser> FormulaDialog::getFormulaParser() const
     248             : {
     249           0 :     return m_xParser.get();
     250             : }
     251             : 
     252           0 : uno::Reference< sheet::XFormulaOpCodeMapper> FormulaDialog::getFormulaOpCodeMapper() const
     253             : {
     254           0 :     return m_xOpCodeMapper;
     255             : }
     256             : 
     257           0 : table::CellAddress FormulaDialog::getReferencePosition() const
     258             : {
     259           0 :     return table::CellAddress();
     260             : }
     261             : 
     262           0 : ::std::unique_ptr<formula::FormulaTokenArray> FormulaDialog::convertToTokenArray(const uno::Sequence< sheet::FormulaToken >& _aTokenList)
     263             : {
     264           0 :     ::std::unique_ptr<formula::FormulaTokenArray> pArray(new FormulaTokenArray());
     265           0 :     pArray->Fill(_aTokenList, mrStringPool, NULL);
     266           0 :     return pArray;
     267             : }
     268             : 
     269           3 : } // rptui
     270             : 
     271             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11