1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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_IDL_INC_MODULE_HXX
21 #define INCLUDED_IDL_INC_MODULE_HXX
30 SvNamePos( const SvGlobalName
& rName
, sal_uInt32 nPos
)
35 class SvMetaModule
: public SvMetaExtern
37 SvMetaClassMemberList aClassList
;
38 SvMetaTypeMemberList aTypeList
;
39 SvMetaAttributeMemberList aAttrList
;
41 OUString aIdlFileName
;
42 SvString aHelpFileName
;
44 SvString aTypeLibFile
;
45 SvString aModulePrefix
;
49 SvGlobalName aBeginName
;
50 SvGlobalName aEndName
;
51 SvGlobalName aNextName
;
53 virtual void ReadAttributesSvIdl( SvIdlDataBase
&, SvTokenStream
& rInStm
) SAL_OVERRIDE
;
54 virtual void ReadContextSvIdl( SvIdlDataBase
&, SvTokenStream
& rInStm
) SAL_OVERRIDE
;
58 const OUString
& GetIdlFileName() const { return aIdlFileName
; }
59 const OString
& GetModulePrefix() const { return aModulePrefix
.getString(); }
61 virtual bool SetName( const OString
& rName
, SvIdlDataBase
* = NULL
) SAL_OVERRIDE
;
63 const OString
& GetHelpFileName() const { return aHelpFileName
.getString(); }
64 const OString
& GetTypeLibFileName() const { return aTypeLibFile
.getString(); }
66 const SvMetaAttributeMemberList
& GetAttrList() const { return aAttrList
; }
67 const SvMetaTypeMemberList
& GetTypeList() const { return aTypeList
; }
68 const SvMetaClassMemberList
& GetClassList() const { return aClassList
; }
70 SvMetaModule( const OUString
& rIdlFileName
,
73 bool FillNextName( SvGlobalName
* );
74 bool IsImported() const { return bImported
; }
75 bool IsModified() const { return bIsModified
; }
77 virtual bool ReadSvIdl( SvIdlDataBase
&, SvTokenStream
& rInStm
) SAL_OVERRIDE
;
79 void WriteSfx( SvIdlDataBase
& rBase
, SvStream
& rOutStm
);
81 typedef tools::SvRef
<SvMetaModule
> SvMetaModuleRef
;
83 class SvMetaModuleMemberList
: public SvRefMemberList
<SvMetaModule
*> {};
86 #endif // INCLUDED_IDL_INC_MODULE_HXX
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */