1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: imoptdlg.cxx,v $
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
)
52 if ( rStr
.GetTokenCount(',') >= 3 )
54 String
aToken( rStr
.GetToken( 0, ',' ) );
55 if( aToken
.EqualsIgnoreCaseAscii( pStrFix
) )
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
73 aResult
.AppendAscii( pStrFix
);
75 aResult
+= String::CreateFromInt32(nFieldSepCode
);
77 aResult
+= String::CreateFromInt32(nTextSepCode
);
81 aResult
+= String::CreateFromInt32( bSaveAsShown
? 1 : 0 );
86 //------------------------------------------------------------------------
88 void ScImportOptions::SetTextEncoding( rtl_TextEncoding nEnc
)
90 eCharSet
= (nEnc
== RTL_TEXTENCODING_DONTKNOW
?
91 gsl_getSystemTextEncoding() : nEnc
);
92 aStrFont
= ScGlobal::GetCharsetString( nEnc
);