Set the original size in crop dialog to preferred DPI calc. size
[LibreOffice.git] / include / formula / formdata.hxx
blob1df42c2e95082ab66b4687efd03124152b5fdf6b
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>
28 namespace formula
30 enum class FormulaDlgMode;
32 class FORMULA_DLLPUBLIC FormEditData
34 public:
35 FormEditData();
36 virtual ~FormEditData();
38 virtual void SaveValues();
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;}
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;}
53 protected:
54 void Reset();
55 FormEditData( const FormEditData& );
56 FormEditData& operator=( const FormEditData& r );
58 private:
59 FormulaDlgMode nMode;
60 sal_Int32 nFStart;
61 sal_uInt16 nOffset;
62 OUString aUndoStr;
63 bool bMatrix;
64 Selection aSelection;
68 } // formula
69 #endif // INCLUDED_FORMULA_FORMDATA_HXX
71 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */