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 : : #ifndef _XMLOFF_STYLEMAP_HXX
30 : : #define _XMLOFF_STYLEMAP_HXX
31 : :
32 : : #include <com/sun/star/lang/XUnoTunnel.hpp>
33 : : #include <cppuhelper/implbase1.hxx>
34 : : #include <boost/unordered_map.hpp>
35 : :
36 : 5702 : struct StyleNameKey_Impl
37 : : {
38 : : sal_uInt16 m_nFamily;
39 : : ::rtl::OUString m_aName;
40 : :
41 : 3514 : inline StyleNameKey_Impl( sal_uInt16 nFamily,
42 : : const ::rtl::OUString& rName ) :
43 : : m_nFamily( nFamily ),
44 : 3514 : m_aName( rName )
45 : : {
46 : 3514 : }
47 : :
48 : : inline StyleNameKey_Impl() :
49 : : m_nFamily( 0 )
50 : : {
51 : : }
52 : : };
53 : :
54 : : struct StyleNameHash_Impl
55 : : {
56 : : inline size_t operator()( const StyleNameKey_Impl& r ) const;
57 : : inline bool operator()( const StyleNameKey_Impl& r1,
58 : : const StyleNameKey_Impl& r2 ) const;
59 : : };
60 : :
61 : 3514 : inline size_t StyleNameHash_Impl::operator()( const StyleNameKey_Impl& r ) const
62 : : {
63 : : return static_cast< size_t >( r.m_nFamily ) +
64 : 3514 : static_cast< size_t >( r.m_aName.hashCode() );
65 : : }
66 : :
67 : 1154 : inline bool StyleNameHash_Impl::operator()(
68 : : const StyleNameKey_Impl& r1,
69 : : const StyleNameKey_Impl& r2 ) const
70 : : {
71 [ + - ][ + - ]: 1154 : return r1.m_nFamily == r2.m_nFamily && r1.m_aName == r2.m_aName;
72 : : }
73 : :
74 : : class StyleMap :
75 : : public ::cppu::WeakImplHelper1< ::com::sun::star::lang::XUnoTunnel>,
76 : : public ::boost::unordered_map< StyleNameKey_Impl, ::rtl::OUString,
77 : : StyleNameHash_Impl, StyleNameHash_Impl >
78 : : {
79 : :
80 : : public:
81 : :
82 : : StyleMap();
83 : : virtual ~StyleMap();
84 : :
85 : : static const ::com::sun::star::uno::Sequence< sal_Int8 > & getUnoTunnelId() throw();
86 : : static StyleMap* getImplementation(
87 : : ::com::sun::star::uno::Reference<
88 : : ::com::sun::star::uno::XInterface > ) throw();
89 : :
90 : : // XUnoTunnel
91 : : virtual sal_Int64 SAL_CALL getSomething(
92 : : const ::com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier ) throw(::com::sun::star::uno::RuntimeException);
93 : : };
94 : :
95 : : #endif // _XMLOFF_STYLEMAP_HXX
96 : :
97 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|