2003-06-30 14:50:48 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-09 02:34:19 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2003-06-30 14:50:48 +00:00
|
|
|
*
|
2005-09-09 02:34:19 +00:00
|
|
|
* $RCSfile: flddropdown.cxx,v $
|
2003-06-30 14:50:48 +00:00
|
|
|
*
|
2007-03-09 12:15:10 +00:00
|
|
|
* $Revision: 1.7 $
|
2003-06-30 14:50:48 +00:00
|
|
|
*
|
2007-03-09 12:15:10 +00:00
|
|
|
* last change: $Author: obo $ $Date: 2007-03-09 13:15:10 $
|
2003-06-30 14:50:48 +00:00
|
|
|
*
|
2005-09-09 02:34:19 +00:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2003-06-30 14:50:48 +00:00
|
|
|
*
|
|
|
|
*
|
2005-09-09 02:34:19 +00:00
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2003-06-30 14:50:48 +00:00
|
|
|
*
|
2005-09-09 02:34:19 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License version 2.1, as published by the Free Software Foundation.
|
2003-06-30 14:50:48 +00:00
|
|
|
*
|
2005-09-09 02:34:19 +00:00
|
|
|
* This library 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 for more details.
|
2003-06-30 14:50:48 +00:00
|
|
|
*
|
2005-09-09 02:34:19 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
2003-06-30 14:50:48 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 20:12:06 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_sw.hxx"
|
|
|
|
|
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
|
|
|
|
|
|
|
|
#ifndef _SFXPOOLITEM_HXX
|
2003-06-30 14:50:48 +00:00
|
|
|
#include <svtools/poolitem.hxx>
|
2004-08-23 09:53:43 +00:00
|
|
|
#endif
|
|
|
|
|
2003-06-30 14:50:48 +00:00
|
|
|
#ifndef _UNOFLDMID_H
|
|
|
|
#include <unofldmid.h>
|
|
|
|
#endif
|
|
|
|
#ifndef _UNOPRNMS_HXX
|
|
|
|
#include <unoprnms.hxx>
|
|
|
|
#endif
|
2004-08-23 09:53:43 +00:00
|
|
|
|
|
|
|
namespace css = com::sun::star;
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2004-08-23 09:53:43 +00:00
|
|
|
void SwDropDownField::SetItems(const css::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;
|
|
|
|
}
|
|
|
|
|
2004-08-23 09:53:43 +00:00
|
|
|
css::uno::Sequence<OUString> SwDropDownField::GetItemSequence() const
|
2003-06-30 14:50:48 +00:00
|
|
|
{
|
2004-08-23 09:53:43 +00:00
|
|
|
css::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;
|
|
|
|
|
|
|
|
for (aIt = aValues.begin(); aIt != aValues.end(); aIt++)
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2003-06-30 14:50:48 +00:00
|
|
|
BOOL SwDropDownField::SetSelectedItem(const String & rItem)
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2004-08-23 09:53:43 +00:00
|
|
|
BOOL SwDropDownField::QueryValue(css::uno::Any &rVal, BYTE nMId)
|
2003-06-30 14:50:48 +00:00
|
|
|
const
|
|
|
|
{
|
|
|
|
nMId &= ~CONVERT_TWIPS;
|
|
|
|
switch( nMId )
|
|
|
|
{
|
|
|
|
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:
|
|
|
|
DBG_ERROR("illegal property");
|
|
|
|
}
|
|
|
|
return sal_True;
|
|
|
|
}
|
|
|
|
|
2004-08-23 09:53:43 +00:00
|
|
|
BOOL SwDropDownField::PutValue(const css::uno::Any &rVal,
|
2003-06-30 14:50:48 +00:00
|
|
|
BYTE nMId)
|
|
|
|
{
|
|
|
|
nMId &= ~CONVERT_TWIPS;
|
|
|
|
switch( nMId )
|
|
|
|
{
|
|
|
|
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:
|
|
|
|
{
|
2004-08-23 09:53:43 +00:00
|
|
|
css::uno::Sequence<OUString> aSeq;
|
2003-06-30 14:50:48 +00:00
|
|
|
rVal >>= aSeq;
|
|
|
|
SetItems(aSeq);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
DBG_ERROR("illegal property");
|
|
|
|
}
|
|
|
|
return sal_True;
|
|
|
|
}
|