Coverage Report

Created: 2026-08-14 10:22

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libreoffice/sc/source/ui/inc/imoptdlg.hxx
Line
Count
Source
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
#include <tools/stream.hxx>
26
27
class SC_DLLPUBLIC ScImportOptions
28
{
29
public:
30
        ScImportOptions( std::u16string_view rStr );
31
32
        ScImportOptions( sal_Unicode nFieldSep, sal_Unicode nTextSep, rtl_TextEncoding nEnc )
33
0
            : nFieldSepCode(nFieldSep), nTextSepCode(nTextSep),
34
0
            bFixedWidth(false), bSaveAsShown(false), bQuoteAllText(false),
35
0
            bSaveNumberAsSuch(true), bSaveFormulas(false), bRemoveSpace(false),
36
0
            bEvaluateFormulas(true), bIncludeBOM(false), nEndianness(SvStreamEndian::LITTLE),
37
0
            nSheetToExport(0)
38
0
        { SetTextEncoding( nEnc ); }
39
40
    ScImportOptions& operator=( const ScImportOptions& rCpy ) = default;
41
42
    OUString  BuildString() const;
43
44
    void    SetTextEncoding( rtl_TextEncoding nEnc );
45
46
    sal_Unicode nFieldSepCode;
47
    sal_Unicode nTextSepCode;
48
    OUString    aStrFont;
49
    rtl_TextEncoding eCharSet;
50
    bool        bFixedWidth;
51
    bool        bSaveAsShown;
52
    bool        bQuoteAllText;
53
    bool        bSaveNumberAsSuch;
54
    bool        bSaveFormulas;
55
    bool        bRemoveSpace;
56
    bool        bEvaluateFormulas;
57
    bool        bIncludeBOM;
58
    SvStreamEndian nEndianness;
59
    // "0" for 'current sheet', "-1" for all sheets (each to a separate file),
60
    // or 1-based specific sheet number (to a separate file).
61
    sal_Int32   nSheetToExport;
62
};
63
64
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */