LibreOffice Module extensions (master) 1
formbrowsertools.hxx
Go to the documentation of this file.
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#pragma once
21
22#include <com/sun/star/uno/Any.hxx>
23#include <com/sun/star/beans/Property.hpp>
24#include <rtl/ustring.hxx>
25
26#include <set>
27#include <utility>
28
29
30namespace pcr
31{
32
33
34 OUString GetUIHeadlineName(sal_Int16 _nClassId, const css::uno::Any& _rUnoObject);
35 sal_Int16 classifyComponent( const css::uno::Reference< css::uno::XInterface >& _rxComponent );
36
37
39 {
40 private:
41 sal_Int32 m_nId;
42
43 public:
44 explicit FindPropertyByHandle( sal_Int32 _nId ) : m_nId ( _nId ) { }
45 bool operator()( const css::beans::Property& _rProp ) const
46 {
47 return m_nId == _rProp.Handle;
48 }
49 };
50
51
53 {
54 private:
55 OUString m_sName;
56
57 public:
58 explicit FindPropertyByName( OUString _aName ) : m_sName(std::move( _aName )) { }
59 bool operator()( const css::beans::Property& _rProp ) const
60 {
61 return m_sName == _rProp.Name;
62 }
63 };
64
65
67 {
68 bool operator() (const css::beans::Property& _rLhs, const css::beans::Property& _rRhs) const
69 {
70 return _rLhs.Name < _rRhs.Name;
71 }
72 };
73
74
76 {
77 bool operator() (const css::uno::Type& _rLhs, const css::uno::Type& _rRhs) const
78 {
79 return _rLhs.getTypeName() < _rRhs.getTypeName();
80 }
81 };
82
83
84 typedef std::set< css::beans::Property, PropertyLessByName > PropertyBag;
85
86
87} // namespace pcr
88
89
90/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
a property handler for any virtual string properties
Definition: browserline.cxx:39
std::set< css::beans::Property, PropertyLessByName > PropertyBag
sal_Int16 classifyComponent(const Reference< XInterface > &_rxComponent)
OUString GetUIHeadlineName(sal_Int16 nClassId, const Any &aUnoObj)
bool operator()(const css::beans::Property &_rProp) const
FindPropertyByHandle(sal_Int32 _nId)
FindPropertyByName(OUString _aName)
bool operator()(const css::beans::Property &_rProp) const
bool operator()(const css::beans::Property &_rLhs, const css::beans::Property &_rRhs) const
bool operator()(const css::uno::Type &_rLhs, const css::uno::Type &_rRhs) const