1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir //------------------------------------------------------------------------
29*cdf0e10cSrcweir // includes
30*cdf0e10cSrcweir //------------------------------------------------------------------------
31*cdf0e10cSrcweir 
32*cdf0e10cSrcweir #include <osl/diagnose.h>
33*cdf0e10cSrcweir #include <rtl/ustrbuf.hxx>
34*cdf0e10cSrcweir #include <vos/mutex.hxx>
35*cdf0e10cSrcweir #include <vcl/svapp.hxx>
36*cdf0e10cSrcweir #include <tools/resmgr.hxx>
37*cdf0e10cSrcweir #include <com/sun/star/ui/dialogs/CommonFilePickerElementIds.hpp>
38*cdf0e10cSrcweir #include <com/sun/star/ui/dialogs/ExtendedFilePickerElementIds.hpp>
39*cdf0e10cSrcweir 
40*cdf0e10cSrcweir #ifndef _SVTOOLS_SVTOOLS_HRC_
41*cdf0e10cSrcweir #include <svtools/svtools.hrc>
42*cdf0e10cSrcweir #endif
43*cdf0e10cSrcweir 
44*cdf0e10cSrcweir #ifndef _SVTOOLS_FILEDLG2_HRC_
45*cdf0e10cSrcweir #include <svtools/filedlg2.hrc>
46*cdf0e10cSrcweir #endif
47*cdf0e10cSrcweir #include "NSString_OOoAdditions.hxx"
48*cdf0e10cSrcweir 
49*cdf0e10cSrcweir #include "resourceprovider.hxx"
50*cdf0e10cSrcweir 
51*cdf0e10cSrcweir //------------------------------------------------------------
52*cdf0e10cSrcweir // namespace directives
53*cdf0e10cSrcweir //------------------------------------------------------------
54*cdf0e10cSrcweir 
55*cdf0e10cSrcweir using rtl::OUString;
56*cdf0e10cSrcweir using namespace ::com::sun::star::ui::dialogs::ExtendedFilePickerElementIds;
57*cdf0e10cSrcweir using namespace ::com::sun::star::ui::dialogs::CommonFilePickerElementIds;
58*cdf0e10cSrcweir 
59*cdf0e10cSrcweir //------------------------------------------------------------
60*cdf0e10cSrcweir //
61*cdf0e10cSrcweir //------------------------------------------------------------
62*cdf0e10cSrcweir 
63*cdf0e10cSrcweir static const char* RES_NAME = "fps_office";
64*cdf0e10cSrcweir static const char* OTHER_RES_NAME = "svt";
65*cdf0e10cSrcweir 
66*cdf0e10cSrcweir //------------------------------------------------------------
67*cdf0e10cSrcweir // we have to translate control ids to resource ids
68*cdf0e10cSrcweir //------------------------------------------------------------
69*cdf0e10cSrcweir 
70*cdf0e10cSrcweir struct _Entry
71*cdf0e10cSrcweir {
72*cdf0e10cSrcweir     sal_Int32 ctrlId;
73*cdf0e10cSrcweir     sal_Int16 resId;
74*cdf0e10cSrcweir };
75*cdf0e10cSrcweir 
76*cdf0e10cSrcweir _Entry CtrlIdToResIdTable[] = {
77*cdf0e10cSrcweir     { CHECKBOX_AUTOEXTENSION,                   STR_SVT_FILEPICKER_AUTO_EXTENSION },
78*cdf0e10cSrcweir     { CHECKBOX_PASSWORD,                        STR_SVT_FILEPICKER_PASSWORD },
79*cdf0e10cSrcweir     { CHECKBOX_FILTEROPTIONS,                   STR_SVT_FILEPICKER_FILTER_OPTIONS },
80*cdf0e10cSrcweir     { CHECKBOX_READONLY,                        STR_SVT_FILEPICKER_READONLY },
81*cdf0e10cSrcweir     { CHECKBOX_LINK,                            STR_SVT_FILEPICKER_INSERT_AS_LINK },
82*cdf0e10cSrcweir     { CHECKBOX_PREVIEW,                         STR_SVT_FILEPICKER_SHOW_PREVIEW },
83*cdf0e10cSrcweir     { PUSHBUTTON_PLAY,                          STR_SVT_FILEPICKER_PLAY },
84*cdf0e10cSrcweir     { LISTBOX_VERSION_LABEL,                    STR_SVT_FILEPICKER_VERSION },
85*cdf0e10cSrcweir     { LISTBOX_TEMPLATE_LABEL,                   STR_SVT_FILEPICKER_TEMPLATES },
86*cdf0e10cSrcweir     { LISTBOX_IMAGE_TEMPLATE_LABEL,             STR_SVT_FILEPICKER_IMAGE_TEMPLATE },
87*cdf0e10cSrcweir     { CHECKBOX_SELECTION,                       STR_SVT_FILEPICKER_SELECTION },
88*cdf0e10cSrcweir     { FOLDERPICKER_TITLE,                       STR_SVT_FOLDERPICKER_DEFAULT_TITLE },
89*cdf0e10cSrcweir     { FOLDER_PICKER_DEF_DESCRIPTION,            STR_SVT_FOLDERPICKER_DEFAULT_DESCRIPTION },
90*cdf0e10cSrcweir     { FILE_PICKER_OVERWRITE,                    STR_SVT_ALREADYEXISTOVERWRITE },
91*cdf0e10cSrcweir     { LISTBOX_FILTER_LABEL,                     STR_SVT_FILEPICKER_FILTER_TITLE}
92*cdf0e10cSrcweir };
93*cdf0e10cSrcweir 
94*cdf0e10cSrcweir _Entry OtherCtrlIdToResIdTable[] = {
95*cdf0e10cSrcweir     { FILE_PICKER_TITLE_OPEN,                   STR_FILEDLG_OPEN },
96*cdf0e10cSrcweir     { FILE_PICKER_TITLE_SAVE,                   STR_FILEDLG_SAVE },
97*cdf0e10cSrcweir     { FILE_PICKER_FILE_TYPE,                    STR_FILEDLG_TYPE }
98*cdf0e10cSrcweir };
99*cdf0e10cSrcweir 
100*cdf0e10cSrcweir 
101*cdf0e10cSrcweir const sal_Int32 SIZE_TABLE = sizeof( CtrlIdToResIdTable ) / sizeof( _Entry );
102*cdf0e10cSrcweir const sal_Int32 OTHER_SIZE_TABLE = sizeof( OtherCtrlIdToResIdTable ) / sizeof( _Entry );
103*cdf0e10cSrcweir 
104*cdf0e10cSrcweir //------------------------------------------------------------
105*cdf0e10cSrcweir //
106*cdf0e10cSrcweir //------------------------------------------------------------
107*cdf0e10cSrcweir 
108*cdf0e10cSrcweir sal_Int16 CtrlIdToResId( sal_Int32 aControlId )
109*cdf0e10cSrcweir {
110*cdf0e10cSrcweir     sal_Int16 aResId = -1;
111*cdf0e10cSrcweir 
112*cdf0e10cSrcweir     for ( sal_Int32 i = 0; i < SIZE_TABLE; i++ )
113*cdf0e10cSrcweir     {
114*cdf0e10cSrcweir         if ( CtrlIdToResIdTable[i].ctrlId == aControlId )
115*cdf0e10cSrcweir         {
116*cdf0e10cSrcweir             aResId = CtrlIdToResIdTable[i].resId;
117*cdf0e10cSrcweir             break;
118*cdf0e10cSrcweir         }
119*cdf0e10cSrcweir     }
120*cdf0e10cSrcweir 
121*cdf0e10cSrcweir     return aResId;
122*cdf0e10cSrcweir }
123*cdf0e10cSrcweir 
124*cdf0e10cSrcweir sal_Int16 OtherCtrlIdToResId( sal_Int32 aControlId )
125*cdf0e10cSrcweir {
126*cdf0e10cSrcweir     sal_Int16 aResId = -1;
127*cdf0e10cSrcweir 
128*cdf0e10cSrcweir     for ( sal_Int32 i = 0; i < OTHER_SIZE_TABLE; i++ )
129*cdf0e10cSrcweir     {
130*cdf0e10cSrcweir         if ( OtherCtrlIdToResIdTable[i].ctrlId == aControlId )
131*cdf0e10cSrcweir         {
132*cdf0e10cSrcweir             aResId = OtherCtrlIdToResIdTable[i].resId;
133*cdf0e10cSrcweir             break;
134*cdf0e10cSrcweir         }
135*cdf0e10cSrcweir     }
136*cdf0e10cSrcweir 
137*cdf0e10cSrcweir     return aResId;
138*cdf0e10cSrcweir }
139*cdf0e10cSrcweir 
140*cdf0e10cSrcweir //------------------------------------------------------------
141*cdf0e10cSrcweir //
142*cdf0e10cSrcweir //------------------------------------------------------------
143*cdf0e10cSrcweir 
144*cdf0e10cSrcweir class CResourceProvider_Impl
145*cdf0e10cSrcweir {
146*cdf0e10cSrcweir public:
147*cdf0e10cSrcweir 
148*cdf0e10cSrcweir     //-------------------------------------
149*cdf0e10cSrcweir     //
150*cdf0e10cSrcweir     //-------------------------------------
151*cdf0e10cSrcweir 
152*cdf0e10cSrcweir     CResourceProvider_Impl( )
153*cdf0e10cSrcweir     {
154*cdf0e10cSrcweir         m_ResMgr = ResMgr::CreateResMgr( RES_NAME );
155*cdf0e10cSrcweir         m_OtherResMgr = ResMgr::CreateResMgr( OTHER_RES_NAME );
156*cdf0e10cSrcweir     }
157*cdf0e10cSrcweir 
158*cdf0e10cSrcweir     //-------------------------------------
159*cdf0e10cSrcweir     //
160*cdf0e10cSrcweir     //-------------------------------------
161*cdf0e10cSrcweir 
162*cdf0e10cSrcweir     ~CResourceProvider_Impl( )
163*cdf0e10cSrcweir     {
164*cdf0e10cSrcweir         delete m_ResMgr;
165*cdf0e10cSrcweir         delete m_OtherResMgr;
166*cdf0e10cSrcweir     }
167*cdf0e10cSrcweir 
168*cdf0e10cSrcweir     //-------------------------------------
169*cdf0e10cSrcweir     //
170*cdf0e10cSrcweir     //-------------------------------------
171*cdf0e10cSrcweir 
172*cdf0e10cSrcweir     NSString* getResString( sal_Int16 aId )
173*cdf0e10cSrcweir     {
174*cdf0e10cSrcweir         String   aResString;
175*cdf0e10cSrcweir         OUString aResOUString;
176*cdf0e10cSrcweir 
177*cdf0e10cSrcweir         const ::vos::OGuard aGuard( Application::GetSolarMutex() );
178*cdf0e10cSrcweir 
179*cdf0e10cSrcweir         try
180*cdf0e10cSrcweir         {
181*cdf0e10cSrcweir             OSL_ASSERT( m_ResMgr && m_OtherResMgr );
182*cdf0e10cSrcweir 
183*cdf0e10cSrcweir             // translate the control id to a resource id
184*cdf0e10cSrcweir             sal_Int16 aResId = CtrlIdToResId( aId );
185*cdf0e10cSrcweir             if ( aResId > -1 )
186*cdf0e10cSrcweir                 aResString = String( ResId( aResId, *m_ResMgr ) );
187*cdf0e10cSrcweir             else
188*cdf0e10cSrcweir             {
189*cdf0e10cSrcweir                 aResId = OtherCtrlIdToResId( aId );
190*cdf0e10cSrcweir                 if ( aResId > -1 ) {
191*cdf0e10cSrcweir                     aResString = String( ResId( aResId, *m_OtherResMgr ) );
192*cdf0e10cSrcweir                 }
193*cdf0e10cSrcweir             }
194*cdf0e10cSrcweir             if ( aResId > -1 )
195*cdf0e10cSrcweir                 aResOUString = OUString( aResString );
196*cdf0e10cSrcweir         }
197*cdf0e10cSrcweir         catch(...)
198*cdf0e10cSrcweir         {
199*cdf0e10cSrcweir         }
200*cdf0e10cSrcweir 
201*cdf0e10cSrcweir         return [NSString stringWithOUString:aResOUString];
202*cdf0e10cSrcweir     }
203*cdf0e10cSrcweir 
204*cdf0e10cSrcweir public:
205*cdf0e10cSrcweir     ResMgr* m_ResMgr;
206*cdf0e10cSrcweir     ResMgr* m_OtherResMgr;
207*cdf0e10cSrcweir };
208*cdf0e10cSrcweir 
209*cdf0e10cSrcweir //------------------------------------------------------------
210*cdf0e10cSrcweir //
211*cdf0e10cSrcweir //------------------------------------------------------------
212*cdf0e10cSrcweir 
213*cdf0e10cSrcweir CResourceProvider::CResourceProvider( ) :
214*cdf0e10cSrcweir     m_pImpl( new CResourceProvider_Impl() )
215*cdf0e10cSrcweir {
216*cdf0e10cSrcweir }
217*cdf0e10cSrcweir 
218*cdf0e10cSrcweir //------------------------------------------------------------
219*cdf0e10cSrcweir //
220*cdf0e10cSrcweir //------------------------------------------------------------
221*cdf0e10cSrcweir 
222*cdf0e10cSrcweir CResourceProvider::~CResourceProvider( )
223*cdf0e10cSrcweir {
224*cdf0e10cSrcweir     delete m_pImpl;
225*cdf0e10cSrcweir }
226*cdf0e10cSrcweir 
227*cdf0e10cSrcweir //------------------------------------------------------------
228*cdf0e10cSrcweir //
229*cdf0e10cSrcweir //------------------------------------------------------------
230*cdf0e10cSrcweir 
231*cdf0e10cSrcweir NSString* CResourceProvider::getResString( sal_Int32 aId )
232*cdf0e10cSrcweir {
233*cdf0e10cSrcweir     NSString* sImmutable = m_pImpl->getResString( aId );
234*cdf0e10cSrcweir     NSMutableString *sMutableString = [NSMutableString stringWithString:sImmutable];
235*cdf0e10cSrcweir     [sMutableString replaceOccurrencesOfString:@"~" withString:@"" options:0 range:NSMakeRange(0, [sMutableString length])];
236*cdf0e10cSrcweir 
237*cdf0e10cSrcweir     NSString *result = [NSString stringWithString:sMutableString];
238*cdf0e10cSrcweir 
239*cdf0e10cSrcweir     return result;
240*cdf0e10cSrcweir }
241