LCOV - code coverage report
Current view: top level - libreoffice/cui/source/options - dbregistersettings.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 11 0.0 %
Date: 2012-12-27 Functions: 0 9 0.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             : #ifndef SVX_DBREGISTERSETTING_HXX
      21             : #define SVX_DBREGISTERSETTING_HXX
      22             : 
      23             : #include <comphelper/stl_types.hxx>
      24             : #include <svl/poolitem.hxx>
      25             : 
      26             : //........................................................................
      27             : namespace svx
      28             : {
      29             : //........................................................................
      30             : 
      31           0 :     struct DatabaseRegistration
      32             :     {
      33             :         ::rtl::OUString sLocation;
      34             :         bool            bReadOnly;
      35             : 
      36           0 :         DatabaseRegistration()
      37             :             :sLocation()
      38           0 :             ,bReadOnly( true )
      39             :         {
      40           0 :         }
      41             : 
      42           0 :         DatabaseRegistration( const ::rtl::OUString& _rLocation, const sal_Bool _bReadOnly )
      43             :             :sLocation( _rLocation )
      44           0 :             ,bReadOnly( _bReadOnly )
      45             :         {
      46           0 :         }
      47             : 
      48           0 :         bool operator==( const DatabaseRegistration& _rhs ) const
      49             :         {
      50           0 :             return  ( sLocation == _rhs.sLocation );
      51             :                 // do not take the read-only-ness into account, this is not maintained everywhere, but only
      52             :                 // properly set when filling the struct from the XDatabaseRegistrations data
      53             :         }
      54             : 
      55             :         bool operator!=( const DatabaseRegistration& _rhs ) const
      56             :         {
      57             :             return !( this->operator==( _rhs ) );
      58             :         }
      59             :     };
      60             : 
      61             :     typedef ::std::map< ::rtl::OUString, DatabaseRegistration, ::comphelper::UStringLess >   DatabaseRegistrations;
      62             : 
      63             :     //====================================================================
      64             :     //= DatabaseMapItem
      65             :     //====================================================================
      66           0 :     class DatabaseMapItem : public SfxPoolItem
      67             :     {
      68             :     protected:
      69             :         DatabaseRegistrations   m_aRegistrations;
      70             : 
      71             :     public:
      72             :         TYPEINFO();
      73             : 
      74             :         DatabaseMapItem( sal_uInt16 _nId, const DatabaseRegistrations& _rRegistrations );
      75             : 
      76             :         virtual int              operator==( const SfxPoolItem& ) const;
      77             :         virtual SfxPoolItem*     Clone( SfxItemPool *pPool = 0 ) const;
      78             : 
      79             :         const DatabaseRegistrations&
      80           0 :                                 getRegistrations() const { return m_aRegistrations; }
      81             :     };
      82             : 
      83             : //........................................................................
      84             : }   // namespace svx
      85             : //........................................................................
      86             : #endif // SVX_DBREGISTERSETTING_HXX
      87             : 
      88             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10