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 INCLUDED_TOOLS_RC_HXX
20 : #define INCLUDED_TOOLS_RC_HXX
21 :
22 : #include <tools/toolsdllapi.h>
23 : #include <i18nlangtag/lang.h>
24 : #include <tools/resmgr.hxx>
25 :
26 : class TOOLS_DLLPUBLIC Resource
27 : {
28 : protected:
29 : ResMgr* m_pResMgr;
30 :
31 : // check availability of Resource
32 0 : bool IsAvailableRes( const ResId& rId ) const
33 0 : { return m_pResMgr->IsAvailable( rId, this ); }
34 :
35 : // Load a Resource
36 : void GetRes( const ResId& rResId );
37 :
38 : // check Resource state
39 : #ifdef DBG_UTIL
40 : void TestRes();
41 : #endif
42 :
43 : // Get a pointer to the Resource's data
44 0 : void* GetClassRes()
45 0 : { return m_pResMgr->GetClass(); }
46 :
47 : // increase the memory pointer gotten by GetClassRes()
48 0 : void* IncrementRes( sal_uInt32 nBytes )
49 0 : { return m_pResMgr->Increment( nBytes ); }
50 :
51 : // return the memory size of a Resource data block
52 0 : static sal_uInt32 GetObjSizeRes( RSHEADER_TYPE * pHT )
53 0 : { return ResMgr::GetObjSize( pHT ); }
54 :
55 : // return the remaining size of this Resource's data
56 : sal_uInt32 GetRemainSizeRes()
57 : { return m_pResMgr->GetRemainSize(); }
58 :
59 : // get a 32bit value from Resource data
60 0 : static sal_Int32 GetLongRes( void * pLong )
61 0 : { return ResMgr::GetLong( pLong ); }
62 : // get a 16bit value from Resource data
63 : static sal_Int16 GetShortRes( void * pShort )
64 : { return ResMgr::GetShort( pShort ); }
65 :
66 : // read a 32bit value from resource data and increment pointer
67 0 : sal_Int32 ReadLongRes()
68 0 : { return m_pResMgr->ReadLong(); }
69 : // read a 16bit value from resource data and increment pointer
70 0 : sal_Int16 ReadShortRes()
71 0 : { return m_pResMgr->ReadShort(); }
72 : // read a string from resource data and increment pointer
73 0 : OUString ReadStringRes()
74 0 : { return m_pResMgr->ReadString(); }
75 : // read a byte string from resource data and increment pointer
76 0 : OString ReadByteStringRes()
77 0 : { return m_pResMgr->ReadByteString(); }
78 :
79 : // free the resource from m_pResMgr's stack (pass this ptr for validation)
80 0 : void FreeResource()
81 0 : { m_pResMgr->PopContext( this ); }
82 :
83 : // constructors
84 0 : Resource() : m_pResMgr( NULL ) {}
85 : Resource( const ResId& rResId );
86 :
87 : public:
88 : #ifdef DBG_UTIL
89 : ~Resource() { TestRes(); }
90 : #else
91 0 : ~Resource() {}
92 : #endif
93 : };
94 :
95 : #endif
96 :
97 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|