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