LCOV - code coverage report
Current view: top level - sw/source/ui/utlui - condedit.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 33 0.0 %
Date: 2012-08-25 Functions: 0 3 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 64 0.0 %

           Branch data     Line data    Source code
       1                 :            : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2                 :            : /*************************************************************************
       3                 :            :  *
       4                 :            :  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       5                 :            :  *
       6                 :            :  * Copyright 2000, 2010 Oracle and/or its affiliates.
       7                 :            :  *
       8                 :            :  * OpenOffice.org - a multi-platform office productivity suite
       9                 :            :  *
      10                 :            :  * This file is part of OpenOffice.org.
      11                 :            :  *
      12                 :            :  * OpenOffice.org is free software: you can redistribute it and/or modify
      13                 :            :  * it under the terms of the GNU Lesser General Public License version 3
      14                 :            :  * only, as published by the Free Software Foundation.
      15                 :            :  *
      16                 :            :  * OpenOffice.org is distributed in the hope that it will be useful,
      17                 :            :  * but WITHOUT ANY WARRANTY; without even the implied warranty of
      18                 :            :  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      19                 :            :  * GNU Lesser General Public License version 3 for more details
      20                 :            :  * (a copy is included in the LICENSE file that accompanied this code).
      21                 :            :  *
      22                 :            :  * You should have received a copy of the GNU Lesser General Public License
      23                 :            :  * version 3 along with OpenOffice.org.  If not, see
      24                 :            :  * <http://www.openoffice.org/license.html>
      25                 :            :  * for a copy of the LGPLv3 License.
      26                 :            :  *
      27                 :            :  ************************************************************************/
      28                 :            : 
      29                 :            : 
      30                 :            : #include <sot/formats.hxx>
      31                 :            : 
      32                 :            : #include <condedit.hxx>
      33                 :            : #include <svx/dbaexchange.hxx>
      34                 :            : using namespace ::svx;
      35                 :            : using ::rtl::OUString;
      36                 :            : using namespace ::com::sun::star::uno;
      37                 :            : #define DB_DD_DELIM 0x0b
      38                 :            : 
      39                 :            : // STATIC DATA -----------------------------------------------------------
      40                 :            : 
      41                 :          0 : ConditionEdit::ConditionEdit( Window* pParent, const ResId& rResId )
      42                 :            :     : Edit( pParent, rResId ),
      43                 :            :     DropTargetHelper( this ),
      44         [ #  # ]:          0 :     bBrackets( sal_True ), bEnableDrop( sal_True )
      45                 :            : {
      46                 :          0 : }
      47                 :            : 
      48                 :            : /*--------------------------------------------------------------------
      49                 :            :     Beschreibung: Drop moeglich, bzw Format bekannt?
      50                 :            :  --------------------------------------------------------------------*/
      51                 :          0 : sal_Int8 ConditionEdit::AcceptDrop( const AcceptDropEvent& /*rEvt*/ )
      52                 :            : {
      53                 :            :     return OColumnTransferable::canExtractColumnDescriptor
      54                 :          0 :         ( GetDataFlavorExVector(),
      55                 :          0 :                                 CTF_COLUMN_DESCRIPTOR )
      56                 :            :                 ? DND_ACTION_COPY
      57         [ #  # ]:          0 :                 : DND_ACTION_NONE;
      58                 :            : }
      59                 :            : 
      60                 :          0 : sal_Int8 ConditionEdit::ExecuteDrop( const ExecuteDropEvent& rEvt )
      61                 :            : {
      62                 :          0 :     sal_Int8 nRet = DND_ACTION_NONE;
      63         [ #  # ]:          0 :     if( bEnableDrop )
      64                 :            :     {
      65         [ #  # ]:          0 :         String sTxt;
      66         [ #  # ]:          0 :         TransferableDataHelper aData( rEvt.maDropEvent.Transferable );
      67                 :            : 
      68                 :          0 :             DataFlavorExVector& rVector = aData.GetDataFlavorExVector();
      69 [ #  # ][ #  # ]:          0 :             if(OColumnTransferable::canExtractColumnDescriptor(rVector, CTF_COLUMN_DESCRIPTOR))
      70                 :            :             {
      71                 :            :                 ODataAccessDescriptor aColDesc = OColumnTransferable::extractColumnDescriptor(
      72         [ #  # ]:          0 :                                                                     aData);
      73         [ #  # ]:          0 :                 String sDBName;
      74         [ #  # ]:          0 :                 if (bBrackets)
      75         [ #  # ]:          0 :                     sDBName += '[';
      76                 :          0 :                 OUString sTmp;
      77         [ #  # ]:          0 :                 sTmp = aColDesc.getDataSource();
      78 [ #  # ][ #  # ]:          0 :                 sDBName += String(sTmp);
                 [ #  # ]
      79         [ #  # ]:          0 :                 sDBName += '.';
      80                 :            : 
      81         [ #  # ]:          0 :                 aColDesc[daCommand] >>= sTmp;
      82 [ #  # ][ #  # ]:          0 :                 sDBName += String(sTmp);
                 [ #  # ]
      83         [ #  # ]:          0 :                 sDBName += '.';
      84                 :            : 
      85         [ #  # ]:          0 :                 aColDesc[daColumnName] >>= sTmp;
      86 [ #  # ][ #  # ]:          0 :                 sDBName += String(sTmp);
                 [ #  # ]
      87         [ #  # ]:          0 :                 if (bBrackets)
      88         [ #  # ]:          0 :                     sDBName += ']';
      89                 :            : 
      90         [ #  # ]:          0 :                 SetText( sDBName );
      91 [ #  # ][ #  # ]:          0 :                 nRet = DND_ACTION_COPY;
      92 [ #  # ][ #  # ]:          0 :             }
      93                 :            :     }
      94                 :          0 :     return nRet;
      95                 :            : }
      96                 :            : 
      97                 :            : 
      98                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10