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