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