LibreOffice Module sc (master) 1
imoptdlg.hxx
Go to the documentation of this file.
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#pragma once
21
22#include <rtl/textenc.h>
23#include <rtl/ustring.hxx>
24#include <scdllapi.h>
25
27{
28public:
29 ScImportOptions( std::u16string_view rStr );
30
31 ScImportOptions( sal_Unicode nFieldSep, sal_Unicode nTextSep, rtl_TextEncoding nEnc )
32 : nFieldSepCode(nFieldSep), nTextSepCode(nTextSep),
33 bFixedWidth(false), bSaveAsShown(false), bQuoteAllText(false),
34 bSaveNumberAsSuch(true), bSaveFormulas(false), bRemoveSpace(false),
35 bEvaluateFormulas(true), bIncludeBOM(false), nSheetToExport(0)
36 { SetTextEncoding( nEnc ); }
37
38 ScImportOptions& operator=( const ScImportOptions& rCpy ) = default;
39
40 OUString BuildString() const;
41
42 void SetTextEncoding( rtl_TextEncoding nEnc );
43
46 OUString aStrFont;
47 rtl_TextEncoding eCharSet;
56 // "0" for 'current sheet', "-1" for all sheets (each to a separate file),
57 // or 1-based specific sheet number (to a separate file).
58 sal_Int32 nSheetToExport;
59};
60
61/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
bool bSaveFormulas
Definition: imoptdlg.hxx:52
ScImportOptions & operator=(const ScImportOptions &rCpy)=default
sal_Unicode nTextSepCode
Definition: imoptdlg.hxx:45
ScImportOptions(sal_Unicode nFieldSep, sal_Unicode nTextSep, rtl_TextEncoding nEnc)
Definition: imoptdlg.hxx:31
sal_Int32 nSheetToExport
Definition: imoptdlg.hxx:58
bool bEvaluateFormulas
Definition: imoptdlg.hxx:54
bool bSaveNumberAsSuch
Definition: imoptdlg.hxx:51
bool bQuoteAllText
Definition: imoptdlg.hxx:50
OUString aStrFont
Definition: imoptdlg.hxx:46
sal_Unicode nFieldSepCode
Definition: imoptdlg.hxx:44
rtl_TextEncoding eCharSet
Definition: imoptdlg.hxx:47
#define SC_DLLPUBLIC
Definition: scdllapi.h:27
sal_uInt16 sal_Unicode