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