Files
libreoffice/sw/source/core/fields/flddropdown.cxx
Thomas Arnhold 4c4d748767 Remove some more include guards
Change-Id: I7c62d086cb593744785abecae7a107686a4d65ce
2012-06-29 09:25:10 +02:00

280 lines
6.1 KiB
C++

/* -*- 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 <flddropdown.hxx>
#include <algorithm>
#include <svl/poolitem.hxx>
#include <unofldmid.h>
#include <unoprnms.hxx>
using namespace com::sun::star;
using rtl::OUString;
using std::vector;
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),
aName(rSrc.aName), aHelp(rSrc.aHelp), aToolTip(rSrc.aToolTip)
{
}
SwDropDownField::~SwDropDownField()
{
}
String SwDropDownField::Expand() const
{
String sSelect = GetSelectedItem();
if(!sSelect.Len())
{
vector<rtl::OUString>::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 rtl::OUString & SwDropDownField::GetPar1() const
{
return GetSelectedItem();
}
rtl::OUString SwDropDownField::GetPar2() const
{
return GetName();
}
void SwDropDownField::SetPar1(const rtl::OUString & rStr)
{
SetSelectedItem(rStr);
}
void SwDropDownField::SetPar2(const rtl::OUString & rName)
{
SetName(rName);
}
void SwDropDownField::SetItems(const vector<rtl::OUString> & rItems)
{
aValues = rItems;
aSelectedItem = aEmptyString;
}
void SwDropDownField::SetItems(const uno::Sequence<OUString> & rItems)
{
aValues.clear();
sal_Int32 aCount = rItems.getLength();
for (int i = 0; i < aCount; i++)
aValues.push_back(rItems[i]);
aSelectedItem = aEmptyString;
}
uno::Sequence<OUString> SwDropDownField::GetItemSequence() const
{
uno::Sequence<OUString> aSeq( aValues.size() );
OUString* pSeq = aSeq.getArray();
int i = 0;
vector<rtl::OUString>::const_iterator aIt;
for (aIt = aValues.begin(); aIt != aValues.end(); ++aIt)
{
pSeq[i] = *aIt;
i++;
}
return aSeq;
}
const rtl::OUString & SwDropDownField::GetSelectedItem() const
{
return aSelectedItem;
}
const rtl::OUString & SwDropDownField::GetName() const
{
return aName;
}
const rtl::OUString & SwDropDownField::GetHelp() const
{
return aHelp;
}
const rtl::OUString & SwDropDownField::GetToolTip() const
{
return aToolTip;
}
sal_Bool SwDropDownField::SetSelectedItem(const rtl::OUString & rItem)
{
vector<rtl::OUString>::const_iterator aIt =
std::find(aValues.begin(), aValues.end(), rItem);
if (aIt != aValues.end())
aSelectedItem = *aIt;
else
aSelectedItem = rtl::OUString();
return (aIt != aValues.end());
}
void SwDropDownField::SetName(const rtl::OUString & rName)
{
aName = rName;
}
void SwDropDownField::SetHelp(const rtl::OUString & rHelp)
{
aHelp = rHelp;
}
void SwDropDownField::SetToolTip(const rtl::OUString & rToolTip)
{
aToolTip = rToolTip;
}
bool SwDropDownField::QueryValue(::uno::Any &rVal, sal_uInt16 nWhich) const
{
nWhich &= ~CONVERT_TWIPS;
switch( nWhich )
{
case FIELD_PROP_PAR1:
rVal <<= GetSelectedItem();
break;
case FIELD_PROP_PAR2:
rVal <<= GetName();
break;
case FIELD_PROP_PAR3:
rVal <<= GetHelp();
break;
case FIELD_PROP_PAR4:
rVal <<= GetToolTip();
break;
case FIELD_PROP_STRINGS:
rVal <<= GetItemSequence();
break;
default:
OSL_FAIL("illegal property");
}
return true;
}
bool SwDropDownField::PutValue(const uno::Any &rVal,
sal_uInt16 nWhich)
{
switch( nWhich )
{
case FIELD_PROP_PAR1:
{
rtl::OUString aTmpStr;
rVal >>= aTmpStr;
SetSelectedItem(aTmpStr);
}
break;
case FIELD_PROP_PAR2:
{
rtl::OUString aTmpStr;
rVal >>= aTmpStr;
SetName(aTmpStr);
}
break;
case FIELD_PROP_PAR3:
{
rtl::OUString aTmpStr;
rVal >>= aTmpStr;
SetHelp(aTmpStr);
}
break;
case FIELD_PROP_PAR4:
{
rtl::OUString aTmpStr;
rVal >>= aTmpStr;
SetToolTip(aTmpStr);
}
break;
case FIELD_PROP_STRINGS:
{
uno::Sequence<OUString> aSeq;
rVal >>= aSeq;
SetItems(aSeq);
}
break;
default:
OSL_FAIL("illegal property");
}
return true;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */