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 : #include <hintids.hxx>
21 : #include <rtl/textenc.h>
22 : #include <i18nlangtag/mslangid.hxx>
23 : #include <com/sun/star/i18n/ScriptType.hpp>
24 : #include <unotools/lingucfg.hxx>
25 : #include <fontcfg.hxx>
26 : #include <swmodule.hxx>
27 : #include <editeng/unolingu.hxx>
28 : #include <sfx2/printer.hxx>
29 : #include <editeng/flstitem.hxx>
30 : #include <svx/dlgutil.hxx>
31 : #include <editeng/fontitem.hxx>
32 : #include <editeng/langitem.hxx>
33 : #include <editeng/scripttypeitem.hxx>
34 : #include <swtypes.hxx>
35 : #include <ascfldlg.hxx>
36 : #include <shellio.hxx>
37 : #include <docsh.hxx>
38 : #include <doc.hxx>
39 : #include <IDocumentDeviceAccess.hxx>
40 :
41 : #include <dialog.hrc>
42 :
43 : #include <vcl/metric.hxx>
44 :
45 : using namespace ::com::sun::star;
46 :
47 : namespace
48 : {
49 :
50 : const sal_Unicode cDialogExtraDataClose = '}';
51 : const char sDialogImpExtraData[] = "EncImpDlg:{";
52 : const char sDialogExpExtraData[] = "EncExpDlg:{";
53 : const sal_Int32 nDialogExtraDataLen = 11; // 12345678901
54 :
55 : }
56 :
57 0 : SwAsciiFilterDlg::SwAsciiFilterDlg( vcl::Window* pParent, SwDocShell& rDocSh,
58 : SvStream* pStream )
59 : : SfxModalDialog(pParent, "AsciiFilterDialog", "modules/swriter/ui/asciifilterdialog.ui")
60 0 : , m_bSaveLineStatus(true)
61 : {
62 0 : get(m_pCharSetLB, "charset");
63 0 : m_pCharSetLB->SetStyle(m_pCharSetLB->GetStyle() | WB_SORT);
64 0 : get(m_pFontFT, "fontft");
65 0 : get(m_pFontLB, "font");
66 0 : m_pFontLB->SetStyle(m_pFontLB->GetStyle() | WB_SORT);
67 0 : get(m_pLanguageFT, "languageft");
68 0 : get(m_pLanguageLB, "language");
69 0 : m_pLanguageLB->SetStyle(m_pLanguageLB->GetStyle() | WB_SORT);
70 0 : get(m_pCRLF_RB, "crlf");
71 0 : get(m_pCR_RB, "cr");
72 0 : get(m_pLF_RB, "lf");
73 :
74 0 : SwAsciiOptions aOpt;
75 : {
76 : const OUString sFindNm = OUString::createFromAscii(
77 : pStream ? sDialogImpExtraData
78 0 : : sDialogExpExtraData);
79 0 : sal_Int32 nEnd, nStt = GetExtraData().indexOf( sFindNm );
80 0 : if( -1 != nStt )
81 : {
82 0 : nStt += nDialogExtraDataLen;
83 0 : nEnd = GetExtraData().indexOf( cDialogExtraDataClose, nStt );
84 0 : if( -1 != nEnd )
85 : {
86 0 : aOpt.ReadUserData( GetExtraData().copy( nStt, nEnd - nStt ));
87 0 : nStt -= nDialogExtraDataLen;
88 0 : GetExtraData() = GetExtraData().replaceAt( nStt, nEnd - nStt + 1, "" );
89 : }
90 0 : }
91 : }
92 :
93 : // read the first chars and check the charset, (language - with L&H)
94 0 : if( pStream )
95 : {
96 : char aBuffer[ 4098 ];
97 0 : const sal_uLong nOldPos = pStream->Tell();
98 0 : const sal_uLong nBytesRead = pStream->Read( aBuffer, 4096 );
99 0 : pStream->Seek( nOldPos );
100 :
101 0 : if( nBytesRead <= 4096 )
102 : {
103 0 : aBuffer[ nBytesRead ] = '0';
104 0 : aBuffer[ nBytesRead+1 ] = '0';
105 : }
106 :
107 0 : bool bCR = false, bLF = false, bNullChar = false;
108 0 : for( sal_uLong nCnt = 0; nCnt < nBytesRead; ++nCnt )
109 0 : switch( aBuffer[ nCnt ] )
110 : {
111 0 : case 0x0: bNullChar = true; break;
112 0 : case 0xA: bLF = true; break;
113 0 : case 0xD: bCR = true; break;
114 : case 0xC:
115 : case 0x1A:
116 0 : case 0x9: break;
117 0 : default: break;
118 : }
119 :
120 0 : if( !bNullChar )
121 : {
122 0 : if( bCR )
123 : {
124 0 : if( bLF )
125 : {
126 0 : aOpt.SetParaFlags( LINEEND_CRLF );
127 : }
128 : else
129 : {
130 0 : aOpt.SetParaFlags( LINEEND_CR );
131 : }
132 : }
133 0 : else if( bLF )
134 : {
135 0 : aOpt.SetParaFlags( LINEEND_LF );
136 : }
137 : }
138 :
139 0 : const sal_uInt16 nAppScriptType = SvtLanguageOptions::GetI18NScriptTypeOfLanguage( GetAppLanguage() );
140 0 : SwDoc* pDoc = rDocSh.GetDoc();
141 :
142 : // initialize language
143 : {
144 0 : if( !aOpt.GetLanguage() )
145 : {
146 0 : if(pDoc)
147 : {
148 0 : const sal_uInt16 nWhich = GetWhichOfScript( RES_CHRATR_LANGUAGE, nAppScriptType);
149 : aOpt.SetLanguage( static_cast<const SvxLanguageItem&>(pDoc->
150 0 : GetDefault( nWhich )).GetLanguage());
151 : }
152 : else
153 : {
154 0 : SvtLinguOptions aLinguOpt;
155 0 : SvtLinguConfig().GetOptions( aLinguOpt );
156 0 : switch(nAppScriptType)
157 : {
158 : case css::i18n::ScriptType::ASIAN:
159 0 : aOpt.SetLanguage(MsLangId::resolveSystemLanguageByScriptType(aLinguOpt.nDefaultLanguage_CJK, css::i18n::ScriptType::ASIAN));
160 0 : break;
161 : case css::i18n::ScriptType::COMPLEX:
162 0 : aOpt.SetLanguage(MsLangId::resolveSystemLanguageByScriptType(aLinguOpt.nDefaultLanguage_CTL, css::i18n::ScriptType::COMPLEX));
163 0 : break;
164 : //SvtScriptType::LATIN:
165 : default:
166 0 : aOpt.SetLanguage(MsLangId::resolveSystemLanguageByScriptType(aLinguOpt.nDefaultLanguage, css::i18n::ScriptType::LATIN));
167 0 : }
168 : }
169 : }
170 :
171 0 : m_pLanguageLB->SetLanguageList( SvxLanguageListFlags::ALL, true, false );
172 0 : m_pLanguageLB->SelectLanguage( aOpt.GetLanguage() );
173 : }
174 :
175 : {
176 0 : bool bDelPrinter = false;
177 0 : VclPtr<SfxPrinter> pPrt = pDoc ? pDoc->getIDocumentDeviceAccess().getPrinter(false) : 0;
178 0 : if( !pPrt )
179 : {
180 0 : SfxItemSet* pSet = new SfxItemSet( rDocSh.GetPool(),
181 : SID_PRINTER_NOTFOUND_WARN, SID_PRINTER_NOTFOUND_WARN,
182 : SID_PRINTER_CHANGESTODOC, SID_PRINTER_CHANGESTODOC,
183 0 : 0 );
184 0 : pPrt = VclPtr<SfxPrinter>::Create( pSet );
185 0 : bDelPrinter = true;
186 : }
187 :
188 : // get the set of disctinct available family names
189 0 : std::set< OUString > aFontNames;
190 0 : int nFontNames = pPrt->GetDevFontCount();
191 0 : for( int i = 0; i < nFontNames; i++ )
192 : {
193 0 : vcl::FontInfo aInf( pPrt->GetDevFont( i ) );
194 0 : aFontNames.insert( aInf.GetName() );
195 0 : }
196 :
197 : // insert into listbox
198 0 : for( std::set< OUString >::const_iterator it = aFontNames.begin();
199 0 : it != aFontNames.end(); ++it )
200 : {
201 0 : m_pFontLB->InsertEntry( *it );
202 : }
203 :
204 0 : if( aOpt.GetFontName().isEmpty() )
205 : {
206 0 : LanguageType eLang = aOpt.GetLanguage();
207 0 : vcl::Font aTmpFont(OutputDevice::GetDefaultFont(DefaultFontType::FIXED, eLang, GetDefaultFontFlags::OnlyOne, pPrt));
208 0 : aOpt.SetFontName(aTmpFont.GetName());
209 : }
210 :
211 0 : m_pFontLB->SelectEntry( aOpt.GetFontName() );
212 :
213 0 : if( bDelPrinter )
214 0 : pPrt.disposeAndClear();
215 : }
216 :
217 : }
218 : else
219 : {
220 : // hide the unused Controls for Export
221 0 : m_pFontFT->Hide();
222 0 : m_pFontLB->Hide();
223 0 : m_pLanguageFT->Hide();
224 0 : m_pLanguageLB->Hide();
225 : }
226 :
227 : // initialize character set
228 0 : m_pCharSetLB->FillFromTextEncodingTable( pStream != NULL );
229 0 : m_pCharSetLB->SelectTextEncoding( aOpt.GetCharSet() );
230 :
231 0 : m_pCharSetLB->SetSelectHdl( LINK( this, SwAsciiFilterDlg, CharSetSelHdl ));
232 0 : m_pCRLF_RB->SetToggleHdl( LINK( this, SwAsciiFilterDlg, LineEndHdl ));
233 0 : m_pLF_RB->SetToggleHdl( LINK( this, SwAsciiFilterDlg, LineEndHdl ));
234 0 : m_pCR_RB->SetToggleHdl( LINK( this, SwAsciiFilterDlg, LineEndHdl ));
235 :
236 0 : SetCRLF( aOpt.GetParaFlags() );
237 :
238 0 : m_pCRLF_RB->SaveValue();
239 0 : m_pLF_RB->SaveValue();
240 0 : m_pCR_RB->SaveValue();
241 0 : }
242 :
243 0 : SwAsciiFilterDlg::~SwAsciiFilterDlg()
244 : {
245 0 : disposeOnce();
246 0 : }
247 :
248 0 : void SwAsciiFilterDlg::dispose()
249 : {
250 0 : m_pCharSetLB.clear();
251 0 : m_pFontFT.clear();
252 0 : m_pFontLB.clear();
253 0 : m_pLanguageFT.clear();
254 0 : m_pLanguageLB.clear();
255 0 : m_pCRLF_RB.clear();
256 0 : m_pCR_RB.clear();
257 0 : m_pLF_RB.clear();
258 0 : SfxModalDialog::dispose();
259 0 : }
260 :
261 :
262 0 : void SwAsciiFilterDlg::FillOptions( SwAsciiOptions& rOptions )
263 : {
264 0 : sal_uLong nCCode = m_pCharSetLB->GetSelectTextEncoding();
265 0 : OUString sFont;
266 0 : LanguageType nLng = 0;
267 0 : if( m_pFontLB->IsVisible() )
268 : {
269 0 : sFont = m_pFontLB->GetSelectEntry();
270 0 : nLng = m_pLanguageLB->GetSelectLanguage();
271 : }
272 :
273 0 : rOptions.SetFontName( sFont );
274 0 : rOptions.SetCharSet( rtl_TextEncoding( nCCode ) );
275 0 : rOptions.SetLanguage( sal_uInt16( nLng ) );
276 0 : rOptions.SetParaFlags( GetCRLF() );
277 :
278 : // save the user settings
279 0 : OUString sData;
280 0 : rOptions.WriteUserData( sData );
281 0 : if (!sData.isEmpty())
282 : {
283 : const OUString sFindNm = OUString::createFromAscii(
284 0 : m_pFontLB->IsVisible() ? sDialogImpExtraData
285 0 : : sDialogExpExtraData);
286 0 : sal_Int32 nEnd, nStt = GetExtraData().indexOf( sFindNm );
287 0 : if( -1 != nStt )
288 : {
289 : // called twice, so remove "old" settings
290 0 : nEnd = GetExtraData().indexOf( cDialogExtraDataClose,
291 0 : nStt + nDialogExtraDataLen );
292 0 : if( -1 != nEnd )
293 0 : GetExtraData() = GetExtraData().replaceAt( nStt, nEnd - nStt + 1, "" );
294 : }
295 0 : GetExtraData() += sFindNm + sData + OUStringLiteral1<cDialogExtraDataClose>();
296 0 : }
297 0 : }
298 :
299 0 : void SwAsciiFilterDlg::SetCRLF( LineEnd eEnd )
300 : {
301 0 : switch( eEnd )
302 : {
303 0 : case LINEEND_CR: m_pCR_RB->Check(); break;
304 0 : case LINEEND_CRLF: m_pCRLF_RB->Check(); break;
305 0 : case LINEEND_LF: m_pLF_RB->Check(); break;
306 : }
307 0 : }
308 :
309 0 : LineEnd SwAsciiFilterDlg::GetCRLF() const
310 : {
311 : LineEnd eEnd;
312 0 : if( m_pCR_RB->IsChecked() )
313 0 : eEnd = LINEEND_CR;
314 0 : else if( m_pLF_RB->IsChecked() )
315 0 : eEnd = LINEEND_LF;
316 : else
317 0 : eEnd = LINEEND_CRLF;
318 0 : return eEnd;
319 : }
320 :
321 0 : IMPL_LINK( SwAsciiFilterDlg, CharSetSelHdl, SvxTextEncodingBox*, pBox )
322 : {
323 0 : LineEnd eOldEnd = GetCRLF(), eEnd = (LineEnd)-1;
324 0 : LanguageType nLng = m_pFontLB->IsVisible()
325 0 : ? m_pLanguageLB->GetSelectLanguage()
326 0 : : LANGUAGE_SYSTEM,
327 0 : nOldLng = nLng;
328 :
329 0 : rtl_TextEncoding nChrSet = pBox->GetSelectTextEncoding();
330 0 : if( nChrSet == osl_getThreadTextEncoding() )
331 0 : eEnd = GetSystemLineEnd();
332 : else
333 : {
334 0 : switch( nChrSet )
335 : {
336 : case RTL_TEXTENCODING_MS_1252:
337 : #ifdef UNX
338 0 : eEnd = LINEEND_LF;
339 : #else
340 : eEnd = LINEEND_CRLF; // ANSI
341 : #endif
342 0 : break;
343 :
344 : case RTL_TEXTENCODING_APPLE_ROMAN: // MAC
345 0 : eEnd = LINEEND_CR;
346 0 : break;
347 :
348 : case RTL_TEXTENCODING_IBM_850: // DOS
349 0 : eEnd = LINEEND_CRLF;
350 0 : break;
351 :
352 : case RTL_TEXTENCODING_APPLE_ARABIC:
353 : case RTL_TEXTENCODING_APPLE_CENTEURO:
354 : case RTL_TEXTENCODING_APPLE_CROATIAN:
355 : case RTL_TEXTENCODING_APPLE_CYRILLIC:
356 : case RTL_TEXTENCODING_APPLE_DEVANAGARI:
357 : case RTL_TEXTENCODING_APPLE_FARSI:
358 : case RTL_TEXTENCODING_APPLE_GREEK:
359 : case RTL_TEXTENCODING_APPLE_GUJARATI:
360 : case RTL_TEXTENCODING_APPLE_GURMUKHI:
361 : case RTL_TEXTENCODING_APPLE_HEBREW:
362 : case RTL_TEXTENCODING_APPLE_ICELAND:
363 : case RTL_TEXTENCODING_APPLE_ROMANIAN:
364 : case RTL_TEXTENCODING_APPLE_THAI:
365 : case RTL_TEXTENCODING_APPLE_TURKISH:
366 : case RTL_TEXTENCODING_APPLE_UKRAINIAN:
367 : case RTL_TEXTENCODING_APPLE_CHINSIMP:
368 : case RTL_TEXTENCODING_APPLE_CHINTRAD:
369 : case RTL_TEXTENCODING_APPLE_JAPANESE:
370 : case RTL_TEXTENCODING_APPLE_KOREAN:
371 0 : eEnd = LINEEND_CR;
372 0 : break;
373 : }
374 : }
375 :
376 0 : m_bSaveLineStatus = false;
377 0 : if( eEnd != (LineEnd)-1 ) // changed?
378 : {
379 0 : if( eOldEnd != eEnd )
380 0 : SetCRLF( eEnd );
381 : }
382 : else
383 : {
384 : // restore old user choice (not the automatic!)
385 0 : m_pCRLF_RB->Check( m_pCRLF_RB->GetSavedValue() );
386 0 : m_pCR_RB->Check( m_pCR_RB->GetSavedValue() );
387 0 : m_pLF_RB->Check( m_pLF_RB->GetSavedValue() );
388 : }
389 0 : m_bSaveLineStatus = true;
390 :
391 0 : if( nOldLng != nLng && m_pFontLB->IsVisible() )
392 0 : m_pLanguageLB->SelectLanguage( nLng );
393 :
394 0 : return 0;
395 : }
396 :
397 0 : IMPL_LINK( SwAsciiFilterDlg, LineEndHdl, RadioButton*, pBtn )
398 : {
399 0 : if( m_bSaveLineStatus )
400 0 : pBtn->SaveValue();
401 0 : return 0;
402 0 : }
403 :
404 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|