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 :
20 : #undef SC_DLLIMPLEMENTATION
21 :
22 : #include "scuiimoptdlg.hxx"
23 : #include "tabvwsh.hxx"
24 : #include "scresid.hxx"
25 : #include "sc.hrc"
26 : #include <comphelper/string.hxx>
27 : #include <osl/thread.h>
28 : #include <rtl/tencinfo.h>
29 :
30 : // ScDelimiterTable
31 :
32 0 : class ScDelimiterTable
33 : {
34 : public:
35 0 : ScDelimiterTable( const OUString& rDelTab )
36 : : theDelTab ( rDelTab ),
37 : cSep ( '\t' ),
38 0 : nCount ( comphelper::string::getTokenCount(rDelTab, '\t') ),
39 0 : nIter ( 0 )
40 0 : {}
41 :
42 : sal_uInt16 GetCode( const OUString& rDelimiter ) const;
43 : OUString GetDelimiter( sal_Unicode nCode ) const;
44 :
45 0 : OUString FirstDel() { nIter = 0; return theDelTab.getToken( nIter, cSep ); }
46 0 : OUString NextDel() { nIter +=2; return theDelTab.getToken( nIter, cSep ); }
47 :
48 : private:
49 : const OUString theDelTab;
50 : const sal_Unicode cSep;
51 : const sal_Int32 nCount;
52 : sal_Int32 nIter;
53 : };
54 :
55 0 : sal_uInt16 ScDelimiterTable::GetCode( const OUString& rDel ) const
56 : {
57 0 : sal_Unicode nCode = 0;
58 :
59 0 : if ( nCount >= 2 )
60 : {
61 0 : sal_Int32 i = 0;
62 0 : while ( i<nCount )
63 : {
64 0 : if ( rDel == theDelTab.getToken( i, cSep ) )
65 : {
66 0 : nCode = (sal_Unicode) theDelTab.getToken( i+1, cSep ).toInt32();
67 0 : i = nCount;
68 : }
69 : else
70 0 : i += 2;
71 : }
72 : }
73 :
74 0 : return nCode;
75 : }
76 :
77 0 : OUString ScDelimiterTable::GetDelimiter( sal_Unicode nCode ) const
78 : {
79 0 : OUString aStrDel;
80 :
81 0 : if ( nCount >= 2 )
82 : {
83 0 : sal_Int32 i = 0;
84 0 : while ( i<nCount )
85 : {
86 0 : if ( nCode == (sal_Unicode) theDelTab.getToken( i+1, cSep ).toInt32() )
87 : {
88 0 : aStrDel = theDelTab.getToken( i, cSep );
89 0 : i = nCount;
90 : }
91 : else
92 0 : i += 2;
93 : }
94 : }
95 :
96 0 : return aStrDel;
97 : }
98 :
99 : // ScImportOptionsDlg
100 :
101 0 : ScImportOptionsDlg::ScImportOptionsDlg(
102 : vcl::Window* pParent,
103 : bool bAscii,
104 : const ScImportOptions* pOptions,
105 : const OUString* pStrTitle,
106 : bool bMultiByte,
107 : bool bOnlyDbtoolsEncodings,
108 : bool bImport )
109 : : ModalDialog ( pParent, "ImOptDialog",
110 0 : "modules/scalc/ui/imoptdialog.ui" )
111 : {
112 0 : get(m_pFieldFrame, "fieldframe");
113 0 : get(m_pFtCharset, "charsetft");
114 0 : if (bAscii)
115 0 : get(m_pLbCharset, "charsetdropdown");
116 : else
117 : {
118 0 : get(m_pLbCharset, "charsetlist");
119 0 : m_pLbCharset->set_height_request(6 * m_pLbCharset->GetTextHeight());
120 : }
121 0 : m_pLbCharset->SetStyle(m_pLbCharset->GetStyle() | WB_SORT);
122 0 : m_pLbCharset->Show();
123 0 : get(m_pFtFieldSep, "fieldft");
124 0 : get(m_pEdFieldSep, "field");
125 0 : get(m_pFtTextSep, "textft");
126 0 : get(m_pEdTextSep, "text");
127 0 : get(m_pCbShown, "asshown");
128 0 : get(m_pCbFormulas, "formulas");
129 0 : get(m_pCbQuoteAll, "quoteall");
130 0 : get(m_pCbFixed, "fixedwidth");
131 0 : get(m_pBtnOk, "ok");
132 :
133 0 : OUString sFieldSep(SC_RESSTR(SCSTR_FIELDSEP));
134 0 : sFieldSep = sFieldSep.replaceFirst( "%TAB", SC_RESSTR(SCSTR_FIELDSEP_TAB) );
135 0 : sFieldSep = sFieldSep.replaceFirst( "%SPACE", SC_RESSTR(SCSTR_FIELDSEP_SPACE) );
136 :
137 : // im Ctor-Initializer nicht moeglich (MSC kann das nicht):
138 0 : pFieldSepTab = new ScDelimiterTable( sFieldSep );
139 0 : pTextSepTab = new ScDelimiterTable( OUString(ScResId(SCSTR_TEXTSEP)) );
140 :
141 0 : OUString aStr = pFieldSepTab->FirstDel();
142 : sal_Unicode nCode;
143 :
144 0 : while ( !aStr.isEmpty() )
145 : {
146 0 : m_pEdFieldSep->InsertEntry( aStr );
147 0 : aStr = pFieldSepTab->NextDel();
148 : }
149 :
150 0 : aStr = pTextSepTab->FirstDel();
151 :
152 0 : while ( !aStr.isEmpty() )
153 : {
154 0 : m_pEdTextSep->InsertEntry( aStr );
155 0 : aStr = pTextSepTab->NextDel();
156 : }
157 :
158 0 : m_pEdFieldSep->SetText( m_pEdFieldSep->GetEntry(0) );
159 0 : m_pEdTextSep->SetText( m_pEdTextSep->GetEntry(0) );
160 :
161 0 : if ( bOnlyDbtoolsEncodings )
162 : {
163 : // Even dBase export allows multibyte now
164 0 : if ( bMultiByte )
165 0 : m_pLbCharset->FillFromDbTextEncodingMap( bImport );
166 : else
167 0 : m_pLbCharset->FillFromDbTextEncodingMap( bImport, RTL_TEXTENCODING_INFO_MULTIBYTE );
168 : }
169 0 : else if ( !bAscii )
170 : { //!TODO: Unicode would need work in each filter
171 0 : if ( bMultiByte )
172 0 : m_pLbCharset->FillFromTextEncodingTable( bImport, RTL_TEXTENCODING_INFO_UNICODE );
173 : else
174 : m_pLbCharset->FillFromTextEncodingTable( bImport, RTL_TEXTENCODING_INFO_UNICODE |
175 0 : RTL_TEXTENCODING_INFO_MULTIBYTE );
176 : }
177 : else
178 : {
179 0 : if ( pOptions )
180 : {
181 0 : nCode = pOptions->nFieldSepCode;
182 0 : aStr = pFieldSepTab->GetDelimiter( nCode );
183 :
184 0 : if ( aStr.isEmpty() )
185 0 : m_pEdFieldSep->SetText( OUString((sal_Unicode)nCode) );
186 : else
187 0 : m_pEdFieldSep->SetText( aStr );
188 :
189 0 : nCode = pOptions->nTextSepCode;
190 0 : aStr = pTextSepTab->GetDelimiter( nCode );
191 :
192 0 : if ( aStr.isEmpty() )
193 0 : m_pEdTextSep->SetText( OUString((sal_Unicode)nCode) );
194 : else
195 0 : m_pEdTextSep->SetText( aStr );
196 : }
197 : // all encodings allowed, even Unicode
198 0 : m_pLbCharset->FillFromTextEncodingTable( bImport );
199 : }
200 :
201 0 : if( bAscii )
202 : {
203 0 : m_pCbFixed->Show();
204 0 : m_pCbFixed->SetClickHdl( LINK( this, ScImportOptionsDlg, FixedWidthHdl ) );
205 0 : m_pCbFixed->Check( false );
206 0 : m_pCbShown->Show();
207 0 : m_pCbShown->Check( true );
208 0 : m_pCbQuoteAll->Show();
209 0 : m_pCbQuoteAll->Check( false );
210 0 : m_pCbFormulas->Show();
211 0 : ScTabViewShell* pViewSh = PTR_CAST( ScTabViewShell, SfxViewShell::Current());
212 0 : bool bFormulas = pViewSh &&
213 0 : pViewSh->GetViewData().GetOptions().GetOption( VOPT_FORMULAS);
214 0 : m_pCbFormulas->Check( bFormulas );
215 : }
216 : else
217 : {
218 0 : m_pFieldFrame->set_label(m_pFtCharset->GetText());
219 0 : m_pFtFieldSep->Hide();
220 0 : m_pFtTextSep->Hide();
221 0 : m_pFtCharset->Hide();
222 0 : m_pEdFieldSep->Hide();
223 0 : m_pEdTextSep->Hide();
224 0 : m_pCbFixed->Hide();
225 0 : m_pCbShown->Hide();
226 0 : m_pCbQuoteAll->Hide();
227 0 : m_pCbFormulas->Hide();
228 0 : m_pLbCharset->GrabFocus();
229 0 : m_pLbCharset->SetDoubleClickHdl( LINK( this, ScImportOptionsDlg, DoubleClickHdl ) );
230 : }
231 :
232 : m_pLbCharset->SelectTextEncoding( pOptions ? pOptions->eCharSet :
233 0 : osl_getThreadTextEncoding() );
234 :
235 : // optionaler Titel:
236 0 : if ( pStrTitle )
237 0 : SetText( *pStrTitle );
238 0 : }
239 :
240 0 : ScImportOptionsDlg::~ScImportOptionsDlg()
241 : {
242 0 : disposeOnce();
243 0 : }
244 :
245 0 : void ScImportOptionsDlg::dispose()
246 : {
247 0 : delete pFieldSepTab;
248 0 : delete pTextSepTab;
249 0 : m_pFieldFrame.clear();
250 0 : m_pFtCharset.clear();
251 0 : m_pLbCharset.clear();
252 0 : m_pFtFieldSep.clear();
253 0 : m_pEdFieldSep.clear();
254 0 : m_pFtTextSep.clear();
255 0 : m_pEdTextSep.clear();
256 0 : m_pCbShown.clear();
257 0 : m_pCbFormulas.clear();
258 0 : m_pCbQuoteAll.clear();
259 0 : m_pCbFixed.clear();
260 0 : m_pBtnOk.clear();
261 0 : ModalDialog::dispose();
262 0 : }
263 :
264 0 : void ScImportOptionsDlg::GetImportOptions( ScImportOptions& rOptions ) const
265 : {
266 0 : rOptions.SetTextEncoding( m_pLbCharset->GetSelectTextEncoding() );
267 :
268 0 : if ( m_pCbFixed->IsVisible() )
269 : {
270 0 : rOptions.nFieldSepCode = GetCodeFromCombo( *m_pEdFieldSep );
271 0 : rOptions.nTextSepCode = GetCodeFromCombo( *m_pEdTextSep );
272 0 : rOptions.bFixedWidth = m_pCbFixed->IsChecked();
273 0 : rOptions.bSaveAsShown = m_pCbShown->IsChecked();
274 0 : rOptions.bQuoteAllText = m_pCbQuoteAll->IsChecked();
275 0 : rOptions.bSaveFormulas = m_pCbFormulas->IsChecked();
276 : }
277 0 : }
278 :
279 0 : sal_uInt16 ScImportOptionsDlg::GetCodeFromCombo( const ComboBox& rEd ) const
280 : {
281 : ScDelimiterTable* pTab;
282 0 : OUString aStr( rEd.GetText() );
283 : sal_uInt16 nCode;
284 :
285 0 : if ( &rEd == m_pEdTextSep )
286 0 : pTab = pTextSepTab;
287 : else
288 0 : pTab = pFieldSepTab;
289 :
290 0 : if ( aStr.isEmpty() )
291 : {
292 0 : nCode = 0; // kein Trennzeichen
293 : }
294 : else
295 : {
296 0 : nCode = pTab->GetCode( aStr );
297 :
298 0 : if ( nCode == 0 )
299 0 : nCode = (sal_uInt16)aStr[0];
300 : }
301 :
302 0 : return nCode;
303 : }
304 :
305 0 : IMPL_LINK( ScImportOptionsDlg, FixedWidthHdl, CheckBox*, pCheckBox )
306 : {
307 0 : if (pCheckBox == m_pCbFixed)
308 : {
309 0 : bool bEnable = !m_pCbFixed->IsChecked();
310 0 : m_pFtFieldSep->Enable( bEnable );
311 0 : m_pEdFieldSep->Enable( bEnable );
312 0 : m_pFtTextSep->Enable( bEnable );
313 0 : m_pEdTextSep->Enable( bEnable );
314 0 : m_pCbShown->Enable( bEnable );
315 0 : m_pCbQuoteAll->Enable( bEnable );
316 : }
317 0 : return 0;
318 : }
319 :
320 0 : IMPL_LINK( ScImportOptionsDlg, DoubleClickHdl, ListBox*, pLb )
321 : {
322 0 : if (pLb == m_pLbCharset)
323 : {
324 0 : m_pBtnOk->Click();
325 : }
326 0 : return 0;
327 0 : }
328 :
329 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|