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 .
24 #include <rschash.hxx>
26 #include <rscclass.hxx>
28 /******************* R s c M g r *****************************************/
29 class RscMgr
: public RscClass
33 RscId aRefId
; // nRefId = Referenz Identifier
34 bool bDflt
; // Ist Default
35 void Create(){ aRefId
.Create(); bDflt
= true; }
36 void Destroy(){ aRefId
.Destroy(); }
38 ERRTYPE
IsToDeep( const RSCINST
& rInst
, sal_uInt32 nDeep
= 0 );
40 RscMgr( Atom nId
, sal_uInt32 nTypId
, RscTop
* pSuperCl
);
42 void SetToDefault( const RSCINST
& rInst
);
43 bool IsDefault( const RSCINST
& rInst
);
44 bool IsValueDefault( const RSCINST
& rInst
, CLASS_DATA pDef
);
46 RSCINST
Create( RSCINST
* pInst
, const RSCINST
& rDflt
, bool );
47 void Destroy( const RSCINST
& rInst
);
49 void WriteSrcHeader( const RSCINST
& aInst
, FILE * fOutput
,
50 RscTypCont
* pTC
, sal_uInt32 nTab
,
51 const RscId
& rId
, const char * );
53 void WriteSrc( const RSCINST
& rInst
, FILE * fOutput
,
54 RscTypCont
* pTC
, sal_uInt32 nTab
, const char * );
55 ERRTYPE
WriteRcHeader( const RSCINST
& rInst
, RscWriteRc
& aMem
,
56 RscTypCont
* pTC
, const RscId
& rId
,
57 sal_uInt32
, bool bExtra
);
58 ERRTYPE
WriteRc( const RSCINST
& rInst
, RscWriteRc
& aMem
,
59 RscTypCont
* pTC
, sal_uInt32
, bool bExtra
);
60 bool IsConsistent( const RSCINST
& rInst
);
61 ERRTYPE
GetRef( const RSCINST
& rInst
, RscId
* );
62 ERRTYPE
SetRef( const RSCINST
& rInst
, const RscId
& rRefId
);
67 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */