merged tag ooo/OOO330_m14
[LibreOffice.git] / sc / inc / clipparam.hxx
blob78b5474229d1a1ff170d35b55ef04876f50fca43
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
28 #ifndef SC_CLIPPARAM_HXX
29 #define SC_CLIPPARAM_HXX
31 #include "rangelst.hxx"
32 #include "rangenam.hxx"
34 #include <vector>
36 /**
37 * This struct stores general clipboard parameters associated with a
38 * ScDocument instance created in clipboard mode.
40 struct ScClipParam
42 enum Direction { Unspecified, Column, Row };
44 ScRangeList maRanges;
45 Direction meDirection;
46 bool mbCutMode;
48 ScClipParam();
49 ScClipParam(const ScRange& rRange, bool bCutMode);
50 explicit ScClipParam(const ScClipParam& r);
52 bool isMultiRange() const;
54 /**
55 * Get the column size of a pasted range. Note that when the range is
56 * non-contiguous, we first compress all individual ranges into a single
57 * range, and the size of that compressed range is returned.
59 SCCOL getPasteColSize();
61 /**
62 * Same as the above method, but returns the row size of the compressed
63 * range.
65 SCROW getPasteRowSize();
67 /**
68 * Return a single range that encompasses all individual ranges.
70 ScRange getWholeRange() const;
72 void transpose();
75 // ============================================================================
77 struct ScClipRangeNameData
79 ScRangeData::IndexMap maRangeMap;
80 ::std::vector<ScRangeData*> mpRangeNames;
81 bool mbReplace;
83 ScClipRangeNameData();
84 ~ScClipRangeNameData();
85 void insert(sal_uInt16 nOldIndex, sal_uInt16 nNewIndex);
88 #endif