LCOV - code coverage report
Current view: top level - sc/source/ui/dbgui - scuiimoptdlg.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 0 150 0.0 %
Date: 2014-11-03 Functions: 0 17 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             : #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             :         bool bFormulas = (pViewSh ?
     213           0 :                 pViewSh->GetViewData().GetOptions().GetOption( VOPT_FORMULAS) :
     214           0 :                 false);
     215           0 :         m_pCbFormulas->Check( bFormulas );
     216             :     }
     217             :     else
     218             :     {
     219           0 :         m_pFieldFrame->set_label(m_pFtCharset->GetText());
     220           0 :         m_pFtFieldSep->Hide();
     221           0 :         m_pFtTextSep->Hide();
     222           0 :         m_pFtCharset->Hide();
     223           0 :         m_pEdFieldSep->Hide();
     224           0 :         m_pEdTextSep->Hide();
     225           0 :         m_pCbFixed->Hide();
     226           0 :         m_pCbShown->Hide();
     227           0 :         m_pCbQuoteAll->Hide();
     228           0 :         m_pCbFormulas->Hide();
     229           0 :         m_pLbCharset->GrabFocus();
     230           0 :         m_pLbCharset->SetDoubleClickHdl( LINK( this, ScImportOptionsDlg, DoubleClickHdl ) );
     231             :     }
     232             : 
     233             :     m_pLbCharset->SelectTextEncoding( pOptions ? pOptions->eCharSet :
     234           0 :         osl_getThreadTextEncoding() );
     235             : 
     236             :     // optionaler Titel:
     237           0 :     if ( pStrTitle )
     238           0 :         SetText( *pStrTitle );
     239           0 : }
     240             : 
     241           0 : ScImportOptionsDlg::~ScImportOptionsDlg()
     242             : {
     243           0 :     delete pFieldSepTab;
     244           0 :     delete pTextSepTab;
     245           0 : }
     246             : 
     247           0 : void ScImportOptionsDlg::GetImportOptions( ScImportOptions& rOptions ) const
     248             : {
     249           0 :     rOptions.SetTextEncoding( m_pLbCharset->GetSelectTextEncoding() );
     250             : 
     251           0 :     if ( m_pCbFixed->IsVisible() )
     252             :     {
     253           0 :         rOptions.nFieldSepCode = GetCodeFromCombo( *m_pEdFieldSep );
     254           0 :         rOptions.nTextSepCode  = GetCodeFromCombo( *m_pEdTextSep );
     255           0 :         rOptions.bFixedWidth = m_pCbFixed->IsChecked();
     256           0 :         rOptions.bSaveAsShown = m_pCbShown->IsChecked();
     257           0 :         rOptions.bQuoteAllText = m_pCbQuoteAll->IsChecked();
     258           0 :         rOptions.bSaveFormulas = m_pCbFormulas->IsChecked();
     259             :     }
     260           0 : }
     261             : 
     262           0 : sal_uInt16 ScImportOptionsDlg::GetCodeFromCombo( const ComboBox& rEd ) const
     263             : {
     264             :     ScDelimiterTable* pTab;
     265           0 :     OUString  aStr( rEd.GetText() );
     266             :     sal_uInt16  nCode;
     267             : 
     268           0 :     if ( &rEd == m_pEdTextSep )
     269           0 :         pTab = pTextSepTab;
     270             :     else
     271           0 :         pTab = pFieldSepTab;
     272             : 
     273           0 :     if ( aStr.isEmpty() )
     274             :     {
     275           0 :         nCode = 0;          // kein Trennzeichen
     276             :     }
     277             :     else
     278             :     {
     279           0 :         nCode = pTab->GetCode( aStr );
     280             : 
     281           0 :         if ( nCode == 0 )
     282           0 :             nCode = (sal_uInt16)aStr[0];
     283             :     }
     284             : 
     285           0 :     return nCode;
     286             : }
     287             : 
     288           0 : IMPL_LINK( ScImportOptionsDlg, FixedWidthHdl, CheckBox*, pCheckBox )
     289             : {
     290           0 :     if (pCheckBox == m_pCbFixed)
     291             :     {
     292           0 :         bool bEnable = !m_pCbFixed->IsChecked();
     293           0 :         m_pFtFieldSep->Enable( bEnable );
     294           0 :         m_pEdFieldSep->Enable( bEnable );
     295           0 :         m_pFtTextSep->Enable( bEnable );
     296           0 :         m_pEdTextSep->Enable( bEnable );
     297           0 :         m_pCbShown->Enable( bEnable );
     298           0 :         m_pCbQuoteAll->Enable( bEnable );
     299             :     }
     300           0 :     return 0;
     301             : }
     302             : 
     303           0 : IMPL_LINK( ScImportOptionsDlg, DoubleClickHdl, ListBox*, pLb )
     304             : {
     305           0 :     if (pLb == m_pLbCharset)
     306             :     {
     307           0 :         m_pBtnOk->Click();
     308             :     }
     309           0 :     return 0;
     310           0 : }
     311             : 
     312             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10