tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / sc / source / ui / inc / imoptdlg.hxx
blob91bd9e460ae0746b6621ea5e99ed4636546a8f89
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #pragma once
22 #include <rtl/textenc.h>
23 #include <rtl/ustring.hxx>
24 #include <scdllapi.h>
26 class SC_DLLPUBLIC ScImportOptions
28 public:
29 ScImportOptions( std::u16string_view rStr );
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 ); }
38 ScImportOptions& operator=( const ScImportOptions& rCpy ) = default;
40 OUString BuildString() const;
42 void SetTextEncoding( rtl_TextEncoding nEnc );
44 sal_Unicode nFieldSepCode;
45 sal_Unicode nTextSepCode;
46 OUString aStrFont;
47 rtl_TextEncoding eCharSet;
48 bool bFixedWidth;
49 bool bSaveAsShown;
50 bool bQuoteAllText;
51 bool bSaveNumberAsSuch;
52 bool bSaveFormulas;
53 bool bRemoveSpace;
54 bool bEvaluateFormulas;
55 bool bIncludeBOM;
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;
61 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */