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