Files
libreoffice/idl/inc/basobj.hxx

188 lines
6.7 KiB
C++
Raw Normal View History

2010-10-27 13:11:31 +01:00
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
2000-09-18 15:33:13 +00:00
#ifndef INCLUDED_IDL_INC_BASOBJ_HXX
#define INCLUDED_IDL_INC_BASOBJ_HXX
2000-09-18 15:33:13 +00:00
#include <tools/ref.hxx>
#include <bastype.hxx>
#include <tools/pstm.hxx>
class SvTokenStream;
class SvMetaObject;
class SvIdlDataBase;
typedef SvMetaObject * (*CreateMetaObjectType)();
#define C_PREF "C_"
class SvMetaObject : public SvRttiBase
2000-09-18 15:33:13 +00:00
{
public:
TYPEINFO_OVERRIDE();
2000-09-18 15:33:13 +00:00
SvMetaObject();
static void WriteTab( SvStream & rOutStm, sal_uInt16 nTab );
2000-09-18 15:33:13 +00:00
static void Back2Delemitter( SvStream & );
static void WriteStars( SvStream & );
virtual bool ReadSvIdl( SvIdlDataBase &, SvTokenStream & rInStm );
2000-09-18 15:33:13 +00:00
protected:
virtual ~SvMetaObject() {}
2000-09-18 15:33:13 +00:00
};
class SvMetaObjectMemberList : public SvRefMemberList<SvMetaObject *> {};
2000-09-18 15:33:13 +00:00
class SvMetaObjectMemberStack
{
SvMetaObjectMemberList aList;
public:
SvMetaObjectMemberStack() {;}
void Push( SvMetaObject * pObj )
{ aList.push_back( pObj ); }
SvMetaObject * Pop() { return aList.pop_back(); }
SvMetaObject * Top() const { return aList.back(); }
void Clear() { aList.clear(); }
sal_uLong Count() const { return aList.size(); }
2000-09-18 15:33:13 +00:00
SvMetaObject * Get( TypeId nType )
{
for( SvMetaObjectMemberList::reverse_iterator it = aList.rbegin(); it != aList.rend(); ++it )
if( (*it)->IsA( nType ) )
return *it;
2000-09-18 15:33:13 +00:00
return NULL;
}
};
class SvMetaName : public SvMetaObject
{
SvString aName;
SvHelpContext aHelpContext;
SvHelpText aHelpText;
SvString aConfigName;
SvString aDescription;
protected:
bool ReadNameSvIdl( SvIdlDataBase &, SvTokenStream & rInStm );
2000-09-18 15:33:13 +00:00
void DoReadContextSvIdl( SvIdlDataBase &, SvTokenStream & rInStm,
char c = '\0' );
virtual void ReadContextSvIdl( SvIdlDataBase &, SvTokenStream & rInStm );
virtual void ReadAttributesSvIdl( SvIdlDataBase & rBase,
SvTokenStream & rInStm );
public:
TYPEINFO_OVERRIDE();
2000-09-18 15:33:13 +00:00
SvMetaName();
virtual bool SetName( const OString& rName, SvIdlDataBase * = NULL );
void SetDescription( const OString& rText )
2011-12-29 10:37:09 +00:00
{ aDescription.setString(rText); }
2000-09-18 15:33:13 +00:00
const SvHelpContext& GetHelpContext() const { return aHelpContext; }
virtual const SvString & GetName() const { return aName; }
virtual const SvString & GetHelpText() const { return aHelpText; }
virtual const SvString & GetConfigName() const{ return aConfigName; }
virtual const SvString& GetDescription() const{ return aDescription; }
virtual bool Test( SvIdlDataBase &, SvTokenStream & rInStm );
virtual bool ReadSvIdl( SvIdlDataBase &, SvTokenStream & rInStm ) SAL_OVERRIDE;
2000-09-18 15:33:13 +00:00
};
class SvMetaNameMemberList : public SvRefMemberList<SvMetaName *> {};
2000-09-18 15:33:13 +00:00
class SvMetaReference;
typedef tools::SvRef<SvMetaReference> SvMetaReferenceRef;
2000-09-18 15:33:13 +00:00
class SvMetaReference : public SvMetaName
{
protected:
SvMetaReferenceRef aRef;
public:
TYPEINFO_OVERRIDE();
2000-09-18 15:33:13 +00:00
SvMetaReference();
const SvString & GetName() const SAL_OVERRIDE
2000-09-18 15:33:13 +00:00
{
return ( !aRef.Is()
2012-01-26 09:46:41 +00:00
|| !SvMetaName::GetName().getString().isEmpty() )
2000-09-18 15:33:13 +00:00
? SvMetaName::GetName()
: aRef->GetName();
}
const SvString & GetHelpText() const SAL_OVERRIDE
2000-09-18 15:33:13 +00:00
{
return ( !aRef.Is()
2012-01-26 09:46:41 +00:00
|| !SvMetaName::GetHelpText().getString().isEmpty() )
2000-09-18 15:33:13 +00:00
? SvMetaName::GetHelpText()
: aRef->GetHelpText();
}
const SvString & GetConfigName() const SAL_OVERRIDE
2000-09-18 15:33:13 +00:00
{
return ( !aRef.Is()
2012-01-26 09:46:41 +00:00
|| !SvMetaName::GetConfigName().getString().isEmpty() )
2000-09-18 15:33:13 +00:00
? SvMetaName::GetConfigName()
: aRef->GetConfigName();
}
const SvString & GetDescription() const SAL_OVERRIDE
2000-09-18 15:33:13 +00:00
{
return ( !aRef.Is()
2012-01-26 09:46:41 +00:00
|| !SvMetaName::GetDescription().getString().isEmpty() )
2000-09-18 15:33:13 +00:00
? SvMetaName::GetDescription()
: aRef->GetDescription();
}
SvMetaReference * GetRef() const { return aRef; }
void SetRef( SvMetaReference * pRef )
{ aRef = pRef; }
};
class SvMetaReferenceMemberList : public SvRefMemberList<SvMetaReference *> {};
2000-09-18 15:33:13 +00:00
class SvMetaModule;
class SvMetaExtern : public SvMetaReference
{
SvMetaModule * pModule; // included in which module
2000-09-18 15:33:13 +00:00
SvUUId aUUId;
SvVersion aVersion;
bool bReadUUId;
bool bReadVersion;
2000-09-18 15:33:13 +00:00
public:
TYPEINFO_OVERRIDE();
2000-09-18 15:33:13 +00:00
SvMetaExtern();
SvMetaModule * GetModule() const;
const SvGlobalName &GetUUId() const;
const SvVersion & GetVersion() const { return aVersion; }
void SetModule( SvIdlDataBase & rBase );
virtual bool ReadSvIdl( SvIdlDataBase &, SvTokenStream & rInStm ) SAL_OVERRIDE;
2000-09-18 15:33:13 +00:00
protected:
virtual void ReadAttributesSvIdl( SvIdlDataBase &, SvTokenStream & rInStm ) SAL_OVERRIDE;
2000-09-18 15:33:13 +00:00
};
class SvMetaExternMemberList : public SvRefMemberList<SvMetaExtern *> {};
2000-09-18 15:33:13 +00:00
#endif // INCLUDED_IDL_INC_BASOBJ_HXX
2000-09-18 15:33:13 +00:00
2010-10-27 13:11:31 +01:00
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */