xref: /trunk/main/forms/source/inc/frm_resource.hxx (revision 914d351e5f5b84e4342a86d6ab8d4aca7308b9bd)
12d785d7eSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
32d785d7eSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
42d785d7eSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
52d785d7eSAndrew Rist  * distributed with this work for additional information
62d785d7eSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
72d785d7eSAndrew Rist  * to you under the Apache License, Version 2.0 (the
82d785d7eSAndrew Rist  * "License"); you may not use this file except in compliance
92d785d7eSAndrew Rist  * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir  *
112d785d7eSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir  *
132d785d7eSAndrew Rist  * Unless required by applicable law or agreed to in writing,
142d785d7eSAndrew Rist  * software distributed under the License is distributed on an
152d785d7eSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
162d785d7eSAndrew Rist  * KIND, either express or implied.  See the License for the
172d785d7eSAndrew Rist  * specific language governing permissions and limitations
182d785d7eSAndrew Rist  * under the License.
19cdf0e10cSrcweir  *
202d785d7eSAndrew Rist  *************************************************************/
212d785d7eSAndrew Rist 
222d785d7eSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir #ifndef _FRM_RESOURCE_HXX_
25cdf0e10cSrcweir #define _FRM_RESOURCE_HXX_
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #include <rtl/ustring.hxx>
28cdf0e10cSrcweir 
29cdf0e10cSrcweir class SimpleResMgr;
30cdf0e10cSrcweir //.........................................................................
31cdf0e10cSrcweir namespace frm
32cdf0e10cSrcweir {
33cdf0e10cSrcweir 
34cdf0e10cSrcweir #define FRM_RES_STRING(id) ResourceManager::loadString(id)
35cdf0e10cSrcweir 
36cdf0e10cSrcweir     //==================================================================
37cdf0e10cSrcweir     //= ResourceManager
38*816026e9SJohn Bampton     //= handling resources within the FormLayer library
39cdf0e10cSrcweir     //==================================================================
40cdf0e10cSrcweir     class ResourceManager
41cdf0e10cSrcweir     {
42cdf0e10cSrcweir         static SimpleResMgr*    m_pImpl;
43cdf0e10cSrcweir 
44cdf0e10cSrcweir     private:
45cdf0e10cSrcweir         // no instantiation allowed
ResourceManager()46cdf0e10cSrcweir         ResourceManager() { }
~ResourceManager()47cdf0e10cSrcweir         ~ResourceManager() { }
48cdf0e10cSrcweir 
49cdf0e10cSrcweir         // we'll instantiate one static member of the following class, which, in it's dtor,
50cdf0e10cSrcweir         // ensures that m_pImpl will be deleted
51cdf0e10cSrcweir         class EnsureDelete
52cdf0e10cSrcweir         {
53cdf0e10cSrcweir         public:
EnsureDelete()54cdf0e10cSrcweir             EnsureDelete() { }
55cdf0e10cSrcweir             ~EnsureDelete();
56cdf0e10cSrcweir         };
57cdf0e10cSrcweir         friend class EnsureDelete;
58cdf0e10cSrcweir 
59cdf0e10cSrcweir     protected:
60cdf0e10cSrcweir         static void ensureImplExists();
61cdf0e10cSrcweir 
62cdf0e10cSrcweir     public:
63cdf0e10cSrcweir         /** loads the string with the specified resource id from the FormLayer resource file
64cdf0e10cSrcweir         */
65cdf0e10cSrcweir         static ::rtl::OUString loadString(sal_uInt16 _nResId);
66cdf0e10cSrcweir     };
67cdf0e10cSrcweir 
68cdf0e10cSrcweir //.........................................................................
69cdf0e10cSrcweir }
70cdf0e10cSrcweir //.........................................................................
71cdf0e10cSrcweir 
72cdf0e10cSrcweir #endif // _FRM_RESOURCE_HXX_
73