2001-01-12 10:35:45 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-08 19:11:49 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2001-01-12 10:35:45 +00:00
|
|
|
*
|
2005-09-08 19:11:49 +00:00
|
|
|
* $RCSfile: formbrowsertools.hxx,v $
|
2001-01-12 10:35:45 +00:00
|
|
|
*
|
2006-03-14 10:22:55 +00:00
|
|
|
* $Revision: 1.5 $
|
2001-01-12 10:35:45 +00:00
|
|
|
*
|
2006-03-14 10:22:55 +00:00
|
|
|
* last change: $Author: vg $ $Date: 2006-03-14 11:22:55 $
|
2001-01-12 10:35:45 +00:00
|
|
|
*
|
2005-09-08 19:11:49 +00:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2001-01-12 10:35:45 +00:00
|
|
|
*
|
|
|
|
*
|
2005-09-08 19:11:49 +00:00
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2001-01-12 10:35:45 +00:00
|
|
|
*
|
2005-09-08 19:11:49 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License version 2.1, as published by the Free Software Foundation.
|
2001-01-12 10:35:45 +00:00
|
|
|
*
|
2005-09-08 19:11:49 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-01-12 10:35:45 +00:00
|
|
|
*
|
2005-09-08 19:11:49 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
2001-01-12 10:35:45 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _EXTENSIONS_FORMSCTRLR_FORMBROWSERTOOLS_HXX_
|
|
|
|
#define _EXTENSIONS_FORMSCTRLR_FORMBROWSERTOOLS_HXX_
|
|
|
|
|
|
|
|
#ifndef _COM_SUN_STAR_UNO_ANY_HXX_
|
|
|
|
#include <com/sun/star/uno/Any.hxx>
|
|
|
|
#endif
|
2004-11-16 11:05:44 +00:00
|
|
|
#ifndef _COM_SUN_STAR_BEANS_PROPERTY_HPP_
|
|
|
|
#include <com/sun/star/beans/Property.hpp>
|
|
|
|
#endif
|
2001-01-12 10:35:45 +00:00
|
|
|
#ifndef _RTL_USTRING_HXX_
|
|
|
|
#include <rtl/ustring.hxx>
|
|
|
|
#endif
|
|
|
|
|
2004-11-16 11:05:44 +00:00
|
|
|
#include <functional>
|
2006-03-14 10:22:55 +00:00
|
|
|
#include <set>
|
2004-11-16 11:05:44 +00:00
|
|
|
|
2001-01-12 10:35:45 +00:00
|
|
|
//............................................................................
|
|
|
|
namespace pcr
|
|
|
|
{
|
|
|
|
//............................................................................
|
|
|
|
|
|
|
|
::rtl::OUString GetUIHeadlineName(sal_Int16 _nClassId, const ::com::sun::star::uno::Any& _rUnoObject);
|
|
|
|
|
2006-03-14 10:22:55 +00:00
|
|
|
//========================================================================
|
2004-11-16 11:05:44 +00:00
|
|
|
struct FindPropertyByHandle : public ::std::unary_function< ::com::sun::star::beans::Property, bool >
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
sal_Int32 m_nId;
|
|
|
|
|
|
|
|
public:
|
|
|
|
FindPropertyByHandle( sal_Int32 _nId ) : m_nId ( _nId ) { }
|
|
|
|
bool operator()( const ::com::sun::star::beans::Property& _rProp ) const
|
|
|
|
{
|
|
|
|
return m_nId == _rProp.Handle;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2006-03-14 10:22:55 +00:00
|
|
|
//========================================================================
|
|
|
|
struct FindPropertyByName : public ::std::unary_function< ::com::sun::star::beans::Property, bool >
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
::rtl::OUString m_sName;
|
|
|
|
|
|
|
|
public:
|
|
|
|
FindPropertyByName( const ::rtl::OUString& _rName ) : m_sName( _rName ) { }
|
|
|
|
bool operator()( const ::com::sun::star::beans::Property& _rProp ) const
|
|
|
|
{
|
|
|
|
return m_sName == _rProp.Name;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
struct PropertyLessByName
|
|
|
|
:public ::std::binary_function < ::com::sun::star::beans::Property,
|
|
|
|
::com::sun::star::beans::Property,
|
|
|
|
bool
|
|
|
|
>
|
|
|
|
{
|
|
|
|
bool operator() (::com::sun::star::beans::Property _rLhs, ::com::sun::star::beans::Property _rRhs) const
|
|
|
|
{
|
|
|
|
return _rLhs.Name < _rRhs.Name ? true : false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
struct TypeLessByName
|
|
|
|
:public ::std::binary_function < ::com::sun::star::uno::Type,
|
|
|
|
::com::sun::star::uno::Type,
|
|
|
|
bool
|
|
|
|
>
|
2004-11-16 11:05:44 +00:00
|
|
|
{
|
2006-03-14 10:22:55 +00:00
|
|
|
bool operator() (::com::sun::star::uno::Type _rLhs, ::com::sun::star::uno::Type _rRhs) const
|
2004-11-16 11:05:44 +00:00
|
|
|
{
|
2006-03-14 10:22:55 +00:00
|
|
|
return _rLhs.getTypeName() < _rRhs.getTypeName() ? true : false;
|
2004-11-16 11:05:44 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2006-03-14 10:22:55 +00:00
|
|
|
//========================================================================
|
|
|
|
typedef ::std::set< ::com::sun::star::beans::Property, PropertyLessByName > PropertyBag;
|
|
|
|
|
2001-01-12 10:35:45 +00:00
|
|
|
//............................................................................
|
|
|
|
} // namespace pcr
|
|
|
|
//............................................................................
|
|
|
|
|
|
|
|
#endif // _EXTENSIONS_FORMSCTRLR_FORMBROWSERTOOLS_HXX_
|
|
|
|
|