LCOV - code coverage report
Current view: top level - sw/source/ui/dialog - ascfldlg.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 0 175 0.0 %
Date: 2014-11-03 Functions: 0 12 0.0 %
Legend: Lines: hit not hit

          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 = GetI18NScriptTypeOfLanguage( (sal_uInt16)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( ((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 SCRIPTTYPE_ASIAN:
     159           0 :                             aOpt.SetLanguage(MsLangId::resolveSystemLanguageByScriptType(aLinguOpt.nDefaultLanguage_CJK, SCRIPTTYPE_ASIAN));
     160           0 :                         break;
     161             :                         case SCRIPTTYPE_COMPLEX:
     162           0 :                             aOpt.SetLanguage(MsLangId::resolveSystemLanguageByScriptType(aLinguOpt.nDefaultLanguage_CTL, SCRIPTTYPE_COMPLEX));
     163           0 :                         break;
     164             :                         //SCRIPTTYPE_LATIN:
     165             :                         default:
     166           0 :                             aOpt.SetLanguage(MsLangId::resolveSystemLanguageByScriptType(aLinguOpt.nDefaultLanguage, SCRIPTTYPE_LATIN));
     167           0 :                     }
     168             :                 }
     169             :             }
     170             : 
     171           0 :             m_pLanguageLB->SetLanguageList( LANG_LIST_ALL, true, false );
     172           0 :             m_pLanguageLB->SelectLanguage( aOpt.GetLanguage() );
     173             :         }
     174             : 
     175             :         {
     176           0 :             bool bDelPrinter = false;
     177           0 :             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 = new SfxPrinter( 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(DEFAULTFONT_FIXED, eLang, DEFAULTFONT_FLAGS_ONLYONE, pPrt));
     208           0 :                 aOpt.SetFontName(aTmpFont.GetName());
     209             :             }
     210             : 
     211           0 :             m_pFontLB->SelectEntry( aOpt.GetFontName() );
     212             : 
     213           0 :             if( bDelPrinter )
     214           0 :                 delete pPrt;
     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 : }
     246             : 
     247           0 : void SwAsciiFilterDlg::FillOptions( SwAsciiOptions& rOptions )
     248             : {
     249           0 :     sal_uLong nCCode = m_pCharSetLB->GetSelectTextEncoding();
     250           0 :     OUString sFont;
     251           0 :     LanguageType nLng = 0;
     252           0 :     if( m_pFontLB->IsVisible() )
     253             :     {
     254           0 :         sFont = m_pFontLB->GetSelectEntry();
     255           0 :         nLng = m_pLanguageLB->GetSelectLanguage();
     256             :     }
     257             : 
     258           0 :     rOptions.SetFontName( sFont );
     259           0 :     rOptions.SetCharSet( rtl_TextEncoding( nCCode ) );
     260           0 :     rOptions.SetLanguage( sal_uInt16( nLng ) );
     261           0 :     rOptions.SetParaFlags( GetCRLF() );
     262             : 
     263             :     // save the user settings
     264           0 :     OUString sData;
     265           0 :     rOptions.WriteUserData( sData );
     266           0 :     if (!sData.isEmpty())
     267             :     {
     268             :         const OUString sFindNm = OUString::createFromAscii(
     269           0 :                                     m_pFontLB->IsVisible() ? sDialogImpExtraData
     270           0 :                                               : sDialogExpExtraData);
     271           0 :         sal_Int32 nEnd, nStt = GetExtraData().indexOf( sFindNm );
     272           0 :         if( -1 != nStt )
     273             :         {
     274             :             // called twice, so remove "old" settings
     275           0 :             nEnd = GetExtraData().indexOf( cDialogExtraDataClose,
     276           0 :                                             nStt + nDialogExtraDataLen );
     277           0 :             if( -1 != nEnd )
     278           0 :                 GetExtraData() = GetExtraData().replaceAt( nStt, nEnd - nStt + 1, "" );
     279             :         }
     280           0 :         GetExtraData() += sFindNm + sData + OUString(cDialogExtraDataClose);
     281           0 :     }
     282           0 : }
     283             : 
     284           0 : void SwAsciiFilterDlg::SetCRLF( LineEnd eEnd )
     285             : {
     286           0 :     switch( eEnd )
     287             :     {
     288           0 :     case LINEEND_CR:    m_pCR_RB->Check();     break;
     289           0 :     case LINEEND_CRLF:  m_pCRLF_RB->Check();   break;
     290           0 :     case LINEEND_LF:    m_pLF_RB->Check();     break;
     291             :     }
     292           0 : }
     293             : 
     294           0 : LineEnd SwAsciiFilterDlg::GetCRLF() const
     295             : {
     296             :     LineEnd eEnd;
     297           0 :     if( m_pCR_RB->IsChecked() )
     298           0 :         eEnd = LINEEND_CR;
     299           0 :     else if( m_pLF_RB->IsChecked() )
     300           0 :         eEnd = LINEEND_LF;
     301             :     else
     302           0 :         eEnd = LINEEND_CRLF;
     303           0 :     return eEnd;
     304             : }
     305             : 
     306           0 : IMPL_LINK( SwAsciiFilterDlg, CharSetSelHdl, SvxTextEncodingBox*, pBox )
     307             : {
     308           0 :     LineEnd eOldEnd = GetCRLF(), eEnd = (LineEnd)-1;
     309           0 :     LanguageType nLng = m_pFontLB->IsVisible()
     310           0 :                     ? m_pLanguageLB->GetSelectLanguage()
     311           0 :                     : LANGUAGE_SYSTEM,
     312           0 :                 nOldLng = nLng;
     313             : 
     314           0 :     rtl_TextEncoding nChrSet = pBox->GetSelectTextEncoding();
     315           0 :     if( nChrSet == osl_getThreadTextEncoding() )
     316           0 :         eEnd = GetSystemLineEnd();
     317             :     else
     318             :     {
     319           0 :         switch( nChrSet )
     320             :         {
     321             :         case RTL_TEXTENCODING_MS_1252:
     322             : #ifdef UNX
     323           0 :             eEnd = LINEEND_LF;
     324             : #else
     325             :             eEnd = LINEEND_CRLF;                // ANSI
     326             : #endif
     327           0 :             break;
     328             : 
     329             :         case RTL_TEXTENCODING_APPLE_ROMAN:      // MAC
     330           0 :             eEnd = LINEEND_CR;
     331           0 :             break;
     332             : 
     333             :         case RTL_TEXTENCODING_IBM_850:          // DOS
     334           0 :             eEnd = LINEEND_CRLF;
     335           0 :             break;
     336             : 
     337             :         case RTL_TEXTENCODING_APPLE_ARABIC:
     338             :         case RTL_TEXTENCODING_APPLE_CENTEURO:
     339             :         case RTL_TEXTENCODING_APPLE_CROATIAN:
     340             :         case RTL_TEXTENCODING_APPLE_CYRILLIC:
     341             :         case RTL_TEXTENCODING_APPLE_DEVANAGARI:
     342             :         case RTL_TEXTENCODING_APPLE_FARSI:
     343             :         case RTL_TEXTENCODING_APPLE_GREEK:
     344             :         case RTL_TEXTENCODING_APPLE_GUJARATI:
     345             :         case RTL_TEXTENCODING_APPLE_GURMUKHI:
     346             :         case RTL_TEXTENCODING_APPLE_HEBREW:
     347             :         case RTL_TEXTENCODING_APPLE_ICELAND:
     348             :         case RTL_TEXTENCODING_APPLE_ROMANIAN:
     349             :         case RTL_TEXTENCODING_APPLE_THAI:
     350             :         case RTL_TEXTENCODING_APPLE_TURKISH:
     351             :         case RTL_TEXTENCODING_APPLE_UKRAINIAN:
     352             :         case RTL_TEXTENCODING_APPLE_CHINSIMP:
     353             :         case RTL_TEXTENCODING_APPLE_CHINTRAD:
     354             :         case RTL_TEXTENCODING_APPLE_JAPANESE:
     355             :         case RTL_TEXTENCODING_APPLE_KOREAN:
     356           0 :             eEnd = LINEEND_CR;
     357           0 :             break;
     358             :         }
     359             :     }
     360             : 
     361           0 :     m_bSaveLineStatus = false;
     362           0 :     if( eEnd != (LineEnd)-1 )       // changed?
     363             :     {
     364           0 :         if( eOldEnd != eEnd )
     365           0 :             SetCRLF( eEnd );
     366             :     }
     367             :     else
     368             :     {
     369             :         // restore old user choice (not the automatic!)
     370           0 :         m_pCRLF_RB->Check( m_pCRLF_RB->GetSavedValue() );
     371           0 :         m_pCR_RB->Check( m_pCR_RB->GetSavedValue() );
     372           0 :         m_pLF_RB->Check( m_pLF_RB->GetSavedValue() );
     373             :     }
     374           0 :     m_bSaveLineStatus = true;
     375             : 
     376           0 :     if( nOldLng != nLng && m_pFontLB->IsVisible() )
     377           0 :         m_pLanguageLB->SelectLanguage( nLng );
     378             : 
     379           0 :     return 0;
     380             : }
     381             : 
     382           0 : IMPL_LINK( SwAsciiFilterDlg, LineEndHdl, RadioButton*, pBtn )
     383             : {
     384           0 :     if( m_bSaveLineStatus )
     385           0 :         pBtn->SaveValue();
     386           0 :     return 0;
     387           0 : }
     388             : 
     389             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10