Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 : #ifndef _RSCSTR_HXX
20 : #define _RSCSTR_HXX
21 :
22 : #include <rscall.h>
23 : #include <rscerror.h>
24 : #include <rschash.hxx>
25 : #include <rsctop.hxx>
26 :
27 1252 : class RscString : public RscTop
28 : {
29 : RscTop * pRefClass;
30 : struct RscStringInst
31 : {
32 : char * pStr; // Zeiger auf String
33 : bool bDflt; // Ist Default
34 : RscId aRefId; // ReferenzName
35 : };
36 : sal_uInt32 nSize;
37 : public:
38 : RscString( Atom nId, sal_uInt32 nTypId );
39 : virtual RSCCLASS_TYPE GetClassType() const;
40 :
41 626 : void SetRefClass( RscTop * pClass ) { pRefClass = pClass; }
42 : RSCINST Create( RSCINST * pInst, const RSCINST & rDfltInst, bool );
43 : // Der zulaessige Bereich wird gesetzt
44 : void Destroy( const RSCINST & rInst );
45 8138 : sal_uInt32 Size(){ return nSize; }
46 38381 : void SetToDefault( const RSCINST & rInst )
47 : {
48 38381 : ((RscStringInst*)rInst.pData)->bDflt = true;
49 38381 : }
50 21943 : bool IsDefault( const RSCINST & rInst)
51 : {
52 21943 : return ((RscStringInst*)rInst.pData)->bDflt;
53 : }
54 : // Als Default setzen
55 : bool IsValueDefault( const RSCINST & rInst, CLASS_DATA pDef );
56 : ERRTYPE SetString( const RSCINST &, const char * pStr );
57 : ERRTYPE GetString( const RSCINST &, char ** ppStr );
58 : ERRTYPE GetRef( const RSCINST & rInst, RscId * );
59 : ERRTYPE SetRef( const RSCINST & rInst, const RscId & rRefId );
60 : void WriteSrc( const RSCINST &, FILE * fOutput,
61 : RscTypCont * pTC, sal_uInt32 nTab, const char * );
62 : ERRTYPE WriteRc( const RSCINST &, RscWriteRc & aMem,
63 : RscTypCont * pTC, sal_uInt32, bool bExtra );
64 : };
65 :
66 : #endif // _RSCSTR_HXX
67 :
68 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|