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 "solveroptions.hxx"
21 : #include "solveroptions.hrc"
22 : #include "scresid.hxx"
23 : #include "global.hxx"
24 : #include "miscuno.hxx"
25 : #include "solverutil.hxx"
26 :
27 : #include <rtl/math.hxx>
28 : #include <vcl/msgbox.hxx>
29 : #include <unotools/collatorwrapper.hxx>
30 : #include <unotools/localedatawrapper.hxx>
31 : #include "svtools/treelistentry.hxx"
32 :
33 : #include <algorithm>
34 :
35 : #include <com/sun/star/sheet/Solver.hpp>
36 : #include <com/sun/star/sheet/XSolverDescription.hpp>
37 : #include <com/sun/star/beans/PropertyValue.hpp>
38 : #include <com/sun/star/beans/XPropertySet.hpp>
39 :
40 : using namespace com::sun::star;
41 :
42 : //==================================================================
43 :
44 : /// Helper for sorting properties
45 0 : struct ScSolverOptionsEntry
46 : {
47 : sal_Int32 nPosition;
48 : rtl::OUString aDescription;
49 :
50 0 : ScSolverOptionsEntry() : nPosition(0) {}
51 :
52 0 : bool operator< (const ScSolverOptionsEntry& rOther) const
53 : {
54 0 : return ( ScGlobal::GetCollator()->compareString( aDescription, rOther.aDescription ) == COMPARE_LESS );
55 : }
56 : };
57 :
58 : //------------------------------------------------------------------
59 :
60 0 : class ScSolverOptionsString : public SvLBoxString
61 : {
62 : bool mbIsDouble;
63 : double mfDoubleValue;
64 : sal_Int32 mnIntValue;
65 :
66 : public:
67 0 : ScSolverOptionsString( SvTreeListEntry* pEntry, sal_uInt16 nFlags, const String& rStr ) :
68 : SvLBoxString( pEntry, nFlags, rStr ),
69 : mbIsDouble( false ),
70 : mfDoubleValue( 0.0 ),
71 0 : mnIntValue( 0 ) {}
72 :
73 0 : bool IsDouble() const { return mbIsDouble; }
74 0 : double GetDoubleValue() const { return mfDoubleValue; }
75 0 : sal_Int32 GetIntValue() const { return mnIntValue; }
76 :
77 0 : void SetDoubleValue( double fNew ) { mbIsDouble = true; mfDoubleValue = fNew; }
78 0 : void SetIntValue( sal_Int32 nNew ) { mbIsDouble = false; mnIntValue = nNew; }
79 :
80 : virtual void Paint(const Point& rPos, SvTreeListBox& rDev, const SvViewDataEntry* pView, const SvTreeListEntry* pEntry);
81 : };
82 :
83 0 : void ScSolverOptionsString::Paint( const Point& rPos, SvTreeListBox& rDev, const SvViewDataEntry* /*pView*/, const SvTreeListEntry* /*pEntry*/)
84 : {
85 : //! move position? (SvxLinguTabPage: aPos.X() += 20)
86 0 : String aNormalStr( GetText() );
87 0 : aNormalStr.Append( (sal_Unicode) ':' );
88 0 : rDev.DrawText( rPos, aNormalStr );
89 :
90 0 : Point aNewPos( rPos );
91 0 : aNewPos.X() += rDev.GetTextWidth( aNormalStr );
92 0 : Font aOldFont( rDev.GetFont() );
93 0 : Font aFont( aOldFont );
94 0 : aFont.SetWeight( WEIGHT_BOLD );
95 :
96 0 : rtl::OUString sTxt( ' ' );
97 0 : if ( mbIsDouble )
98 : sTxt += rtl::math::doubleToUString( mfDoubleValue,
99 : rtl_math_StringFormat_Automatic, rtl_math_DecimalPlaces_Max,
100 0 : ScGlobal::GetpLocaleData()->getNumDecimalSep()[0], true );
101 : else
102 0 : sTxt += rtl::OUString::valueOf(mnIntValue);
103 0 : rDev.SetFont( aFont );
104 0 : rDev.DrawText( aNewPos, sTxt );
105 :
106 0 : rDev.SetFont( aOldFont );
107 0 : }
108 :
109 : //------------------------------------------------------------------
110 :
111 0 : ScSolverOptionsDialog::ScSolverOptionsDialog( Window* pParent,
112 : const uno::Sequence<rtl::OUString>& rImplNames,
113 : const uno::Sequence<rtl::OUString>& rDescriptions,
114 : const String& rEngine,
115 : const uno::Sequence<beans::PropertyValue>& rProperties )
116 : : ModalDialog( pParent, ScResId( RID_SCDLG_SOLVEROPTIONS ) ),
117 : maFtEngine ( this, ScResId( FT_ENGINE ) ),
118 : maLbEngine ( this, ScResId( LB_ENGINE ) ),
119 : maFtSettings ( this, ScResId( FT_SETTINGS ) ),
120 : maLbSettings ( this, ScResId( LB_SETTINGS ) ),
121 : maBtnEdit ( this, ScResId( BTN_EDIT ) ),
122 : maFlButtons ( this, ScResId( FL_BUTTONS ) ),
123 : maBtnHelp ( this, ScResId( BTN_HELP ) ),
124 : maBtnOk ( this, ScResId( BTN_OK ) ),
125 : maBtnCancel ( this, ScResId( BTN_CANCEL ) ),
126 : mpCheckButtonData( NULL ),
127 : maImplNames( rImplNames ),
128 : maDescriptions( rDescriptions ),
129 : maEngine( rEngine ),
130 0 : maProperties( rProperties )
131 : {
132 0 : maLbEngine.SetSelectHdl( LINK( this, ScSolverOptionsDialog, EngineSelectHdl ) );
133 :
134 0 : maBtnEdit.SetClickHdl( LINK( this, ScSolverOptionsDialog, ButtonHdl ) );
135 :
136 0 : maLbSettings.SetStyle( maLbSettings.GetStyle()|WB_CLIPCHILDREN|WB_FORCE_MAKEVISIBLE );
137 0 : maLbSettings.SetHelpId( HID_SC_SOLVEROPTIONS_LB );
138 0 : maLbSettings.SetHighlightRange();
139 :
140 0 : maLbSettings.SetSelectHdl( LINK( this, ScSolverOptionsDialog, SettingsSelHdl ) );
141 0 : maLbSettings.SetDoubleClickHdl( LINK( this, ScSolverOptionsDialog, SettingsDoubleClickHdl ) );
142 :
143 0 : sal_Int32 nSelect = -1;
144 0 : sal_Int32 nImplCount = maImplNames.getLength();
145 0 : for (sal_Int32 nImpl=0; nImpl<nImplCount; ++nImpl)
146 : {
147 0 : String aImplName( maImplNames[nImpl] );
148 0 : String aDescription( maDescriptions[nImpl] ); // user-visible descriptions in list box
149 0 : maLbEngine.InsertEntry( aDescription );
150 0 : if ( aImplName == maEngine )
151 0 : nSelect = nImpl;
152 0 : }
153 0 : if ( nSelect < 0 ) // no (valid) engine given
154 : {
155 0 : if ( nImplCount > 0 )
156 : {
157 0 : maEngine = maImplNames[0]; // use first implementation
158 0 : nSelect = 0;
159 : }
160 : else
161 0 : maEngine.Erase();
162 0 : maProperties.realloc(0); // don't use options from different engine
163 : }
164 0 : if ( nSelect >= 0 ) // select in list box
165 0 : maLbEngine.SelectEntryPos( static_cast<sal_uInt16>(nSelect) );
166 :
167 0 : if ( !maProperties.getLength() )
168 0 : ReadFromComponent(); // fill maProperties from component (using maEngine)
169 0 : FillListBox(); // using maProperties
170 :
171 0 : FreeResource();
172 0 : }
173 :
174 0 : ScSolverOptionsDialog::~ScSolverOptionsDialog()
175 : {
176 0 : delete mpCheckButtonData;
177 0 : }
178 :
179 0 : const String& ScSolverOptionsDialog::GetEngine() const
180 : {
181 0 : return maEngine; // already updated in selection handler
182 : }
183 :
184 0 : const uno::Sequence<beans::PropertyValue>& ScSolverOptionsDialog::GetProperties()
185 : {
186 : // update maProperties from list box content
187 : // order of entries in list box and maProperties is the same
188 0 : sal_Int32 nEntryCount = maProperties.getLength();
189 0 : SvTreeList* pModel = maLbSettings.GetModel();
190 0 : if ( nEntryCount == (sal_Int32)pModel->GetEntryCount() )
191 : {
192 0 : for (sal_Int32 nEntryPos=0; nEntryPos<nEntryCount; ++nEntryPos)
193 : {
194 0 : uno::Any& rValue = maProperties[nEntryPos].Value;
195 0 : SvTreeListEntry* pEntry = pModel->GetEntry(nEntryPos);
196 :
197 0 : bool bHasData = false;
198 0 : sal_uInt16 nItemCount = pEntry->ItemCount();
199 0 : for (sal_uInt16 nItemPos=0; nItemPos<nItemCount && !bHasData; ++nItemPos)
200 : {
201 0 : SvLBoxItem* pItem = pEntry->GetItem( nItemPos );
202 0 : ScSolverOptionsString* pStringItem = dynamic_cast<ScSolverOptionsString*>(pItem);
203 0 : if ( pStringItem )
204 : {
205 0 : if ( pStringItem->IsDouble() )
206 0 : rValue <<= pStringItem->GetDoubleValue();
207 : else
208 0 : rValue <<= pStringItem->GetIntValue();
209 0 : bHasData = true;
210 : }
211 : }
212 0 : if ( !bHasData )
213 : ScUnoHelpFunctions::SetBoolInAny( rValue,
214 0 : maLbSettings.GetCheckButtonState( pEntry ) == SV_BUTTON_CHECKED );
215 : }
216 : }
217 : else
218 : {
219 : OSL_FAIL( "wrong count" );
220 : }
221 :
222 0 : return maProperties;
223 : }
224 :
225 0 : void ScSolverOptionsDialog::FillListBox()
226 : {
227 : // get property descriptions, sort by them
228 :
229 0 : uno::Reference<sheet::XSolverDescription> xDesc( ScSolverUtil::GetSolver( maEngine ), uno::UNO_QUERY );
230 0 : sal_Int32 nCount = maProperties.getLength();
231 0 : std::vector<ScSolverOptionsEntry> aDescriptions( nCount );
232 0 : for (sal_Int32 nPos=0; nPos<nCount; nPos++)
233 : {
234 0 : rtl::OUString aPropName( maProperties[nPos].Name );
235 0 : rtl::OUString aVisName;
236 0 : if ( xDesc.is() )
237 0 : aVisName = xDesc->getPropertyDescription( aPropName );
238 0 : if ( aVisName.isEmpty() )
239 0 : aVisName = aPropName;
240 0 : aDescriptions[nPos].nPosition = nPos;
241 0 : aDescriptions[nPos].aDescription = aVisName;
242 0 : }
243 0 : std::sort( aDescriptions.begin(), aDescriptions.end() );
244 :
245 : // also update maProperties to the order of descriptions
246 :
247 0 : uno::Sequence<beans::PropertyValue> aNewSeq;
248 0 : aNewSeq.realloc( nCount );
249 0 : for (sal_Int32 nPos=0; nPos<nCount; nPos++)
250 0 : aNewSeq[nPos] = maProperties[ aDescriptions[nPos].nPosition ];
251 0 : maProperties = aNewSeq;
252 :
253 : // fill the list box
254 :
255 0 : maLbSettings.SetUpdateMode(false);
256 0 : maLbSettings.Clear();
257 :
258 0 : String sEmpty;
259 0 : if (!mpCheckButtonData)
260 0 : mpCheckButtonData = new SvLBoxButtonData( &maLbSettings );
261 :
262 0 : SvTreeList* pModel = maLbSettings.GetModel();
263 0 : SvTreeListEntry* pEntry = NULL;
264 :
265 0 : for (sal_Int32 nPos=0; nPos<nCount; nPos++)
266 : {
267 0 : rtl::OUString aVisName = aDescriptions[nPos].aDescription;
268 :
269 0 : uno::Any aValue = maProperties[nPos].Value;
270 0 : uno::TypeClass eClass = aValue.getValueTypeClass();
271 0 : if ( eClass == uno::TypeClass_BOOLEAN )
272 : {
273 : // check box entry
274 0 : pEntry = new SvTreeListEntry;
275 0 : SvLBoxButton* pButton = new SvLBoxButton( pEntry, SvLBoxButtonKind_enabledCheckbox, 0, mpCheckButtonData );
276 0 : if ( ScUnoHelpFunctions::GetBoolFromAny( aValue ) )
277 0 : pButton->SetStateChecked();
278 : else
279 0 : pButton->SetStateUnchecked();
280 0 : pEntry->AddItem( pButton );
281 0 : pEntry->AddItem( new SvLBoxContextBmp( pEntry, 0, Image(), Image(), 0 ) );
282 0 : pEntry->AddItem( new SvLBoxString( pEntry, 0, aVisName ) );
283 : }
284 : else
285 : {
286 : // value entry
287 0 : pEntry = new SvTreeListEntry;
288 0 : pEntry->AddItem( new SvLBoxString( pEntry, 0, sEmpty ) ); // empty column
289 0 : pEntry->AddItem( new SvLBoxContextBmp( pEntry, 0, Image(), Image(), 0 ) );
290 0 : ScSolverOptionsString* pItem = new ScSolverOptionsString( pEntry, 0, aVisName );
291 0 : if ( eClass == uno::TypeClass_DOUBLE )
292 : {
293 0 : double fDoubleValue = 0.0;
294 0 : if ( aValue >>= fDoubleValue )
295 0 : pItem->SetDoubleValue( fDoubleValue );
296 : }
297 : else
298 : {
299 0 : sal_Int32 nIntValue = 0;
300 0 : if ( aValue >>= nIntValue )
301 0 : pItem->SetIntValue( nIntValue );
302 : }
303 0 : pEntry->AddItem( pItem );
304 : }
305 0 : pModel->Insert( pEntry );
306 0 : }
307 :
308 0 : maLbSettings.SetUpdateMode(sal_True);
309 0 : }
310 :
311 0 : void ScSolverOptionsDialog::ReadFromComponent()
312 : {
313 0 : maProperties = ScSolverUtil::GetDefaults( maEngine );
314 0 : }
315 :
316 0 : void ScSolverOptionsDialog::EditOption()
317 : {
318 0 : SvTreeListEntry* pEntry = maLbSettings.GetCurEntry();
319 0 : if (pEntry)
320 : {
321 0 : sal_uInt16 nItemCount = pEntry->ItemCount();
322 0 : for (sal_uInt16 nPos=0; nPos<nItemCount; ++nPos)
323 : {
324 0 : SvLBoxItem* pItem = pEntry->GetItem( nPos );
325 0 : ScSolverOptionsString* pStringItem = dynamic_cast<ScSolverOptionsString*>(pItem);
326 0 : if ( pStringItem )
327 : {
328 0 : if ( pStringItem->IsDouble() )
329 : {
330 0 : ScSolverValueDialog aValDialog( this );
331 0 : aValDialog.SetOptionName( pStringItem->GetText() );
332 0 : aValDialog.SetValue( pStringItem->GetDoubleValue() );
333 0 : if ( aValDialog.Execute() == RET_OK )
334 : {
335 0 : pStringItem->SetDoubleValue( aValDialog.GetValue() );
336 0 : maLbSettings.InvalidateEntry( pEntry );
337 0 : }
338 : }
339 : else
340 : {
341 0 : ScSolverIntegerDialog aIntDialog( this );
342 0 : aIntDialog.SetOptionName( pStringItem->GetText() );
343 0 : aIntDialog.SetValue( pStringItem->GetIntValue() );
344 0 : if ( aIntDialog.Execute() == RET_OK )
345 : {
346 0 : pStringItem->SetIntValue( aIntDialog.GetValue() );
347 0 : maLbSettings.InvalidateEntry( pEntry );
348 0 : }
349 : }
350 : }
351 : }
352 : }
353 0 : }
354 :
355 0 : IMPL_LINK( ScSolverOptionsDialog, ButtonHdl, PushButton*, pBtn )
356 : {
357 0 : if ( pBtn == &maBtnEdit )
358 0 : EditOption();
359 :
360 0 : return 0;
361 : }
362 :
363 0 : IMPL_LINK_NOARG(ScSolverOptionsDialog, SettingsDoubleClickHdl)
364 : {
365 0 : EditOption();
366 0 : return 0;
367 : }
368 :
369 0 : IMPL_LINK_NOARG(ScSolverOptionsDialog, EngineSelectHdl)
370 : {
371 0 : sal_uInt16 nSelectPos = maLbEngine.GetSelectEntryPos();
372 0 : if ( nSelectPos < maImplNames.getLength() )
373 : {
374 0 : String aNewEngine( maImplNames[nSelectPos] );
375 0 : if ( aNewEngine != maEngine )
376 : {
377 0 : maEngine = aNewEngine;
378 0 : ReadFromComponent(); // fill maProperties from component (using maEngine)
379 0 : FillListBox(); // using maProperties
380 0 : }
381 : }
382 0 : return 0;
383 : }
384 :
385 0 : IMPL_LINK_NOARG(ScSolverOptionsDialog, SettingsSelHdl)
386 : {
387 0 : sal_Bool bCheckbox = false;
388 :
389 0 : SvTreeListEntry* pEntry = maLbSettings.GetCurEntry();
390 0 : if (pEntry)
391 : {
392 0 : SvLBoxItem* pItem = pEntry->GetFirstItem(SV_ITEM_ID_LBOXBUTTON);
393 0 : if (pItem && pItem->GetType() == SV_ITEM_ID_LBOXBUTTON)
394 0 : bCheckbox = true;
395 : }
396 :
397 0 : maBtnEdit.Enable( !bCheckbox );
398 :
399 0 : return 0;
400 : }
401 :
402 : //------------------------------------------------------------------
403 :
404 0 : ScSolverIntegerDialog::ScSolverIntegerDialog( Window * pParent )
405 : : ModalDialog( pParent, ScResId( RID_SCDLG_SOLVER_INTEGER ) ),
406 : maFtName ( this, ScResId( FT_OPTIONNAME ) ),
407 : maNfValue ( this, ScResId( NF_VALUE ) ),
408 : maFlButtons ( this, ScResId( FL_BUTTONS ) ),
409 : maBtnOk ( this, ScResId( BTN_OK ) ),
410 0 : maBtnCancel ( this, ScResId( BTN_CANCEL ) )
411 : {
412 0 : FreeResource();
413 0 : }
414 :
415 0 : ScSolverIntegerDialog::~ScSolverIntegerDialog()
416 : {
417 0 : }
418 :
419 0 : void ScSolverIntegerDialog::SetOptionName( const String& rName )
420 : {
421 0 : maFtName.SetText( rName );
422 0 : }
423 :
424 0 : void ScSolverIntegerDialog::SetValue( sal_Int32 nValue )
425 : {
426 0 : maNfValue.SetValue( nValue );
427 0 : }
428 :
429 0 : sal_Int32 ScSolverIntegerDialog::GetValue() const
430 : {
431 0 : sal_Int64 nValue = maNfValue.GetValue();
432 0 : if ( nValue < SAL_MIN_INT32 )
433 0 : return SAL_MIN_INT32;
434 0 : if ( nValue > SAL_MAX_INT32 )
435 0 : return SAL_MAX_INT32;
436 0 : return (sal_Int32) nValue;
437 : }
438 :
439 : //------------------------------------------------------------------
440 :
441 0 : ScSolverValueDialog::ScSolverValueDialog( Window * pParent )
442 : : ModalDialog( pParent, ScResId( RID_SCDLG_SOLVER_DOUBLE ) ),
443 : maFtName ( this, ScResId( FT_OPTIONNAME ) ),
444 : maEdValue ( this, ScResId( ED_VALUE ) ),
445 : maFlButtons ( this, ScResId( FL_BUTTONS ) ),
446 : maBtnOk ( this, ScResId( BTN_OK ) ),
447 0 : maBtnCancel ( this, ScResId( BTN_CANCEL ) )
448 : {
449 0 : FreeResource();
450 0 : }
451 :
452 0 : ScSolverValueDialog::~ScSolverValueDialog()
453 : {
454 0 : }
455 :
456 0 : void ScSolverValueDialog::SetOptionName( const String& rName )
457 : {
458 0 : maFtName.SetText( rName );
459 0 : }
460 :
461 0 : void ScSolverValueDialog::SetValue( double fValue )
462 : {
463 : maEdValue.SetText( rtl::math::doubleToUString( fValue,
464 : rtl_math_StringFormat_Automatic, rtl_math_DecimalPlaces_Max,
465 0 : ScGlobal::GetpLocaleData()->getNumDecimalSep()[0], true ) );
466 0 : }
467 :
468 0 : double ScSolverValueDialog::GetValue() const
469 : {
470 0 : String aInput = maEdValue.GetText();
471 :
472 0 : const LocaleDataWrapper* pLocaleData = ScGlobal::GetpLocaleData();
473 0 : rtl_math_ConversionStatus eStatus = rtl_math_ConversionStatus_Ok;
474 : double fValue = rtl::math::stringToDouble( aInput,
475 0 : pLocaleData->getNumDecimalSep()[0],
476 0 : pLocaleData->getNumThousandSep()[0],
477 0 : &eStatus, NULL );
478 0 : return fValue;
479 : }
480 :
481 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|