update dev300-m57
[ooovba.git] / sc / source / ui / dbgui / imoptdlg.cxx
blobad1e73ca31987960d60241139844368fef62542f
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: imoptdlg.cxx,v $
10 * $Revision: 1.14 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_sc.hxx"
36 #include "imoptdlg.hxx"
37 #include "scresid.hxx"
38 #include "imoptdlg.hrc"
39 #include <rtl/tencinfo.h>
41 static const sal_Char pStrFix[] = "FIX";
43 //------------------------------------------------------------------------
44 // Der Options-String darf kein Semikolon mehr enthalten (wegen Pickliste)
45 // darum ab Version 336 Komma stattdessen
48 ScImportOptions::ScImportOptions( const String& rStr )
50 bFixedWidth = FALSE;
51 nFieldSepCode = 0;
52 if ( rStr.GetTokenCount(',') >= 3 )
54 String aToken( rStr.GetToken( 0, ',' ) );
55 if( aToken.EqualsIgnoreCaseAscii( pStrFix ) )
56 bFixedWidth = TRUE;
57 else
58 nFieldSepCode = (sal_Unicode) aToken.ToInt32();
59 nTextSepCode = (sal_Unicode) rStr.GetToken(1,',').ToInt32();
60 aStrFont = rStr.GetToken(2,',');
61 eCharSet = ScGlobal::GetCharsetValue(aStrFont);
62 bSaveAsShown = (rStr.GetToken( 3, ',' ).ToInt32() ? TRUE : FALSE);
66 //------------------------------------------------------------------------
68 String ScImportOptions::BuildString() const
70 String aResult;
72 if( bFixedWidth )
73 aResult.AppendAscii( pStrFix );
74 else
75 aResult += String::CreateFromInt32(nFieldSepCode);
76 aResult += ',';
77 aResult += String::CreateFromInt32(nTextSepCode);
78 aResult += ',';
79 aResult += aStrFont;
80 aResult += ',';
81 aResult += String::CreateFromInt32( bSaveAsShown ? 1 : 0 );
83 return aResult;
86 //------------------------------------------------------------------------
88 void ScImportOptions::SetTextEncoding( rtl_TextEncoding nEnc )
90 eCharSet = (nEnc == RTL_TEXTENCODING_DONTKNOW ?
91 gsl_getSystemTextEncoding() : nEnc);
92 aStrFont = ScGlobal::GetCharsetString( nEnc );