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 INCLUDED_FORMS_SOURCE_INC_COMPONENTTOOLS_HXX
21 : #define INCLUDED_FORMS_SOURCE_INC_COMPONENTTOOLS_HXX
22 :
23 : #include <com/sun/star/uno/Type.hxx>
24 : #include <com/sun/star/uno/Sequence.hxx>
25 : #include <com/sun/star/frame/XModel.hpp>
26 :
27 : #include <set>
28 : #include <functional>
29 :
30 :
31 : namespace frm
32 : {
33 :
34 :
35 : struct TypeCompareLess : public ::std::binary_function< ::com::sun::star::uno::Type, ::com::sun::star::uno::Type, bool >
36 : {
37 : private:
38 : typedef ::com::sun::star::uno::Type Type;
39 :
40 : public:
41 59854 : bool operator()( const Type& _rLHS, const Type& _rRHS ) const
42 : {
43 59854 : return _rLHS.getTypeName() < _rRHS.getTypeName();
44 : }
45 : };
46 :
47 : /** a helper class which merges sequences of <type scope="com::sun::star::uno">Type</type>s,
48 : so that the resulting sequence contains every type at most once
49 : */
50 558 : class TypeBag
51 : {
52 : public:
53 : typedef ::com::sun::star::uno::Type Type;
54 : typedef ::com::sun::star::uno::Sequence< Type > TypeSequence;
55 : typedef ::std::set< Type, TypeCompareLess > TypeSet;
56 :
57 : private:
58 : TypeSet m_aTypes;
59 :
60 : public:
61 : TypeBag(
62 : const TypeSequence& _rTypes1
63 : );
64 :
65 : TypeBag(
66 : const TypeSequence& _rTypes1,
67 : const TypeSequence& _rTypes2
68 : );
69 : TypeBag(
70 : const TypeSequence& _rTypes1,
71 : const TypeSequence& _rTypes2,
72 : const TypeSequence& _rTypes3
73 : );
74 :
75 : void addType( const Type& i_rType );
76 : void addTypes( const TypeSequence& _rTypes );
77 : void removeType( const Type& i_rType );
78 :
79 : /** returns the types represented by this bag
80 : */
81 : TypeSequence getTypes() const;
82 : };
83 :
84 : ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel > getXModel(
85 : const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& _rxComponent );
86 :
87 :
88 : } // namespace frm
89 :
90 :
91 : #endif // INCLUDED_FORMS_SOURCE_INC_COMPONENTTOOLS_HXX
92 :
93 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|