bump product version to 4.2.0.1
[LibreOffice.git] / rsc / inc / rscmgr.hxx
blob95301d28a7aa6b2355f3318dc3c2eee025c9f06e
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
19 #ifndef _RSCMGR_HXX
20 #define _RSCMGR_HXX
22 #include <rscall.h>
23 #include <rscerror.h>
24 #include <rschash.hxx>
25 #include <rsctop.hxx>
26 #include <rscclass.hxx>
28 /******************* R s c M g r *****************************************/
29 class RscMgr : public RscClass
31 struct RscMgrInst
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 );
39 public:
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 );
48 sal_uInt32 Size();
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 );
65 #endif //_RSCMGR_HXX
67 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */