bump product version to 6.3.0.0.beta1
[LibreOffice.git] / include / formula / formdata.hxx
blobe910bd64300fd2348572c7643c4e5f9020a23a0f
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 #ifndef INCLUDED_FORMULA_FORMDATA_HXX
21 #define INCLUDED_FORMULA_FORMDATA_HXX
23 #include <formula/formuladllapi.h>
24 #include <rtl/ustring.hxx>
25 #include <sal/types.h>
26 #include <tools/gen.hxx>
27 #include <vcl/vclptr.hxx>
28 #include <vcl/window.hxx>
30 namespace formula
32 enum class FormulaDlgMode;
34 class FORMULA_DLLPUBLIC FormEditData
36 public:
37 FormEditData();
38 virtual ~FormEditData();
40 virtual void SaveValues();
42 FormulaDlgMode GetMode() const { return nMode; }
43 sal_Int32 GetFStart() const { return nFStart; }
44 sal_uInt16 GetOffset() const { return nOffset; }
45 const OUString& GetUndoStr() const { return aUndoStr; }
46 bool GetMatrixFlag()const{ return bMatrix;}
47 const Selection& GetSelection()const { return aSelection;}
49 void SetMode( FormulaDlgMode nNew ) { nMode = nNew; }
50 void SetFStart( sal_Int32 nNew ) { nFStart = nNew; }
51 void SetOffset( sal_uInt16 nNew ) { nOffset = nNew; }
52 void SetUndoStr( const OUString& rNew ) { aUndoStr = rNew; }
53 void SetMatrixFlag(bool bNew) { bMatrix=bNew;}
54 void SetSelection(const Selection& aSel) { aSelection=aSel;}
55 protected:
56 void Reset();
57 FormEditData( const FormEditData& );
58 FormEditData& operator=( const FormEditData& r );
60 private:
61 FormulaDlgMode nMode;
62 sal_Int32 nFStart;
63 sal_uInt16 nOffset;
64 OUString aUndoStr;
65 bool bMatrix;
66 Selection aSelection;
70 } // formula
71 #endif // INCLUDED_FORMULA_FORMDATA_HXX
73 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */