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 <comphelper/string.hxx>
21 : #include <svl/zforlist.hxx>
22 : #include <svl/stritem.hxx>
23 : #include <vcl/settings.hxx>
24 :
25 : #include "parawin.hxx"
26 : #include "parawin.hrc"
27 : #include "helpids.hrc"
28 : #include "formula/formdata.hxx"
29 : #include "formula/IFunctionDescription.hxx"
30 : #include "ModuleHelper.hxx"
31 : #include "ForResId.hrc"
32 :
33 : #define VAR_ARGS 30
34 : #define PAIRED_VAR_ARGS (VAR_ARGS + VAR_ARGS)
35 : namespace formula
36 : {
37 :
38 :
39 0 : ParaWin::ParaWin(Window* pParent,IControlReferenceHandler* _pDlg,Point aPos):
40 : TabPage (pParent,ModuleRes(RID_FORMULATAB_PARAMETER)),
41 : pFuncDesc ( NULL ),
42 : pMyParent (_pDlg),
43 : aFtEditDesc ( this, ModuleRes( FT_EDITDESC ) ),
44 : aFtArgName ( this, ModuleRes( FT_PARNAME ) ),
45 : aFtArgDesc ( this, ModuleRes( FT_PARDESC ) ),
46 :
47 : aBtnFx1 ( this, ModuleRes( BTN_FX1 ) ),
48 : aFtArg1 ( this, ModuleRes( FT_ARG1 ) ),
49 : aEdArg1 ( this, ModuleRes( ED_ARG1 ) ),
50 : aRefBtn1 ( this, ModuleRes( RB_ARG1 ) ),
51 :
52 : aBtnFx2 ( this, ModuleRes( BTN_FX2 ) ),
53 : aFtArg2 ( this, ModuleRes( FT_ARG2 ) ),
54 : aEdArg2 ( this, ModuleRes( ED_ARG2 ) ),
55 : aRefBtn2 ( this, ModuleRes( RB_ARG2 ) ),
56 :
57 : aBtnFx3 ( this, ModuleRes( BTN_FX3 ) ),
58 : aFtArg3 ( this, ModuleRes( FT_ARG3 ) ),
59 : aEdArg3 ( this, ModuleRes( ED_ARG3 ) ),
60 : aRefBtn3 ( this, ModuleRes( RB_ARG3 ) ),
61 :
62 : aBtnFx4 ( this, ModuleRes( BTN_FX4 ) ),
63 : aFtArg4 ( this, ModuleRes( FT_ARG4 ) ),
64 : aEdArg4 ( this, ModuleRes( ED_ARG4 ) ),
65 : aRefBtn4 ( this, ModuleRes( RB_ARG4 ) ),
66 :
67 : aSlider ( this, ModuleRes( WND_SLIDER ) ),
68 : m_sOptional ( ModuleRes( STR_OPTIONAL ) ),
69 : m_sRequired ( ModuleRes( STR_REQUIRED ) ),
70 0 : bRefMode (sal_False)
71 : {
72 0 : FreeResource();
73 0 : aDefaultString=aFtEditDesc.GetText();
74 :
75 0 : SetPosPixel(aPos);
76 0 : nEdFocus=NOT_FOUND;
77 0 : nActiveLine=0;
78 0 : Size aSize = aSlider.GetSizePixel();
79 0 : aSize.Width() = GetSettings().GetStyleSettings().GetScrollBarSize();
80 0 : aSlider.SetSizePixel( aSize );
81 0 : aSlider.SetEndScrollHdl( LINK( this, ParaWin, ScrollHdl ) );
82 0 : aSlider.SetScrollHdl( LINK( this, ParaWin, ScrollHdl ) );
83 :
84 0 : InitArgInput( 0, aFtArg1, aBtnFx1, aEdArg1, aRefBtn1);
85 0 : InitArgInput( 1, aFtArg2, aBtnFx2, aEdArg2, aRefBtn2);
86 0 : InitArgInput( 2, aFtArg3, aBtnFx3, aEdArg3, aRefBtn3);
87 0 : InitArgInput( 3, aFtArg4, aBtnFx4, aEdArg4, aRefBtn4);
88 0 : ClearAll();
89 0 : }
90 :
91 0 : void ParaWin::UpdateArgDesc( sal_uInt16 nArg )
92 : {
93 0 : if (nArg==NOT_FOUND) return;
94 :
95 0 : if ( nArgs > 4 )
96 0 : nArg = sal::static_int_cast<sal_uInt16>( nArg + GetSliderPos() );
97 :
98 0 : if ( (nArgs > 0) && (nArg<nArgs) )
99 : {
100 0 : OUString aArgDesc;
101 0 : OUString aArgName;
102 :
103 0 : SetArgumentDesc( OUString() );
104 0 : SetArgumentText( OUString() );
105 :
106 0 : if ( nArgs < VAR_ARGS )
107 : {
108 0 : sal_uInt16 nRealArg = (aVisibleArgMapping.size() < nArg) ? aVisibleArgMapping[nArg] : nArg;
109 0 : aArgDesc = pFuncDesc->getParameterDescription(nRealArg);
110 0 : aArgName = pFuncDesc->getParameterName(nRealArg);
111 0 : aArgName += " ";
112 0 : aArgName += (pFuncDesc->isParameterOptional(nRealArg)) ? m_sOptional : m_sRequired ;
113 : }
114 0 : else if ( nArgs < PAIRED_VAR_ARGS )
115 : {
116 0 : sal_uInt16 nFix = nArgs - VAR_ARGS;
117 0 : sal_uInt16 nPos = ( nArg < nFix ? nArg : nFix );
118 0 : sal_uInt16 nRealArg = (nPos < aVisibleArgMapping.size() ?
119 0 : aVisibleArgMapping[nPos] : aVisibleArgMapping.back());
120 0 : aArgDesc = pFuncDesc->getParameterDescription(nRealArg);
121 0 : aArgName = pFuncDesc->getParameterName(nRealArg);
122 0 : if ( nArg >= nFix )
123 0 : aArgName += OUString::number( nArg-nFix+1 );
124 0 : aArgName += " ";
125 :
126 0 : aArgName += (nArg > nFix || pFuncDesc->isParameterOptional(nRealArg)) ? m_sOptional : m_sRequired ;
127 : }
128 : else
129 : {
130 0 : sal_uInt16 nFix = nArgs - PAIRED_VAR_ARGS;
131 : sal_uInt16 nPos;
132 0 : if ( nArg < nFix )
133 0 : nPos = nArg;
134 : else
135 0 : nPos = nFix + ( (nArg-nFix) % 2);
136 0 : sal_uInt16 nRealArg = (nPos < aVisibleArgMapping.size() ?
137 0 : aVisibleArgMapping[nPos] : aVisibleArgMapping.back());
138 0 : aArgDesc = pFuncDesc->getParameterDescription(nRealArg);
139 0 : aArgName = pFuncDesc->getParameterName(nRealArg);
140 0 : if ( nArg >= nFix )
141 0 : aArgName += OUString::number( (nArg-nFix)/2 + 1 );
142 0 : aArgName += " ";
143 :
144 0 : aArgName += (nArg > (nFix+1) || pFuncDesc->isParameterOptional(nRealArg)) ? m_sOptional : m_sRequired ;
145 : }
146 :
147 0 : SetArgumentDesc(aArgDesc);
148 0 : SetArgumentText(aArgName);
149 : }
150 : }
151 :
152 0 : void ParaWin::UpdateArgInput( sal_uInt16 nOffset, sal_uInt16 i )
153 : {
154 0 : sal_uInt16 nArg = nOffset + i;
155 0 : if ( nArgs < VAR_ARGS)
156 : {
157 0 : if(nArg<nArgs)
158 : {
159 0 : sal_uInt16 nRealArg = aVisibleArgMapping[nArg];
160 0 : SetArgNameFont (i,(pFuncDesc->isParameterOptional(nRealArg))
161 0 : ? aFntLight : aFntBold );
162 0 : SetArgName (i,pFuncDesc->getParameterName(nRealArg));
163 : }
164 : }
165 0 : else if ( nArgs < PAIRED_VAR_ARGS)
166 : {
167 0 : sal_uInt16 nFix = nArgs - VAR_ARGS;
168 0 : sal_uInt16 nPos = ( nArg < nFix ? nArg : nFix );
169 0 : sal_uInt16 nRealArg = (nPos < aVisibleArgMapping.size() ?
170 0 : aVisibleArgMapping[nPos] : aVisibleArgMapping.back());
171 : SetArgNameFont( i,
172 0 : (nArg > nFix || pFuncDesc->isParameterOptional(nRealArg)) ?
173 0 : aFntLight : aFntBold );
174 0 : if ( nArg >= nFix )
175 : {
176 0 : OUString aArgName( pFuncDesc->getParameterName(nRealArg) );
177 0 : aArgName += OUString::number(nArg-nFix+1);
178 0 : SetArgName( i, aArgName );
179 : }
180 : else
181 0 : SetArgName( i, pFuncDesc->getParameterName(nRealArg) );
182 : }
183 : else
184 : {
185 0 : sal_uInt16 nFix = nArgs - PAIRED_VAR_ARGS;
186 : sal_uInt16 nPos;
187 0 : if ( nArg < nFix )
188 0 : nPos = nArg;
189 : else
190 0 : nPos = nFix + ( (nArg-nFix) % 2);
191 0 : sal_uInt16 nRealArg = (nPos < aVisibleArgMapping.size() ?
192 0 : aVisibleArgMapping[nPos] : aVisibleArgMapping.back());
193 : SetArgNameFont( i,
194 0 : (nArg > (nFix+1) || pFuncDesc->isParameterOptional(nRealArg)) ?
195 0 : aFntLight : aFntBold );
196 0 : if ( nArg >= nFix )
197 : {
198 0 : OUString aArgName( pFuncDesc->getParameterName(nRealArg) );
199 0 : aArgName += OUString::number( (nArg-nFix)/2 + 1 );
200 0 : SetArgName( i, aArgName );
201 : }
202 : else
203 0 : SetArgName( i, pFuncDesc->getParameterName(nRealArg) );
204 : }
205 0 : if(nArg<nArgs) SetArgVal(i,aParaArray[nArg]);
206 :
207 0 : }
208 :
209 0 : ParaWin::~ParaWin()
210 : {
211 : // #i66422# if the focus changes during destruction of the controls,
212 : // don't call the focus handlers
213 0 : Link aEmptyLink;
214 0 : aBtnFx1.SetGetFocusHdl( aEmptyLink );
215 0 : aBtnFx2.SetGetFocusHdl( aEmptyLink );
216 0 : aBtnFx3.SetGetFocusHdl( aEmptyLink );
217 0 : aBtnFx4.SetGetFocusHdl( aEmptyLink );
218 0 : }
219 :
220 0 : sal_uInt16 ParaWin::GetActiveLine()
221 : {
222 0 : return nActiveLine;
223 : }
224 :
225 0 : void ParaWin::SetActiveLine(sal_uInt16 no)
226 : {
227 0 : if(no<nArgs)
228 : {
229 0 : long nOffset = GetSliderPos();
230 0 : nActiveLine=no;
231 0 : long nNewEdPos=(long)nActiveLine-nOffset;
232 0 : if(nNewEdPos<0 || nNewEdPos>3)
233 : {
234 0 : nOffset+=nNewEdPos;
235 0 : SetSliderPos((sal_uInt16) nOffset);
236 0 : nOffset=GetSliderPos();
237 : }
238 0 : nEdFocus=no-(sal_uInt16)nOffset;
239 0 : UpdateArgDesc( nEdFocus );
240 : }
241 0 : }
242 :
243 0 : RefEdit* ParaWin::GetActiveEdit()
244 : {
245 0 : if(nArgs>0 && nEdFocus!=NOT_FOUND)
246 : {
247 0 : return aArgInput[nEdFocus].GetArgEdPtr();
248 : }
249 : else
250 : {
251 0 : return NULL;
252 : }
253 : }
254 :
255 :
256 0 : OUString ParaWin::GetArgument(sal_uInt16 no)
257 : {
258 0 : OUString aStr;
259 0 : if(no<aParaArray.size())
260 : {
261 0 : aStr=aParaArray[no];
262 0 : if(no==nActiveLine && aStr.isEmpty())
263 0 : aStr += " ";
264 : }
265 0 : return aStr;
266 : }
267 :
268 0 : OUString ParaWin::GetActiveArgName()
269 : {
270 0 : OUString aStr;
271 0 : if(nArgs>0 && nEdFocus!=NOT_FOUND)
272 : {
273 0 : aStr=aArgInput[nEdFocus].GetArgName();
274 : }
275 0 : return aStr;
276 : }
277 :
278 :
279 0 : void ParaWin::SetArgument(sal_uInt16 no, const OUString& aString)
280 : {
281 0 : if (no < aParaArray.size())
282 0 : aParaArray[no] = comphelper::string::stripStart(aString, ' ');
283 0 : }
284 :
285 0 : void ParaWin::DelParaArray()
286 : {
287 0 : ::std::vector<OUString>().swap(aParaArray);
288 0 : }
289 :
290 0 : void ParaWin::SetArgumentFonts(const Font&aBoldFont,const Font&aLightFont)
291 : {
292 0 : aFntBold=aBoldFont;
293 0 : aFntLight=aLightFont;
294 0 : }
295 :
296 0 : void ParaWin::SetFunctionDesc(const IFunctionDescription* pFDesc)
297 : {
298 0 : pFuncDesc=pFDesc;
299 :
300 0 : SetArgumentDesc( OUString() );
301 0 : SetArgumentText( OUString() );
302 0 : SetEditDesc( OUString() );
303 0 : nArgs = 0;
304 0 : if ( pFuncDesc!=NULL)
305 : {
306 0 : if ( !pFuncDesc->getDescription().isEmpty() )
307 : {
308 0 : SetEditDesc(pFuncDesc->getDescription());
309 : }
310 : else
311 : {
312 0 : SetEditDesc(aDefaultString);
313 : }
314 0 : nArgs = pFuncDesc->getSuppressedArgumentCount();
315 0 : pFuncDesc->fillVisibleArgumentMapping(aVisibleArgMapping);
316 0 : aSlider.Hide();
317 0 : OString sHelpId = pFuncDesc->getHelpId();
318 0 : SetHelpId( sHelpId );
319 0 : aEdArg1.SetHelpId( sHelpId );
320 0 : aEdArg2.SetHelpId( sHelpId );
321 0 : aEdArg3.SetHelpId( sHelpId );
322 0 : aEdArg4.SetHelpId( sHelpId );
323 :
324 : // Unique-IDs muessen gleich bleiben fuer Automatisierung
325 0 : SetUniqueId( HID_FORMULA_FAP_PAGE );
326 0 : aEdArg1.SetUniqueId( HID_FORMULA_FAP_EDIT1 );
327 0 : aEdArg2.SetUniqueId( HID_FORMULA_FAP_EDIT2 );
328 0 : aEdArg3.SetUniqueId( HID_FORMULA_FAP_EDIT3 );
329 0 : aEdArg4.SetUniqueId( HID_FORMULA_FAP_EDIT4 );
330 0 : SetActiveLine(0);
331 : }
332 : else
333 : {
334 0 : nActiveLine=0;
335 : }
336 :
337 0 : }
338 :
339 0 : void ParaWin::SetArgumentText(const OUString& aText)
340 : {
341 0 : aFtArgName.SetText(aText);
342 0 : }
343 :
344 0 : void ParaWin::SetArgumentDesc(const OUString& aText)
345 : {
346 0 : aFtArgDesc.SetText(aText);
347 0 : }
348 :
349 0 : void ParaWin::SetEditDesc(const OUString& aText)
350 : {
351 0 : aFtEditDesc.SetText(aText);
352 0 : }
353 :
354 0 : void ParaWin::SetArgName(sal_uInt16 no,const OUString& aText)
355 : {
356 0 : aArgInput[no].SetArgName(aText);
357 0 : aArgInput[no].UpdateAccessibleNames();
358 0 : }
359 :
360 0 : void ParaWin::SetArgNameFont(sal_uInt16 no,const Font& aFont)
361 : {
362 0 : aArgInput[no].SetArgNameFont(aFont);
363 0 : }
364 :
365 0 : void ParaWin::SetArgVal(sal_uInt16 no,const OUString& aText)
366 : {
367 0 : aArgInput[no].SetArgVal(aText);
368 0 : }
369 :
370 0 : void ParaWin::HideParaLine(sal_uInt16 no)
371 : {
372 0 : aArgInput[no].Hide();
373 0 : }
374 :
375 0 : void ParaWin::ShowParaLine(sal_uInt16 no)
376 : {
377 0 : aArgInput[no].Show();
378 0 : }
379 :
380 0 : void ParaWin::SetEdFocus(sal_uInt16 no)
381 : {
382 0 : UpdateArgDesc(no);
383 0 : if(no<4 && no<aParaArray.size())
384 0 : aArgInput[no].GetArgEdPtr()->GrabFocus();
385 0 : }
386 :
387 :
388 0 : void ParaWin::InitArgInput( sal_uInt16 nPos, FixedText& rFtArg, ImageButton& rBtnFx,
389 : ArgEdit& rEdArg, RefButton& rRefBtn)
390 : {
391 :
392 0 : rRefBtn.SetReferences(pMyParent, &rEdArg);
393 0 : rEdArg.SetReferences(pMyParent, &rFtArg);
394 :
395 0 : aArgInput[nPos].InitArgInput (&rFtArg,&rBtnFx,&rEdArg,&rRefBtn);
396 :
397 0 : aArgInput[nPos].Hide();
398 :
399 0 : aArgInput[nPos].SetFxClickHdl ( LINK( this, ParaWin, GetFxHdl ) );
400 0 : aArgInput[nPos].SetFxFocusHdl ( LINK( this, ParaWin, GetFxFocusHdl ) );
401 0 : aArgInput[nPos].SetEdFocusHdl ( LINK( this, ParaWin, GetEdFocusHdl ) );
402 0 : aArgInput[nPos].SetEdModifyHdl ( LINK( this, ParaWin, ModifyHdl ) );
403 0 : aArgInput[nPos].UpdateAccessibleNames();
404 0 : }
405 :
406 0 : void ParaWin::ClearAll()
407 : {
408 0 : SetFunctionDesc(NULL);
409 0 : SetArgumentOffset(0);
410 0 : }
411 :
412 0 : void ParaWin::SetArgumentOffset(sal_uInt16 nOffset)
413 : {
414 0 : DelParaArray();
415 0 : aSlider.SetThumbPos(0);
416 :
417 0 : aParaArray.resize(nArgs);
418 :
419 0 : if ( nArgs > 0 )
420 : {
421 0 : for ( int i=0; i<4 && i<nArgs; i++ )
422 : {
423 0 : OUString aString;
424 0 : aArgInput[i].SetArgVal(aString);
425 : aArgInput[i].GetArgEdPtr()->Init(
426 0 : (i==0) ? (ArgEdit *)NULL : aArgInput[i-1].GetArgEdPtr(),
427 0 : (i==3 || i==nArgs-1) ? (ArgEdit *)NULL : aArgInput[i+1].GetArgEdPtr(),
428 0 : aSlider, nArgs );
429 0 : }
430 : }
431 :
432 0 : if ( nArgs < 5 )
433 : {
434 0 : aSlider.Hide();
435 : }
436 : else
437 : {
438 0 : aSlider.SetPageSize( 4 );
439 0 : aSlider.SetVisibleSize( 4 );
440 0 : aSlider.SetLineSize( 1 );
441 0 : aSlider.SetRange( Range( 0, nArgs ) );
442 0 : aSlider.SetThumbPos( nOffset );
443 0 : aSlider.Show();
444 : }
445 :
446 0 : UpdateParas();
447 0 : }
448 :
449 0 : void ParaWin::UpdateParas()
450 : {
451 : sal_uInt16 i;
452 0 : sal_uInt16 nOffset = GetSliderPos();
453 :
454 0 : if ( nArgs > 0 )
455 : {
456 0 : for ( i=0; (i<nArgs) && (i<4); i++ )
457 : {
458 0 : UpdateArgInput( nOffset, i );
459 0 : ShowParaLine(i);
460 : }
461 : }
462 :
463 0 : for ( i=nArgs; i<4; i++ ) HideParaLine(i);
464 0 : }
465 :
466 :
467 0 : sal_uInt16 ParaWin::GetSliderPos()
468 : {
469 0 : return (sal_uInt16) aSlider.GetThumbPos();
470 : }
471 :
472 0 : void ParaWin::SetSliderPos(sal_uInt16 nSliderPos)
473 : {
474 0 : sal_uInt16 nOffset = GetSliderPos();
475 :
476 0 : if(aSlider.IsVisible() && nOffset!=nSliderPos)
477 : {
478 0 : aSlider.SetThumbPos(nSliderPos);
479 0 : for ( sal_uInt16 i=0; i<4; i++ )
480 : {
481 0 : UpdateArgInput( nSliderPos, i );
482 : }
483 : }
484 0 : }
485 :
486 0 : void ParaWin::SliderMoved()
487 : {
488 0 : sal_uInt16 nOffset = GetSliderPos();
489 :
490 0 : for ( sal_uInt16 i=0; i<4; i++ )
491 : {
492 0 : UpdateArgInput( nOffset, i );
493 : }
494 0 : if(nEdFocus!=NOT_FOUND)
495 : {
496 0 : UpdateArgDesc( nEdFocus );
497 0 : aArgInput[nEdFocus].SetArgSelection(Selection(0,SELECTION_MAX ));
498 0 : nActiveLine=nEdFocus+nOffset;
499 0 : ArgumentModified();
500 0 : aArgInput[nEdFocus].UpdateAccessibleNames();
501 : }
502 0 : aScrollLink.Call(this);
503 0 : }
504 :
505 0 : void ParaWin::ArgumentModified()
506 : {
507 0 : aArgModifiedLink.Call(this);
508 0 : }
509 :
510 0 : void ParaWin::FxClick()
511 : {
512 0 : aFxLink.Call(this);
513 0 : }
514 :
515 :
516 0 : IMPL_LINK( ParaWin, GetFxHdl, ArgInput*, pPtr )
517 : {
518 0 : sal_uInt16 nOffset = GetSliderPos();
519 0 : nEdFocus=NOT_FOUND;
520 0 : for (sal_uInt16 nPos=0; nPos < SAL_N_ELEMENTS(aArgInput); ++nPos)
521 : {
522 0 : if(pPtr == &aArgInput[nPos])
523 : {
524 0 : nEdFocus=nPos;
525 0 : break;
526 : }
527 : }
528 :
529 0 : if(nEdFocus!=NOT_FOUND)
530 : {
531 0 : aArgInput[nEdFocus].SetArgSelection(Selection(0,SELECTION_MAX ));
532 0 : nActiveLine=nEdFocus+nOffset;
533 0 : FxClick();
534 : }
535 0 : return 0;
536 : }
537 :
538 0 : IMPL_LINK( ParaWin, GetFxFocusHdl, ArgInput*, pPtr )
539 : {
540 0 : sal_uInt16 nOffset = GetSliderPos();
541 0 : nEdFocus=NOT_FOUND;
542 0 : for (sal_uInt16 nPos=0; nPos < SAL_N_ELEMENTS(aArgInput); ++nPos)
543 : {
544 0 : if(pPtr == &aArgInput[nPos])
545 : {
546 0 : nEdFocus=nPos;
547 0 : break;
548 : }
549 : }
550 :
551 0 : if(nEdFocus!=NOT_FOUND)
552 : {
553 0 : aArgInput[nEdFocus].SetArgSelection(Selection(0,SELECTION_MAX ));
554 0 : UpdateArgDesc( nEdFocus );
555 0 : nActiveLine=nEdFocus+nOffset;
556 : }
557 0 : return 0;
558 : }
559 :
560 :
561 :
562 0 : IMPL_LINK( ParaWin, GetEdFocusHdl, ArgInput*, pPtr )
563 : {
564 0 : sal_uInt16 nOffset = GetSliderPos();
565 0 : nEdFocus=NOT_FOUND;
566 0 : for (sal_uInt16 nPos=0; nPos < SAL_N_ELEMENTS(aArgInput); ++nPos)
567 : {
568 0 : if(pPtr == &aArgInput[nPos])
569 : {
570 0 : nEdFocus=nPos;
571 0 : break;
572 : }
573 : }
574 :
575 0 : if(nEdFocus!=NOT_FOUND)
576 : {
577 0 : aArgInput[nEdFocus].SetArgSelection(Selection(0,SELECTION_MAX ));
578 0 : UpdateArgDesc( nEdFocus );
579 0 : nActiveLine=nEdFocus+nOffset;
580 0 : ArgumentModified();
581 0 : aArgInput[nEdFocus].UpdateAccessibleNames();
582 : }
583 :
584 0 : return 0;
585 : }
586 :
587 :
588 0 : IMPL_LINK_NOARG(ParaWin, ScrollHdl)
589 : {
590 0 : SliderMoved();
591 :
592 0 : return 0;
593 : }
594 :
595 0 : IMPL_LINK( ParaWin, ModifyHdl, ArgInput*, pPtr )
596 : {
597 0 : sal_uInt16 nOffset = GetSliderPos();
598 0 : nEdFocus=NOT_FOUND;
599 0 : for (sal_uInt16 nPos=0; nPos < SAL_N_ELEMENTS(aArgInput); ++nPos)
600 : {
601 0 : if(pPtr == &aArgInput[nPos])
602 : {
603 0 : nEdFocus=nPos;
604 0 : break;
605 : }
606 : }
607 0 : if(nEdFocus!=NOT_FOUND)
608 : {
609 0 : aParaArray[nEdFocus+nOffset] = aArgInput[nEdFocus].GetArgVal();
610 0 : UpdateArgDesc( nEdFocus);
611 0 : nActiveLine=nEdFocus+nOffset;
612 : }
613 :
614 0 : ArgumentModified();
615 0 : return 0;
616 : }
617 :
618 :
619 :
620 : } // formula
621 :
622 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|