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 .
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
31 // check availability of Resource
32 bool IsAvailableRes( const ResId
& rId
) const
33 { return m_pResMgr
->IsAvailable( rId
, this ); }
36 void GetRes( const ResId
& rResId
);
38 // check Resource state
43 // Get a pointer to the Resource's data
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)
81 { m_pResMgr
->PopContext( this ); }
84 Resource() : m_pResMgr( NULL
) {}
85 Resource( const ResId
& rResId
);
89 ~Resource() { TestRes(); }
97 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */