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