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 <i18npool/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 :
40 : #include <dialog.hrc>
41 : #include <ascfldlg.hrc>
42 :
43 : #include "vcl/metric.hxx"
44 :
45 :
46 : using namespace ::com::sun::star;
47 :
48 : const sal_Unicode cDialogExtraDataClose = '}';
49 : const char sDialogImpExtraData[] = "EncImpDlg:{";
50 : const char sDialogExpExtraData[] = "EncExpDlg:{";
51 : const sal_uInt16 nDialogExtraDataLen = 11; // 12345678901
52 :
53 0 : SwAsciiFilterDlg::SwAsciiFilterDlg( Window* pParent, SwDocShell& rDocSh,
54 : SvStream* pStream )
55 : : SfxModalDialog( pParent, SW_RES( DLG_ASCII_FILTER )),
56 : aFL( this, SW_RES( FL_1 )),
57 : aCharSetFT( this, SW_RES( FT_CHARSET )),
58 : aCharSetLB( this, SW_RES( LB_CHARSET )),
59 : aFontFT( this, SW_RES( FT_FONT )),
60 : aFontLB( this, SW_RES( LB_FONT )),
61 : aLanguageFT( this, SW_RES( FT_LANGUAGE )),
62 : aLanguageLB( this, SW_RES( LB_LANGUAGE )),
63 : aCRLF_FT( this, SW_RES( FT_CRLF )),
64 : aCRLF_RB( this, SW_RES( RB_CRLF )),
65 : aCR_RB( this, SW_RES( RB_CR )),
66 : aLF_RB( this, SW_RES( RB_LF )),
67 : aOkPB( this, SW_RES( PB_OK )),
68 : aCancelPB( this, SW_RES( PB_CANCEL )),
69 : aHelpPB( this, SW_RES( PB_HELP )),
70 : sSystemCharSet( SW_RES( STR_SYS_CHARSET )),
71 0 : bSaveLineStatus( sal_True )
72 : {
73 0 : FreeResource();
74 :
75 0 : SwAsciiOptions aOpt;
76 : {
77 : const rtl::OUString sFindNm = rtl::OUString::createFromAscii(
78 : pStream ? sDialogImpExtraData
79 0 : : sDialogExpExtraData);
80 0 : sal_uInt16 nEnd, nStt = GetExtraData().Search( sFindNm );
81 0 : if( STRING_NOTFOUND != nStt )
82 : {
83 0 : nStt += nDialogExtraDataLen;
84 0 : nEnd = GetExtraData().Search( cDialogExtraDataClose, nStt );
85 0 : if( STRING_NOTFOUND != nEnd )
86 : {
87 0 : aOpt.ReadUserData( GetExtraData().Copy( nStt, nEnd - nStt ));
88 0 : nStt -= nDialogExtraDataLen;
89 0 : GetExtraData().Erase( nStt, nEnd - nStt + 1 );
90 : }
91 0 : }
92 : }
93 :
94 : // read the first chars and check the charset, (language - with L&H)
95 0 : if( pStream )
96 : {
97 : char aBuffer[ 4098 ];
98 0 : sal_uLong nOldPos = pStream->Tell();
99 0 : sal_uLong nBytesRead = pStream->Read( aBuffer, 4096 );
100 0 : pStream->Seek( nOldPos );
101 :
102 0 : if( nBytesRead <= 4096 )
103 : {
104 0 : aBuffer[ nBytesRead ] = '0';
105 0 : aBuffer[ nBytesRead+1 ] = '0';
106 : }
107 :
108 0 : sal_Bool bCR = sal_False, bLF = sal_False, bNullChar = sal_False;
109 0 : for( sal_uInt16 nCnt = 0; nCnt < nBytesRead; ++nCnt )
110 0 : switch( aBuffer[ nCnt ] )
111 : {
112 0 : case 0x0: bNullChar = sal_True; break;
113 0 : case 0xA: bLF = sal_True; break;
114 0 : case 0xD: bCR = sal_True; break;
115 : case 0xC:
116 : case 0x1A:
117 0 : case 0x9: break;
118 0 : default: break;
119 : }
120 :
121 0 : if( !bNullChar )
122 : {
123 0 : if( bCR )
124 : {
125 0 : if( bLF )
126 : {
127 0 : aOpt.SetParaFlags( LINEEND_CRLF );
128 : }
129 : else
130 : {
131 0 : aOpt.SetParaFlags( LINEEND_CR );
132 : }
133 : }
134 0 : else if( bLF )
135 : {
136 0 : aOpt.SetParaFlags( LINEEND_LF );
137 : }
138 : }
139 :
140 0 : sal_uInt16 nAppScriptType = GetI18NScriptTypeOfLanguage( (sal_uInt16)GetAppLanguage() );
141 0 : SwDoc* pDoc = rDocSh.GetDoc();
142 :
143 : // initialise language
144 : {
145 0 : if( !aOpt.GetLanguage() )
146 : {
147 0 : if(pDoc)
148 : {
149 0 : sal_uInt16 nWhich = GetWhichOfScript( RES_CHRATR_LANGUAGE, nAppScriptType);
150 : aOpt.SetLanguage( ((SvxLanguageItem&)pDoc->
151 0 : GetDefault( nWhich )).GetLanguage());
152 : }
153 : else
154 : {
155 0 : SvtLinguOptions aLinguOpt;
156 0 : SvtLinguConfig().GetOptions( aLinguOpt );
157 0 : switch(nAppScriptType)
158 : {
159 : case SCRIPTTYPE_ASIAN:
160 0 : aOpt.SetLanguage(MsLangId::resolveSystemLanguageByScriptType(aLinguOpt.nDefaultLanguage_CJK, SCRIPTTYPE_ASIAN));
161 0 : break;
162 : case SCRIPTTYPE_COMPLEX:
163 0 : aOpt.SetLanguage(MsLangId::resolveSystemLanguageByScriptType(aLinguOpt.nDefaultLanguage_CTL, SCRIPTTYPE_COMPLEX));
164 0 : break;
165 : //SCRIPTTYPE_LATIN:
166 : default:
167 0 : aOpt.SetLanguage(MsLangId::resolveSystemLanguageByScriptType(aLinguOpt.nDefaultLanguage, SCRIPTTYPE_LATIN));
168 0 : }
169 : }
170 : }
171 :
172 0 : aLanguageLB.SetLanguageList( LANG_LIST_ALL, sal_True, sal_False );
173 0 : aLanguageLB.SelectLanguage( aOpt.GetLanguage() );
174 : }
175 :
176 : {
177 0 : bool bDelPrinter = false;
178 0 : SfxPrinter* pPrt = pDoc ? pDoc->getPrinter(false) : 0;
179 0 : if( !pPrt )
180 : {
181 0 : SfxItemSet* pSet = new SfxItemSet( rDocSh.GetPool(),
182 : SID_PRINTER_NOTFOUND_WARN, SID_PRINTER_NOTFOUND_WARN,
183 : SID_PRINTER_CHANGESTODOC, SID_PRINTER_CHANGESTODOC,
184 0 : 0 );
185 0 : pPrt = new SfxPrinter( pSet );
186 0 : bDelPrinter = true;
187 : }
188 :
189 : // get the set of disctinct available family names
190 0 : std::set< String > aFontNames;
191 0 : int nFontNames = pPrt->GetDevFontCount();
192 0 : for( int i = 0; i < nFontNames; i++ )
193 : {
194 0 : FontInfo aInf( pPrt->GetDevFont( i ) );
195 0 : aFontNames.insert( aInf.GetName() );
196 0 : }
197 :
198 : // insert to listbox
199 0 : for( std::set< String >::const_iterator it = aFontNames.begin();
200 0 : it != aFontNames.end(); ++it )
201 : {
202 0 : aFontLB.InsertEntry( *it );
203 : }
204 :
205 0 : if( !aOpt.GetFontName().Len() )
206 : {
207 0 : LanguageType eLang = aOpt.GetLanguage();
208 0 : Font aTmpFont(OutputDevice::GetDefaultFont(DEFAULTFONT_FIXED, eLang, DEFAULTFONT_FLAGS_ONLYONE, pPrt));
209 0 : aOpt.SetFontName(aTmpFont.GetName());
210 : }
211 :
212 0 : aFontLB.SelectEntry( aOpt.GetFontName() );
213 :
214 0 : if( bDelPrinter )
215 0 : delete pPrt;
216 : }
217 :
218 :
219 : }
220 : else
221 : {
222 : // hide the used Control for the Export and move the
223 : // other behind the charset controls
224 0 : aFontFT.Hide();
225 0 : aFontLB.Hide();
226 0 : aLanguageFT.Hide();
227 0 : aLanguageLB.Hide();
228 :
229 0 : long nY = aFontFT.GetPosPixel().Y() + 1;
230 0 : Point aPos( aCRLF_FT.GetPosPixel() ); aPos.Y() = nY;
231 0 : aCRLF_FT.SetPosPixel( aPos );
232 :
233 0 : aPos = aCRLF_RB.GetPosPixel(); aPos.Y() = nY;
234 0 : aCRLF_RB.SetPosPixel( aPos );
235 :
236 0 : aPos = aCR_RB.GetPosPixel(); aPos.Y() = nY;
237 0 : aCR_RB.SetPosPixel( aPos );
238 :
239 0 : aPos = aLF_RB.GetPosPixel(); aPos.Y() = nY;
240 0 : aLF_RB.SetPosPixel( aPos );
241 :
242 0 : Size aSize = GetSizePixel();
243 0 : Size aTmpSz( 6, 6 );
244 0 : aTmpSz = LogicToPixel(aTmpSz, MAP_APPFONT);
245 0 : aSize.Height() = aHelpPB.GetPosPixel().Y() +
246 0 : aHelpPB.GetSizePixel().Height() + aTmpSz.Height();
247 0 : SetSizePixel( aSize );
248 : }
249 :
250 : // initialise character set
251 0 : aCharSetLB.FillFromTextEncodingTable( pStream != NULL );
252 0 : aCharSetLB.SelectTextEncoding( aOpt.GetCharSet() );
253 :
254 0 : aCharSetLB.SetSelectHdl( LINK( this, SwAsciiFilterDlg, CharSetSelHdl ));
255 0 : aCRLF_RB.SetToggleHdl( LINK( this, SwAsciiFilterDlg, LineEndHdl ));
256 0 : aLF_RB.SetToggleHdl( LINK( this, SwAsciiFilterDlg, LineEndHdl ));
257 0 : aCR_RB.SetToggleHdl( LINK( this, SwAsciiFilterDlg, LineEndHdl ));
258 :
259 0 : SetCRLF( aOpt.GetParaFlags() );
260 :
261 0 : aCRLF_RB.SaveValue();
262 0 : aLF_RB.SaveValue();
263 0 : aCR_RB.SaveValue();
264 0 : }
265 :
266 :
267 0 : SwAsciiFilterDlg::~SwAsciiFilterDlg()
268 : {
269 0 : }
270 :
271 :
272 0 : void SwAsciiFilterDlg::FillOptions( SwAsciiOptions& rOptions )
273 : {
274 0 : sal_uLong nCCode = aCharSetLB.GetSelectTextEncoding();
275 0 : String sFont;
276 0 : sal_uLong nLng = 0;
277 0 : if( aFontLB.IsVisible() )
278 : {
279 0 : sFont = aFontLB.GetSelectEntry();
280 0 : nLng = (sal_uLong)aLanguageLB.GetSelectLanguage();
281 : }
282 :
283 0 : rOptions.SetFontName( sFont );
284 0 : rOptions.SetCharSet( rtl_TextEncoding( nCCode ) );
285 0 : rOptions.SetLanguage( sal_uInt16( nLng ) );
286 0 : rOptions.SetParaFlags( GetCRLF() );
287 :
288 : // save the user settings
289 0 : String sData;
290 0 : rOptions.WriteUserData( sData );
291 0 : if( sData.Len() )
292 : {
293 : const rtl::OUString sFindNm = rtl::OUString::createFromAscii(
294 0 : aFontLB.IsVisible() ? sDialogImpExtraData
295 0 : : sDialogExpExtraData);
296 0 : sal_uInt16 nEnd, nStt = GetExtraData().Search( sFindNm );
297 0 : if( STRING_NOTFOUND != nStt )
298 : {
299 : // called twice, so remove "old" settings
300 0 : nEnd = GetExtraData().Search( cDialogExtraDataClose,
301 0 : nStt + nDialogExtraDataLen );
302 0 : if( STRING_NOTFOUND != nEnd )
303 0 : GetExtraData().Erase( nStt, nEnd - nStt + 1 );
304 : }
305 0 : String sTmp(GetExtraData());
306 0 : sTmp += sFindNm;
307 0 : sTmp += sData;
308 0 : sTmp += cDialogExtraDataClose;
309 0 : GetExtraData() = sTmp;
310 0 : }
311 0 : }
312 :
313 0 : void SwAsciiFilterDlg::SetCRLF( LineEnd eEnd )
314 : {
315 0 : switch( eEnd )
316 : {
317 0 : case LINEEND_CR: aCR_RB.Check(); break;
318 0 : case LINEEND_CRLF: aCRLF_RB.Check(); break;
319 0 : case LINEEND_LF: aLF_RB.Check(); break;
320 : }
321 0 : }
322 :
323 0 : LineEnd SwAsciiFilterDlg::GetCRLF() const
324 : {
325 : LineEnd eEnd;
326 0 : if( aCR_RB.IsChecked() )
327 0 : eEnd = LINEEND_CR;
328 0 : else if( aLF_RB.IsChecked() )
329 0 : eEnd = LINEEND_LF;
330 : else
331 0 : eEnd = LINEEND_CRLF;
332 0 : return eEnd;
333 : }
334 :
335 0 : IMPL_LINK( SwAsciiFilterDlg, CharSetSelHdl, SvxTextEncodingBox*, pBox )
336 : {
337 0 : LineEnd eOldEnd = GetCRLF(), eEnd = (LineEnd)-1;
338 0 : LanguageType nLng = aFontLB.IsVisible()
339 0 : ? aLanguageLB.GetSelectLanguage()
340 0 : : LANGUAGE_SYSTEM,
341 0 : nOldLng = nLng;
342 :
343 0 : rtl_TextEncoding nChrSet = pBox->GetSelectTextEncoding();
344 0 : if( nChrSet == osl_getThreadTextEncoding() )
345 0 : eEnd = GetSystemLineEnd();
346 : else
347 : {
348 0 : switch( nChrSet )
349 : {
350 : case RTL_TEXTENCODING_MS_1252:
351 : #ifdef UNX
352 0 : eEnd = LINEEND_LF;
353 : #else
354 : eEnd = LINEEND_CRLF; // ANSI
355 : #endif
356 0 : break;
357 :
358 : case RTL_TEXTENCODING_APPLE_ROMAN: // MAC
359 0 : eEnd = LINEEND_CR;
360 0 : break;
361 :
362 : case RTL_TEXTENCODING_IBM_850: // DOS
363 0 : eEnd = LINEEND_CRLF;
364 0 : break;
365 :
366 : case RTL_TEXTENCODING_APPLE_ARABIC:
367 : case RTL_TEXTENCODING_APPLE_CENTEURO:
368 : case RTL_TEXTENCODING_APPLE_CROATIAN:
369 : case RTL_TEXTENCODING_APPLE_CYRILLIC:
370 : case RTL_TEXTENCODING_APPLE_DEVANAGARI:
371 : case RTL_TEXTENCODING_APPLE_FARSI:
372 : case RTL_TEXTENCODING_APPLE_GREEK:
373 : case RTL_TEXTENCODING_APPLE_GUJARATI:
374 : case RTL_TEXTENCODING_APPLE_GURMUKHI:
375 : case RTL_TEXTENCODING_APPLE_HEBREW:
376 : case RTL_TEXTENCODING_APPLE_ICELAND:
377 : case RTL_TEXTENCODING_APPLE_ROMANIAN:
378 : case RTL_TEXTENCODING_APPLE_THAI:
379 : case RTL_TEXTENCODING_APPLE_TURKISH:
380 : case RTL_TEXTENCODING_APPLE_UKRAINIAN:
381 : case RTL_TEXTENCODING_APPLE_CHINSIMP:
382 : case RTL_TEXTENCODING_APPLE_CHINTRAD:
383 : case RTL_TEXTENCODING_APPLE_JAPANESE:
384 : case RTL_TEXTENCODING_APPLE_KOREAN:
385 0 : eEnd = LINEEND_CR;
386 0 : break;
387 : }
388 : }
389 :
390 0 : bSaveLineStatus = sal_False;
391 0 : if( eEnd != (LineEnd)-1 ) // changed?
392 : {
393 0 : if( eOldEnd != eEnd )
394 0 : SetCRLF( eEnd );
395 : }
396 : else
397 : {
398 : // restore old user choise (not the automatic!)
399 0 : aCRLF_RB.Check( aCRLF_RB.GetSavedValue() );
400 0 : aCR_RB.Check( aCR_RB.GetSavedValue() );
401 0 : aLF_RB.Check( aLF_RB.GetSavedValue() );
402 : }
403 0 : bSaveLineStatus = sal_True;
404 :
405 0 : if( nOldLng != nLng && aFontLB.IsVisible() )
406 0 : aLanguageLB.SelectLanguage( nLng );
407 :
408 0 : return 0;
409 : }
410 :
411 0 : IMPL_LINK( SwAsciiFilterDlg, LineEndHdl, RadioButton*, pBtn )
412 : {
413 0 : if( bSaveLineStatus )
414 0 : pBtn->SaveValue();
415 0 : return 0;
416 : }
417 :
418 :
419 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|