bump product version to 6.3.0.0.beta1
[LibreOffice.git] / extensions / source / propctrlr / formbrowsertools.hxx
blob7fede482d47fad6858ecde9f5a4c16e7b09727fa
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_EXTENSIONS_SOURCE_PROPCTRLR_FORMBROWSERTOOLS_HXX
21 #define INCLUDED_EXTENSIONS_SOURCE_PROPCTRLR_FORMBROWSERTOOLS_HXX
23 #include <com/sun/star/uno/Any.hxx>
24 #include <com/sun/star/beans/Property.hpp>
25 #include <rtl/ustring.hxx>
27 #include <set>
30 namespace pcr
34 OUString GetUIHeadlineName(sal_Int16 _nClassId, const css::uno::Any& _rUnoObject);
35 sal_Int16 classifyComponent( const css::uno::Reference< css::uno::XInterface >& _rxComponent );
38 struct FindPropertyByHandle
40 private:
41 sal_Int32 m_nId;
43 public:
44 explicit FindPropertyByHandle( sal_Int32 _nId ) : m_nId ( _nId ) { }
45 bool operator()( const css::beans::Property& _rProp ) const
47 return m_nId == _rProp.Handle;
52 struct FindPropertyByName
54 private:
55 OUString m_sName;
57 public:
58 explicit FindPropertyByName( const OUString& _rName ) : m_sName( _rName ) { }
59 bool operator()( const css::beans::Property& _rProp ) const
61 return m_sName == _rProp.Name;
66 struct PropertyLessByName
68 bool operator() (const css::beans::Property& _rLhs, const css::beans::Property& _rRhs) const
70 return _rLhs.Name < _rRhs.Name;
75 struct TypeLessByName
77 bool operator() (const css::uno::Type& _rLhs, const css::uno::Type& _rRhs) const
79 return _rLhs.getTypeName() < _rRhs.getTypeName();
84 typedef std::set< css::beans::Property, PropertyLessByName > PropertyBag;
87 } // namespace pcr
90 #endif // INCLUDED_EXTENSIONS_SOURCE_PROPCTRLR_FORMBROWSERTOOLS_HXX
92 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */