LCOV - code coverage report
Current view: top level - sw/source/core/fields - flddropdown.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 5 103 4.9 %
Date: 2015-06-13 12:38:46 Functions: 3 23 13.0 %
Legend: Lines: hit not hit

          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 <flddropdown.hxx>
      21             : 
      22             : #include <algorithm>
      23             : 
      24             : #include <osl/diagnose.h>
      25             : #include <svl/poolitem.hxx>
      26             : 
      27             : #include <unofldmid.h>
      28             : #include <unoprnms.hxx>
      29             : 
      30             : using namespace com::sun::star;
      31             : 
      32             : using std::vector;
      33             : 
      34        2958 : SwDropDownFieldType::SwDropDownFieldType()
      35        2958 :     : SwFieldType(RES_DROPDOWN)
      36             : {
      37        2958 : }
      38             : 
      39        5898 : SwDropDownFieldType::~SwDropDownFieldType()
      40             : {
      41        5898 : }
      42             : 
      43           0 : SwFieldType * SwDropDownFieldType::Copy() const
      44             : {
      45           0 :     return new SwDropDownFieldType;
      46             : }
      47             : 
      48           0 : SwDropDownField::SwDropDownField(SwFieldType * pTyp)
      49           0 :     : SwField(pTyp, 0, LANGUAGE_SYSTEM)
      50             : {
      51           0 : }
      52             : 
      53           0 : SwDropDownField::SwDropDownField(const SwDropDownField & rSrc)
      54           0 :     : SwField(rSrc.GetTyp(), rSrc.GetFormat(), rSrc.GetLanguage()),
      55             :       aValues(rSrc.aValues), aSelectedItem(rSrc.aSelectedItem),
      56           0 :       aName(rSrc.aName), aHelp(rSrc.aHelp), aToolTip(rSrc.aToolTip)
      57             : {
      58           0 : }
      59             : 
      60           0 : SwDropDownField::~SwDropDownField()
      61             : {
      62           0 : }
      63             : 
      64           0 : OUString SwDropDownField::Expand() const
      65             : {
      66           0 :     OUString sSelect = GetSelectedItem();
      67           0 :     if (sSelect.isEmpty())
      68             :     {
      69           0 :         vector<OUString>::const_iterator aIt = aValues.begin();
      70           0 :         if ( aIt != aValues.end())
      71           0 :             sSelect = *aIt;
      72             :     }
      73             :     // if still no list value is available a default text of 10 spaces is to be set
      74           0 :     if (sSelect.isEmpty())
      75           0 :         sSelect = "          ";
      76           0 :     return sSelect;
      77             : }
      78             : 
      79           0 : SwField * SwDropDownField::Copy() const
      80             : {
      81           0 :     return new SwDropDownField(*this);
      82             : }
      83             : 
      84           0 : OUString SwDropDownField::GetPar1() const
      85             : {
      86           0 :     return GetSelectedItem();
      87             : }
      88             : 
      89           0 : OUString SwDropDownField::GetPar2() const
      90             : {
      91           0 :     return GetName();
      92             : }
      93             : 
      94           0 : void SwDropDownField::SetPar1(const OUString & rStr)
      95             : {
      96           0 :     SetSelectedItem(rStr);
      97           0 : }
      98             : 
      99           0 : void SwDropDownField::SetPar2(const OUString & rName)
     100             : {
     101           0 :     SetName(rName);
     102           0 : }
     103             : 
     104           0 : void SwDropDownField::SetItems(const vector<OUString> & rItems)
     105             : {
     106           0 :     aValues = rItems;
     107           0 :     aSelectedItem.clear();
     108           0 : }
     109             : 
     110           0 : void SwDropDownField::SetItems(const uno::Sequence<OUString> & rItems)
     111             : {
     112           0 :     aValues.clear();
     113             : 
     114           0 :     sal_Int32 aCount = rItems.getLength();
     115           0 :     for (int i = 0; i < aCount; i++)
     116           0 :         aValues.push_back(rItems[i]);
     117             : 
     118           0 :     aSelectedItem.clear();
     119           0 : }
     120             : 
     121           0 : uno::Sequence<OUString> SwDropDownField::GetItemSequence() const
     122             : {
     123           0 :     uno::Sequence<OUString> aSeq( aValues.size() );
     124           0 :     OUString* pSeq = aSeq.getArray();
     125           0 :     int i = 0;
     126           0 :     vector<OUString>::const_iterator aIt;
     127             : 
     128           0 :     for (aIt = aValues.begin(); aIt != aValues.end(); ++aIt)
     129             :     {
     130           0 :         pSeq[i] = *aIt;
     131           0 :         i++;
     132             :     }
     133             : 
     134           0 :     return aSeq;
     135             : }
     136             : 
     137             : 
     138             : 
     139             : 
     140             : 
     141           0 : bool SwDropDownField::SetSelectedItem(const OUString & rItem)
     142             : {
     143             :     vector<OUString>::const_iterator aIt =
     144           0 :         std::find(aValues.begin(), aValues.end(), rItem);
     145             : 
     146           0 :     if (aIt != aValues.end())
     147           0 :         aSelectedItem = *aIt;
     148             :     else
     149           0 :         aSelectedItem.clear();
     150             : 
     151           0 :     return (aIt != aValues.end());
     152             : }
     153             : 
     154           0 : void SwDropDownField::SetName(const OUString & rName)
     155             : {
     156           0 :     aName = rName;
     157           0 : }
     158             : 
     159           0 : void SwDropDownField::SetHelp(const OUString & rHelp)
     160             : {
     161           0 :     aHelp = rHelp;
     162           0 : }
     163             : 
     164           0 : void SwDropDownField::SetToolTip(const OUString & rToolTip)
     165             : {
     166           0 :     aToolTip = rToolTip;
     167           0 : }
     168             : 
     169           0 : bool SwDropDownField::QueryValue(::uno::Any &rVal, sal_uInt16 nWhich) const
     170             : {
     171           0 :     nWhich &= ~CONVERT_TWIPS;
     172           0 :     switch( nWhich )
     173             :     {
     174             :     case FIELD_PROP_PAR1:
     175           0 :         rVal <<= aSelectedItem;
     176           0 :         break;
     177             :     case FIELD_PROP_PAR2:
     178           0 :         rVal <<= aName;
     179           0 :         break;
     180             :     case FIELD_PROP_PAR3:
     181           0 :         rVal <<= aHelp;
     182           0 :         break;
     183             :     case FIELD_PROP_PAR4:
     184           0 :         rVal <<= aToolTip;
     185           0 :         break;
     186             :     case FIELD_PROP_STRINGS:
     187           0 :         rVal <<= GetItemSequence();
     188             : 
     189           0 :         break;
     190             : 
     191             :     default:
     192             :         OSL_FAIL("illegal property");
     193             :     }
     194           0 :     return true;
     195             : }
     196             : 
     197           0 : bool SwDropDownField::PutValue(const uno::Any &rVal,
     198             :                                sal_uInt16 nWhich)
     199             : {
     200           0 :     switch( nWhich )
     201             :     {
     202             :     case FIELD_PROP_PAR1:
     203             :         {
     204           0 :             OUString aTmpStr;
     205           0 :             rVal >>= aTmpStr;
     206             : 
     207           0 :             SetSelectedItem(aTmpStr);
     208             :         }
     209           0 :         break;
     210             : 
     211             :     case FIELD_PROP_PAR2:
     212           0 :         rVal >>= aName;
     213           0 :         break;
     214             : 
     215             :     case FIELD_PROP_PAR3:
     216           0 :         rVal >>= aHelp;
     217           0 :         break;
     218             : 
     219             :     case FIELD_PROP_PAR4:
     220           0 :         rVal >>= aToolTip;
     221           0 :         break;
     222             : 
     223             :     case FIELD_PROP_STRINGS:
     224             :         {
     225           0 :             uno::Sequence<OUString> aSeq;
     226           0 :             rVal >>= aSeq;
     227           0 :             SetItems(aSeq);
     228             :         }
     229           0 :         break;
     230             : 
     231             :     default:
     232             :         OSL_FAIL("illegal property");
     233             :     }
     234           0 :     return true;
     235             : }
     236             : 
     237             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11