merge the formfield patch from ooo-build
[ooovba.git] / sc / inc / clipparam.hxx
blob544cef3f20129b67ab120752b519650175f4c159
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: document.hxx,v $
10 * $Revision: 1.115.36.9 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef SC_CLIPPARAM_HXX
32 #define SC_CLIPPARAM_HXX
34 #include "rangelst.hxx"
35 #include "rangenam.hxx"
37 #include <vector>
39 /**
40 * This struct stores general clipboard parameters associated with a
41 * ScDocument instance created in clipboard mode.
43 struct ScClipParam
45 enum Direction { Unspecified, Column, Row };
47 ScRangeList maRanges;
48 Direction meDirection;
49 bool mbCutMode;
51 ScClipParam();
52 ScClipParam(const ScRange& rRange, bool bCutMode);
53 explicit ScClipParam(const ScClipParam& r);
55 bool isMultiRange() const;
57 /**
58 * Get the column size of a pasted range. Note that when the range is
59 * non-contiguous, we first compress all individual ranges into a single
60 * range, and the size of that compressed range is returned.
62 SCCOL getPasteColSize();
64 /**
65 * Same as the above method, but returns the row size of the compressed
66 * range.
68 SCROW getPasteRowSize();
70 /**
71 * Return a single range that encompasses all individual ranges.
73 ScRange getWholeRange() const;
75 void transpose();
78 // ============================================================================
80 struct ScClipRangeNameData
82 ScRangeData::IndexMap maRangeMap;
83 ::std::vector<ScRangeData*> mpRangeNames;
84 bool mbReplace;
86 ScClipRangeNameData();
87 ~ScClipRangeNameData();
88 void insert(sal_uInt16 nOldIndex, sal_uInt16 nNewIndex);
91 #endif