2001-07-10 17:56:36 +00:00
|
|
|
#ifndef _TREEVIEW_TVREAD_HXX_
|
|
|
|
#define _TREEVIEW_TVREAD_HXX_
|
|
|
|
|
|
|
|
#ifndef INCLUDED_STL_VECTOR
|
|
|
|
#include <vector>
|
|
|
|
#define INCLUDED_STL_VECTOR
|
|
|
|
#endif
|
|
|
|
#ifndef _RTL_REF_HXX_
|
|
|
|
#include <rtl/ref.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _RTL_USTRING_HXX_
|
|
|
|
#include <rtl/ustring.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _UCBHELPER_MACROS_HXX
|
|
|
|
#include <ucbhelper/macros.hxx>
|
|
|
|
#endif
|
2001-07-13 07:19:42 +00:00
|
|
|
#ifndef _COM_SUN_STAR_UNO_TYPE_HXX_
|
|
|
|
#include <com/sun/star/uno/Type.hxx>
|
|
|
|
#endif
|
2001-07-10 17:56:36 +00:00
|
|
|
#ifndef _CPPUHELPER_WEAK_HXX_
|
|
|
|
#include <cppuhelper/weak.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_UNO_XINTERFACE_HPP_
|
|
|
|
#include <com/sun/star/uno/XInterface.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_LANG_XTYPEPROVIDER_HPP_
|
|
|
|
#include <com/sun/star/lang/XTypeProvider.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_CONTAINER_XNAMEACCESS_HPP_
|
|
|
|
#include <com/sun/star/container/XNameAccess.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_CONTAINER_XHIERARCHICALNAMEACCESS_HPP_
|
|
|
|
#include <com/sun/star/container/XHierarchicalNameAccess.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_UTIL_XCHANGESNOTIFIER_HPP_
|
|
|
|
#include <com/sun/star/util/XChangesNotifier.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_LANG_XCOMPONENT_HPP_
|
|
|
|
#include <com/sun/star/lang/XComponent.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_LANG_XMULTISERVICEFACTORY_HPP_
|
|
|
|
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
namespace treeview {
|
|
|
|
|
2001-07-11 14:35:25 +00:00
|
|
|
|
2001-10-31 12:03:33 +00:00
|
|
|
class ConfigData
|
2001-07-12 12:32:24 +00:00
|
|
|
{
|
2001-10-31 12:03:33 +00:00
|
|
|
public:
|
|
|
|
#define PRODUCTNAME 0
|
|
|
|
#define PRODUCTVERSION 1
|
|
|
|
#define VENDORNAME 2
|
|
|
|
#define VENDORVERSION 3
|
|
|
|
#define VENDORSHORT 4
|
2001-10-22 09:55:31 +00:00
|
|
|
#define MAX_MODULE_COUNT 16
|
2001-10-31 12:53:36 +00:00
|
|
|
ConfigData();
|
|
|
|
int m_vAdd[5];
|
2001-10-31 12:03:33 +00:00
|
|
|
rtl::OUString m_vReplacement[5];
|
2001-10-31 12:53:36 +00:00
|
|
|
rtl::OUString prodName,prodVersion,vendName,vendVersion,vendShort;
|
|
|
|
|
2001-10-22 09:55:31 +00:00
|
|
|
sal_uInt64 filelen[MAX_MODULE_COUNT];
|
|
|
|
rtl::OUString fileurl[MAX_MODULE_COUNT];
|
|
|
|
rtl::OUString locale,system;
|
2001-07-12 12:32:24 +00:00
|
|
|
rtl::OUString appendix;
|
2001-10-31 12:03:33 +00:00
|
|
|
|
|
|
|
void SAL_CALL replaceName( rtl::OUString& oustring ) const;
|
2001-07-12 12:32:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class TVDom;
|
2001-07-11 14:35:25 +00:00
|
|
|
class TVChildTarget;
|
|
|
|
|
2001-07-12 14:48:32 +00:00
|
|
|
class TVBase
|
2001-07-10 17:56:36 +00:00
|
|
|
: public cppu::OWeakObject,
|
|
|
|
public com::sun::star::lang::XTypeProvider,
|
|
|
|
public com::sun::star::container::XNameAccess,
|
|
|
|
public com::sun::star::container::XHierarchicalNameAccess,
|
|
|
|
public com::sun::star::util::XChangesNotifier,
|
|
|
|
public com::sun::star::lang::XComponent
|
|
|
|
{
|
2001-07-11 14:35:25 +00:00
|
|
|
friend class TVChildTarget;
|
2001-07-10 17:56:36 +00:00
|
|
|
|
2001-07-11 14:35:25 +00:00
|
|
|
public:
|
2001-07-10 17:56:36 +00:00
|
|
|
|
2001-07-12 14:48:32 +00:00
|
|
|
virtual ~TVBase() { }
|
2001-07-10 17:56:36 +00:00
|
|
|
|
|
|
|
// XInterface
|
|
|
|
virtual com::sun::star::uno::Any SAL_CALL
|
|
|
|
queryInterface(
|
|
|
|
const com::sun::star::uno::Type& aType )
|
|
|
|
throw( com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
virtual void SAL_CALL
|
|
|
|
acquire(
|
|
|
|
void )
|
2001-10-26 10:42:02 +00:00
|
|
|
throw();
|
2001-07-10 17:56:36 +00:00
|
|
|
|
|
|
|
virtual void SAL_CALL
|
|
|
|
release(
|
|
|
|
void )
|
2001-10-26 10:42:02 +00:00
|
|
|
throw();
|
2001-07-10 17:56:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
// XTypeProvider
|
|
|
|
|
2001-07-18 06:36:28 +00:00
|
|
|
XTYPEPROVIDER_DECL()
|
2001-07-10 17:56:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
// XNameAccess
|
|
|
|
|
|
|
|
virtual com::sun::star::uno::Type SAL_CALL
|
|
|
|
getElementType( )
|
|
|
|
throw( com::sun::star::uno::RuntimeException )
|
|
|
|
{
|
2001-07-13 07:19:42 +00:00
|
|
|
return getCppuVoidType();
|
2001-07-10 17:56:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
virtual sal_Bool SAL_CALL hasElements()
|
|
|
|
throw( com::sun::star::uno::RuntimeException )
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// XChangesNotifier
|
|
|
|
|
|
|
|
virtual void SAL_CALL
|
|
|
|
addChangesListener(
|
|
|
|
const com::sun::star::uno::Reference< com::sun::star::util::XChangesListener >& aListener )
|
|
|
|
throw( com::sun::star::uno::RuntimeException )
|
|
|
|
{
|
2001-07-13 07:19:42 +00:00
|
|
|
// read only
|
2006-06-19 23:42:55 +00:00
|
|
|
(void)aListener;
|
2001-07-10 17:56:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual void SAL_CALL
|
|
|
|
removeChangesListener(
|
|
|
|
const com::sun::star::uno::Reference< com::sun::star::util::XChangesListener >& aListener )
|
|
|
|
throw( com::sun::star::uno::RuntimeException )
|
|
|
|
{
|
2001-07-13 07:19:42 +00:00
|
|
|
// read only
|
2006-06-19 23:42:55 +00:00
|
|
|
(void)aListener;
|
2001-07-10 17:56:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// XComponent
|
|
|
|
|
|
|
|
virtual void SAL_CALL dispose( )
|
|
|
|
throw( com::sun::star::uno::RuntimeException )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void SAL_CALL addEventListener(
|
|
|
|
const com::sun::star::uno::Reference< com::sun::star::lang::XEventListener >& xListener )
|
|
|
|
throw( com::sun::star::uno::RuntimeException )
|
|
|
|
{
|
2006-06-19 23:42:55 +00:00
|
|
|
(void)xListener;
|
2001-07-10 17:56:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual void SAL_CALL
|
|
|
|
removeEventListener(
|
|
|
|
const com::sun::star::uno::Reference< com::sun::star::lang::XEventListener >& aListener )
|
|
|
|
throw( com::sun::star::uno::RuntimeException )
|
|
|
|
{
|
2006-06-19 23:42:55 +00:00
|
|
|
(void)aListener;
|
2001-07-10 17:56:36 +00:00
|
|
|
}
|
|
|
|
|
2001-07-13 07:19:42 +00:00
|
|
|
|
|
|
|
// Abstract functions
|
|
|
|
// XNameAccess
|
|
|
|
|
|
|
|
virtual com::sun::star::uno::Any SAL_CALL
|
|
|
|
getByName( const rtl::OUString& aName )
|
|
|
|
throw( com::sun::star::container::NoSuchElementException,
|
|
|
|
com::sun::star::lang::WrappedTargetException,
|
|
|
|
com::sun::star::uno::RuntimeException) = 0;
|
|
|
|
|
|
|
|
virtual com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL
|
|
|
|
getElementNames( )
|
|
|
|
throw( com::sun::star::uno::RuntimeException ) = 0;
|
|
|
|
|
|
|
|
virtual sal_Bool SAL_CALL
|
|
|
|
hasByName( const rtl::OUString& aName )
|
|
|
|
throw( com::sun::star::uno::RuntimeException ) = 0;
|
|
|
|
|
|
|
|
|
|
|
|
// XHierarchicalNameAccess
|
|
|
|
|
|
|
|
virtual com::sun::star::uno::Any SAL_CALL
|
|
|
|
getByHierarchicalName( const rtl::OUString& aName )
|
|
|
|
throw( com::sun::star::container::NoSuchElementException,
|
|
|
|
com::sun::star::uno::RuntimeException ) = 0;
|
|
|
|
|
|
|
|
virtual sal_Bool SAL_CALL
|
|
|
|
hasByHierarchicalName( const rtl::OUString& aName )
|
|
|
|
throw( com::sun::star::uno::RuntimeException ) = 0;
|
|
|
|
|
2001-07-12 14:48:32 +00:00
|
|
|
}; // end class TVBase
|
|
|
|
|
|
|
|
|
2001-07-13 07:19:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2001-07-12 14:48:32 +00:00
|
|
|
class TVRead
|
|
|
|
: public TVBase
|
|
|
|
{
|
|
|
|
friend class TVChildTarget;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
TVRead();
|
|
|
|
|
|
|
|
TVRead( const ConfigData& configData,TVDom* tvDom = 0 );
|
|
|
|
|
|
|
|
~TVRead();
|
|
|
|
|
2001-07-13 07:19:42 +00:00
|
|
|
// XNameAccess
|
|
|
|
|
2001-07-12 14:48:32 +00:00
|
|
|
virtual com::sun::star::uno::Any SAL_CALL
|
|
|
|
getByName( const rtl::OUString& aName )
|
|
|
|
throw( com::sun::star::container::NoSuchElementException,
|
|
|
|
com::sun::star::lang::WrappedTargetException,
|
|
|
|
com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
virtual com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL
|
|
|
|
getElementNames( )
|
|
|
|
throw( com::sun::star::uno::RuntimeException );
|
|
|
|
|
|
|
|
virtual sal_Bool SAL_CALL
|
|
|
|
hasByName( const rtl::OUString& aName )
|
|
|
|
throw( com::sun::star::uno::RuntimeException );
|
|
|
|
|
|
|
|
|
|
|
|
// XHierarchicalNameAccess
|
|
|
|
|
|
|
|
virtual com::sun::star::uno::Any SAL_CALL
|
|
|
|
getByHierarchicalName( const rtl::OUString& aName )
|
|
|
|
throw( com::sun::star::container::NoSuchElementException,
|
|
|
|
com::sun::star::uno::RuntimeException );
|
|
|
|
|
|
|
|
virtual sal_Bool SAL_CALL
|
|
|
|
hasByHierarchicalName( const rtl::OUString& aName )
|
|
|
|
throw( com::sun::star::uno::RuntimeException );
|
2001-07-10 17:56:36 +00:00
|
|
|
|
2001-07-13 07:19:42 +00:00
|
|
|
|
2001-07-10 17:56:36 +00:00
|
|
|
private:
|
|
|
|
|
2001-07-11 14:35:25 +00:00
|
|
|
rtl::OUString Title;
|
|
|
|
rtl::OUString TargetURL;
|
|
|
|
rtl::Reference< TVChildTarget > Children;
|
2001-07-13 07:19:42 +00:00
|
|
|
|
|
|
|
}; // end class TVRead
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-07-10 17:56:36 +00:00
|
|
|
|
2001-07-11 14:35:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
class TVChildTarget
|
2001-07-12 14:48:32 +00:00
|
|
|
: public TVBase
|
2001-07-11 14:35:25 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2001-07-12 12:32:24 +00:00
|
|
|
TVChildTarget( const ConfigData& configData,TVDom* tvDom );
|
|
|
|
|
|
|
|
TVChildTarget( const com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory >& xMSF );
|
2001-07-11 14:35:25 +00:00
|
|
|
|
|
|
|
~TVChildTarget();
|
|
|
|
|
2001-07-12 12:32:24 +00:00
|
|
|
virtual com::sun::star::uno::Any SAL_CALL
|
2001-07-11 14:35:25 +00:00
|
|
|
getByName( const rtl::OUString& aName )
|
|
|
|
throw( com::sun::star::container::NoSuchElementException,
|
|
|
|
com::sun::star::lang::WrappedTargetException,
|
|
|
|
com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
virtual com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL
|
|
|
|
getElementNames( )
|
|
|
|
throw( com::sun::star::uno::RuntimeException );
|
|
|
|
|
|
|
|
virtual sal_Bool SAL_CALL
|
|
|
|
hasByName( const rtl::OUString& aName )
|
|
|
|
throw( com::sun::star::uno::RuntimeException );
|
|
|
|
|
|
|
|
|
|
|
|
// XHierarchicalNameAccess
|
|
|
|
|
|
|
|
virtual com::sun::star::uno::Any SAL_CALL
|
|
|
|
getByHierarchicalName( const rtl::OUString& aName )
|
|
|
|
throw( com::sun::star::container::NoSuchElementException,
|
|
|
|
com::sun::star::uno::RuntimeException );
|
|
|
|
|
|
|
|
virtual sal_Bool SAL_CALL
|
|
|
|
hasByHierarchicalName( const rtl::OUString& aName )
|
|
|
|
throw( com::sun::star::uno::RuntimeException );
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector< rtl::Reference< TVRead > > Elements;
|
2001-07-12 12:32:24 +00:00
|
|
|
|
2001-07-12 14:48:32 +00:00
|
|
|
ConfigData init(
|
|
|
|
const com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory >& xMSF );
|
2001-07-13 07:19:42 +00:00
|
|
|
|
2001-10-31 12:03:33 +00:00
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >
|
|
|
|
getConfiguration(
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& xMSgr ) const;
|
|
|
|
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::container::XHierarchicalNameAccess >
|
|
|
|
getHierAccess( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& sProvider,
|
|
|
|
const char* file ) const;
|
|
|
|
|
2005-11-11 11:17:44 +00:00
|
|
|
::rtl::OUString
|
|
|
|
getKey( const ::com::sun::star::uno::Reference< ::com::sun::star::container::XHierarchicalNameAccess >& xHierAccess,
|
2001-10-31 12:03:33 +00:00
|
|
|
const char* key ) const;
|
|
|
|
|
2005-11-11 11:17:44 +00:00
|
|
|
sal_Bool
|
|
|
|
getBooleanKey(
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XHierarchicalNameAccess >& xHierAccess,
|
|
|
|
const char* key) const;
|
|
|
|
|
|
|
|
void subst(
|
2001-10-31 12:03:33 +00:00
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& xMSgr,
|
|
|
|
rtl::OUString& instpath ) const;
|
|
|
|
|
2001-07-13 07:19:42 +00:00
|
|
|
}; // end class TVChildTarget
|
2001-07-11 14:35:25 +00:00
|
|
|
|
2001-07-10 17:56:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|