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 :
29 : #include <boost/scoped_ptr.hpp>
30 :
31 : #include "Formula.hxx"
32 : #include "AddField.hxx"
33 : #include "helpids.hrc"
34 :
35 :
36 : namespace rptui
37 : {
38 : using namespace formula;
39 : using namespace ::com::sun::star;
40 :
41 :
42 : // Initialisierung / gemeinsame Funktionen fuer Dialog
43 :
44 :
45 0 : FormulaDialog::FormulaDialog(vcl::Window* pParent
46 : , const uno::Reference<lang::XMultiServiceFactory>& _xServiceFactory
47 : , const ::boost::shared_ptr< IFunctionManager >& _pFunctionMgr
48 : , const OUString& _sFormula
49 : , const ::com::sun::star::uno::Reference < ::com::sun::star::beans::XPropertySet >& _xRowSet
50 : , svl::SharedStringPool& rStrPool )
51 : : FormulaModalDialog( pParent, false,false,false,_pFunctionMgr.get(),this)
52 : ,m_aFunctionManager(_pFunctionMgr)
53 0 : ,m_pFormulaData(new FormEditData())
54 : ,m_pAddField(NULL)
55 : ,m_xRowSet(_xRowSet)
56 : ,m_pEdit(NULL)
57 : ,m_sFormula("=")
58 : ,m_nStart(0)
59 : ,m_nEnd(1)
60 0 : ,mrStringPool(rStrPool)
61 : {
62 0 : if ( !_sFormula.isEmpty() )
63 : {
64 0 : if ( _sFormula[0] != '=' )
65 0 : m_sFormula += _sFormula;
66 : else
67 0 : m_sFormula = _sFormula;
68 : }
69 0 : m_xParser.set(_xServiceFactory->createInstance("org.libreoffice.report.pentaho.SOFormulaParser"),uno::UNO_QUERY);
70 0 : if ( m_xParser.is() )
71 0 : m_xOpCodeMapper = m_xParser->getFormulaOpCodeMapper();
72 0 : fill();
73 0 : }
74 :
75 0 : void FormulaDialog::notifyChange()
76 : {
77 0 : }
78 :
79 0 : void FormulaDialog::fill()
80 : {
81 0 : SetMeText(m_sFormula);
82 0 : Update(m_sFormula);
83 0 : CheckMatrix(m_sFormula);
84 0 : Update();
85 0 : }
86 :
87 0 : FormulaDialog::~FormulaDialog()
88 : {
89 0 : if ( m_pAddField )
90 : {
91 0 : SvtViewOptions aDlgOpt( E_WINDOW, OUString( HID_RPT_FIELD_SEL_WIN ) );
92 0 : aDlgOpt.SetWindowState(OStringToOUString(m_pAddField->GetWindowState((WINDOWSTATE_MASK_X | WINDOWSTATE_MASK_Y | WINDOWSTATE_MASK_STATE | WINDOWSTATE_MASK_MINIMIZED)), RTL_TEXTENCODING_ASCII_US));
93 :
94 0 : boost::scoped_ptr<vcl::Window> aTemp2(m_pAddField);
95 0 : m_pAddField = NULL;
96 : }
97 :
98 0 : StoreFormEditData( m_pFormulaData );
99 0 : }
100 :
101 :
102 : // Funktionen fuer rechte Seite
103 :
104 0 : bool FormulaDialog::calculateValue( const OUString& rStrExp, OUString& rStrResult )
105 : {
106 0 : rStrResult = rStrExp;
107 0 : return false;
108 : }
109 0 : void FormulaDialog::doClose(bool _bOk)
110 : {
111 0 : EndDialog(_bOk ? RET_OK : RET_CANCEL);
112 0 : }
113 0 : void FormulaDialog::insertEntryToLRUList(const IFunctionDescription* /*_pDesc*/)
114 : {
115 0 : }
116 0 : void FormulaDialog::showReference(const OUString& /*_sFormula*/)
117 : {
118 0 : }
119 0 : void FormulaDialog::dispatch(bool /*_bOK*/, bool /*_bMatrixChecked*/)
120 : {
121 0 : }
122 0 : void FormulaDialog::setDispatcherLock( bool /*bLock*/ )
123 : {
124 0 : }
125 0 : void FormulaDialog::setReferenceInput(const FormEditData* /*_pData*/)
126 : {
127 0 : }
128 0 : void FormulaDialog::deleteFormData()
129 : {
130 0 : }
131 0 : void FormulaDialog::clear()
132 : {
133 0 : }
134 0 : void FormulaDialog::switchBack()
135 : {
136 0 : }
137 0 : FormEditData* FormulaDialog::getFormEditData() const
138 : {
139 0 : return m_pFormulaData;
140 : }
141 0 : void FormulaDialog::setCurrentFormula(const OUString& _sReplacement)
142 : {
143 0 : const sal_Int32 nOldLen = m_nEnd - m_nStart;
144 0 : const sal_Int32 nNewLen = _sReplacement.getLength();
145 0 : if (nOldLen)
146 0 : m_sFormula = m_sFormula.replaceAt( m_nStart, nOldLen, "" );
147 0 : if (nNewLen)
148 0 : m_sFormula = m_sFormula.replaceAt( m_nStart, 0, _sReplacement );
149 0 : m_nEnd = m_nStart + nNewLen;
150 0 : }
151 0 : void FormulaDialog::setSelection(sal_Int32 _nStart, sal_Int32 _nEnd)
152 : {
153 0 : if ( _nStart <= _nEnd )
154 : {
155 0 : m_nStart = _nStart;
156 0 : m_nEnd = _nEnd;
157 : }
158 : else
159 : {
160 0 : m_nEnd = _nStart;
161 0 : m_nStart = _nEnd;
162 : }
163 0 : }
164 0 : void FormulaDialog::getSelection(sal_Int32& _nStart, sal_Int32& _nEnd) const
165 : {
166 0 : _nStart = m_nStart;
167 0 : _nEnd = m_nEnd;
168 0 : }
169 0 : OUString FormulaDialog::getCurrentFormula() const
170 : {
171 0 : return m_sFormula;
172 : }
173 0 : IFunctionManager* FormulaDialog::getFunctionManager()
174 : {
175 0 : return m_aFunctionManager.get();
176 : }
177 :
178 0 : void FormulaDialog::ShowReference(const OUString& /*_sRef*/)
179 : {
180 0 : }
181 :
182 0 : void FormulaDialog::HideReference( bool /*bDoneRefMode*/)
183 : {
184 0 : }
185 :
186 0 : void FormulaDialog::ReleaseFocus( RefEdit* /*pEdit*/, RefButton* /*pButton*/)
187 : {
188 0 : }
189 :
190 0 : void FormulaDialog::ToggleCollapsed( RefEdit* _pEdit, RefButton* _pButton)
191 : {
192 0 : ::std::pair<RefButton*,RefEdit*> aPair = RefInputStartBefore( _pEdit, _pButton );
193 0 : m_pEdit = aPair.second;
194 0 : if ( m_pEdit )
195 0 : m_pEdit->Hide();
196 0 : if ( aPair.first )
197 0 : aPair.first->Hide();
198 :
199 0 : if ( !m_pAddField )
200 : {
201 0 : m_pAddField = new OAddFieldWindow(this,m_xRowSet);
202 0 : m_pAddField->SetCreateHdl(LINK( this, FormulaDialog, OnClickHdl ) );
203 0 : SvtViewOptions aDlgOpt( E_WINDOW, OUString( HID_RPT_FIELD_SEL_WIN ) );
204 0 : if ( aDlgOpt.Exists() )
205 : {
206 0 : m_pAddField->SetWindowState(OUStringToOString(aDlgOpt.GetWindowState().getStr(), RTL_TEXTENCODING_ASCII_US));
207 :
208 : }
209 :
210 0 : m_pAddField->Update();
211 : }
212 0 : RefInputStartAfter( aPair.second, aPair.first );
213 0 : m_pAddField->Show();
214 :
215 0 : }
216 :
217 0 : IMPL_LINK( FormulaDialog, OnClickHdl, OAddFieldWindow* ,_pAddFieldDlg)
218 : {
219 0 : const uno::Sequence< beans::PropertyValue > aArgs = _pAddFieldDlg->getSelectedFieldDescriptors();
220 : // we use this way to create undo actions
221 0 : if ( m_pEdit && aArgs.getLength() == 1)
222 : {
223 0 : uno::Sequence< beans::PropertyValue > aValue;
224 0 : aArgs[0].Value >>= aValue;
225 0 : ::svx::ODataAccessDescriptor aDescriptor(aValue);
226 0 : OUString sName;
227 0 : aDescriptor[ ::svx::daColumnName ] >>= sName;
228 0 : if ( !sName.isEmpty() )
229 : {
230 0 : sName = "[" + sName + "]";
231 0 : m_pEdit->SetText(sName);
232 0 : }
233 : }
234 0 : m_pEdit = NULL;
235 0 : _pAddFieldDlg->Hide();
236 0 : RefInputDoneAfter( true );
237 :
238 0 : return 0L;
239 : }
240 :
241 0 : uno::Reference< sheet::XFormulaParser> FormulaDialog::getFormulaParser() const
242 : {
243 0 : return m_xParser.get();
244 : }
245 :
246 0 : uno::Reference< sheet::XFormulaOpCodeMapper> FormulaDialog::getFormulaOpCodeMapper() const
247 : {
248 0 : return m_xOpCodeMapper;
249 : }
250 :
251 0 : table::CellAddress FormulaDialog::getReferencePosition() const
252 : {
253 0 : return table::CellAddress();
254 : }
255 :
256 0 : ::std::unique_ptr<formula::FormulaTokenArray> FormulaDialog::convertToTokenArray(const uno::Sequence< sheet::FormulaToken >& _aTokenList)
257 : {
258 0 : ::std::unique_ptr<formula::FormulaTokenArray> pArray(new FormulaTokenArray());
259 0 : pArray->Fill(_aTokenList, mrStringPool, NULL);
260 0 : return pArray;
261 : }
262 :
263 6 : } // rptui
264 :
265 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|