2010-10-14 08:30:41 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2003-06-30 14:50:48 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 12:57:26 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2003-06-30 14:50:48 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2003-06-30 14:50:48 +00:00
|
|
|
*
|
2008-04-10 12:57:26 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2003-06-30 14:50:48 +00:00
|
|
|
*
|
2008-04-10 12:57:26 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2003-06-30 14:50:48 +00:00
|
|
|
*
|
2008-04-10 12:57:26 +00:00
|
|
|
* 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.
|
2003-06-30 14:50:48 +00:00
|
|
|
*
|
2008-04-10 12:57:26 +00:00
|
|
|
* 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).
|
2003-06-30 14:50:48 +00:00
|
|
|
*
|
2008-04-10 12:57:26 +00:00
|
|
|
* 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.
|
2003-06-30 14:50:48 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 20:12:06 +00:00
|
|
|
|
2004-08-23 09:53:43 +00:00
|
|
|
#include <flddropdown.hxx>
|
|
|
|
|
|
|
|
#ifndef INCLUDED_ALGORITHM
|
2003-06-30 14:50:48 +00:00
|
|
|
#include <algorithm>
|
2004-08-23 09:53:43 +00:00
|
|
|
#define INCLUDED_ALGORITHM
|
|
|
|
#endif
|
2009-10-16 00:05:16 +02:00
|
|
|
#include <svl/poolitem.hxx>
|
2004-08-23 09:53:43 +00:00
|
|
|
|
2003-06-30 14:50:48 +00:00
|
|
|
#include <unofldmid.h>
|
|
|
|
#include <unoprnms.hxx>
|
2004-08-23 09:53:43 +00:00
|
|
|
|
2007-09-27 07:49:24 +00:00
|
|
|
using namespace com::sun::star;
|
2004-08-23 09:53:43 +00:00
|
|
|
|
|
|
|
using rtl::OUString;
|
|
|
|
using std::vector;
|
2003-06-30 14:50:48 +00:00
|
|
|
|
|
|
|
static String aEmptyString;
|
|
|
|
|
|
|
|
SwDropDownFieldType::SwDropDownFieldType()
|
|
|
|
: SwFieldType(RES_DROPDOWN)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SwDropDownFieldType::~SwDropDownFieldType()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SwFieldType * SwDropDownFieldType::Copy() const
|
|
|
|
{
|
|
|
|
return new SwDropDownFieldType;
|
|
|
|
}
|
|
|
|
|
|
|
|
SwDropDownField::SwDropDownField(SwFieldType * pTyp)
|
|
|
|
: SwField(pTyp, 0, LANGUAGE_SYSTEM)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SwDropDownField::SwDropDownField(const SwDropDownField & rSrc)
|
|
|
|
: SwField(rSrc.GetTyp(), rSrc.GetFormat(), rSrc.GetLanguage()),
|
|
|
|
aValues(rSrc.aValues), aSelectedItem(rSrc.aSelectedItem),
|
2007-03-09 12:15:10 +00:00
|
|
|
aName(rSrc.aName), aHelp(rSrc.aHelp), aToolTip(rSrc.aToolTip)
|
2003-06-30 14:50:48 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SwDropDownField::~SwDropDownField()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
String SwDropDownField::Expand() const
|
|
|
|
{
|
|
|
|
String sSelect = GetSelectedItem();
|
|
|
|
if(!sSelect.Len())
|
|
|
|
{
|
|
|
|
vector<String>::const_iterator aIt = aValues.begin();
|
|
|
|
if ( aIt != aValues.end())
|
|
|
|
sSelect = *aIt;
|
|
|
|
}
|
|
|
|
//if still no list value is available a default text of 10 spaces is to be set
|
|
|
|
if(!sSelect.Len())
|
|
|
|
sSelect.AppendAscii ( RTL_CONSTASCII_STRINGPARAM (" "));
|
|
|
|
return sSelect;
|
|
|
|
}
|
|
|
|
|
|
|
|
SwField * SwDropDownField::Copy() const
|
|
|
|
{
|
|
|
|
return new SwDropDownField(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
const String & SwDropDownField::GetPar1() const
|
|
|
|
{
|
|
|
|
return GetSelectedItem();
|
|
|
|
}
|
|
|
|
|
|
|
|
String SwDropDownField::GetPar2() const
|
|
|
|
{
|
|
|
|
return GetName();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwDropDownField::SetPar1(const String & rStr)
|
|
|
|
{
|
|
|
|
SetSelectedItem(rStr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwDropDownField::SetPar2(const String & rName)
|
|
|
|
{
|
|
|
|
SetName(rName);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwDropDownField::SetItems(const vector<String> & rItems)
|
|
|
|
{
|
|
|
|
aValues = rItems;
|
|
|
|
aSelectedItem = aEmptyString;
|
|
|
|
}
|
|
|
|
|
2007-09-27 07:49:24 +00:00
|
|
|
void SwDropDownField::SetItems(const uno::Sequence<OUString> & rItems)
|
2003-06-30 14:50:48 +00:00
|
|
|
{
|
|
|
|
aValues.clear();
|
|
|
|
|
|
|
|
sal_Int32 aCount = rItems.getLength();
|
|
|
|
for (int i = 0; i < aCount; i++)
|
|
|
|
aValues.push_back(rItems[i]);
|
|
|
|
|
|
|
|
aSelectedItem = aEmptyString;
|
|
|
|
}
|
|
|
|
|
2007-09-27 07:49:24 +00:00
|
|
|
uno::Sequence<OUString> SwDropDownField::GetItemSequence() const
|
2003-06-30 14:50:48 +00:00
|
|
|
{
|
2007-09-27 07:49:24 +00:00
|
|
|
uno::Sequence<OUString> aSeq( aValues.size() );
|
2003-06-30 14:50:48 +00:00
|
|
|
OUString* pSeq = aSeq.getArray();
|
|
|
|
int i = 0;
|
|
|
|
vector<String>::const_iterator aIt;
|
|
|
|
|
2010-12-23 12:51:06 +00:00
|
|
|
for (aIt = aValues.begin(); aIt != aValues.end(); ++aIt)
|
2003-06-30 14:50:48 +00:00
|
|
|
{
|
|
|
|
pSeq[i] = rtl::OUString(*aIt);
|
|
|
|
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return aSeq;
|
|
|
|
}
|
|
|
|
|
|
|
|
const String & SwDropDownField::GetSelectedItem() const
|
|
|
|
{
|
|
|
|
return aSelectedItem;
|
|
|
|
}
|
|
|
|
|
|
|
|
const String & SwDropDownField::GetName() const
|
|
|
|
{
|
|
|
|
return aName;
|
|
|
|
}
|
|
|
|
|
2007-03-09 12:15:10 +00:00
|
|
|
const String & SwDropDownField::GetHelp() const
|
|
|
|
{
|
|
|
|
return aHelp;
|
|
|
|
}
|
|
|
|
|
|
|
|
const String & SwDropDownField::GetToolTip() const
|
|
|
|
{
|
|
|
|
return aToolTip;
|
|
|
|
}
|
|
|
|
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_Bool SwDropDownField::SetSelectedItem(const String & rItem)
|
2003-06-30 14:50:48 +00:00
|
|
|
{
|
|
|
|
vector<String>::const_iterator aIt =
|
2004-08-23 09:53:43 +00:00
|
|
|
std::find(aValues.begin(), aValues.end(), rItem);
|
2003-06-30 14:50:48 +00:00
|
|
|
|
|
|
|
if (aIt != aValues.end())
|
|
|
|
aSelectedItem = *aIt;
|
|
|
|
else
|
|
|
|
aSelectedItem = String();
|
|
|
|
|
|
|
|
return (aIt != aValues.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwDropDownField::SetName(const String & rName)
|
|
|
|
{
|
|
|
|
aName = rName;
|
|
|
|
}
|
|
|
|
|
2007-03-09 12:15:10 +00:00
|
|
|
void SwDropDownField::SetHelp(const String & rHelp)
|
|
|
|
{
|
|
|
|
aHelp = rHelp;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwDropDownField::SetToolTip(const String & rToolTip)
|
|
|
|
{
|
|
|
|
aToolTip = rToolTip;
|
|
|
|
}
|
|
|
|
|
2011-03-14 16:51:14 +00:00
|
|
|
bool SwDropDownField::QueryValue(::uno::Any &rVal, sal_uInt16 nWhich) const
|
2003-06-30 14:50:48 +00:00
|
|
|
{
|
2007-09-27 07:49:24 +00:00
|
|
|
nWhich &= ~CONVERT_TWIPS;
|
|
|
|
switch( nWhich )
|
2003-06-30 14:50:48 +00:00
|
|
|
{
|
|
|
|
case FIELD_PROP_PAR1:
|
|
|
|
rVal <<= rtl::OUString(GetSelectedItem());
|
|
|
|
break;
|
|
|
|
case FIELD_PROP_PAR2:
|
|
|
|
rVal <<= rtl::OUString(GetName());
|
|
|
|
break;
|
2007-03-09 12:15:10 +00:00
|
|
|
case FIELD_PROP_PAR3:
|
|
|
|
rVal <<= rtl::OUString(GetHelp());
|
|
|
|
break;
|
|
|
|
case FIELD_PROP_PAR4:
|
|
|
|
rVal <<= rtl::OUString(GetToolTip());
|
|
|
|
break;
|
2003-06-30 14:50:48 +00:00
|
|
|
case FIELD_PROP_STRINGS:
|
|
|
|
rVal <<= GetItemSequence();
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2011-03-01 19:09:12 +01:00
|
|
|
OSL_FAIL("illegal property");
|
2003-06-30 14:50:48 +00:00
|
|
|
}
|
2010-10-04 15:23:52 +01:00
|
|
|
return true;
|
2003-06-30 14:50:48 +00:00
|
|
|
}
|
|
|
|
|
2010-10-04 15:23:52 +01:00
|
|
|
bool SwDropDownField::PutValue(const uno::Any &rVal,
|
2011-01-17 15:06:54 +01:00
|
|
|
sal_uInt16 nWhich)
|
2003-06-30 14:50:48 +00:00
|
|
|
{
|
2007-09-27 07:49:24 +00:00
|
|
|
switch( nWhich )
|
2003-06-30 14:50:48 +00:00
|
|
|
{
|
|
|
|
case FIELD_PROP_PAR1:
|
|
|
|
{
|
|
|
|
String aTmpStr;
|
|
|
|
::GetString( rVal, aTmpStr );
|
|
|
|
|
|
|
|
SetSelectedItem(aTmpStr);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FIELD_PROP_PAR2:
|
|
|
|
{
|
|
|
|
String aTmpStr;
|
|
|
|
::GetString( rVal, aTmpStr );
|
|
|
|
|
|
|
|
SetName(aTmpStr);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2007-03-09 12:15:10 +00:00
|
|
|
case FIELD_PROP_PAR3:
|
|
|
|
{
|
|
|
|
String aTmpStr;
|
|
|
|
::GetString( rVal, aTmpStr );
|
|
|
|
|
|
|
|
SetHelp(aTmpStr);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FIELD_PROP_PAR4:
|
|
|
|
{
|
|
|
|
String aTmpStr;
|
|
|
|
::GetString( rVal, aTmpStr );
|
|
|
|
|
|
|
|
SetToolTip(aTmpStr);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2003-06-30 14:50:48 +00:00
|
|
|
case FIELD_PROP_STRINGS:
|
|
|
|
{
|
2007-09-27 07:49:24 +00:00
|
|
|
uno::Sequence<OUString> aSeq;
|
2003-06-30 14:50:48 +00:00
|
|
|
rVal >>= aSeq;
|
|
|
|
SetItems(aSeq);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2011-03-01 19:09:12 +01:00
|
|
|
OSL_FAIL("illegal property");
|
2003-06-30 14:50:48 +00:00
|
|
|
}
|
2010-10-04 15:23:52 +01:00
|
|
|
return true;
|
2003-06-30 14:50:48 +00:00
|
|
|
}
|
2010-10-14 08:30:41 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|