LibreOffice Module sc (master)
1
sc
source
core
data
types.cxx
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
10
#include <types.hxx>
11
#include <
scmatrix.hxx
>
12
13
namespace
sc
{
14
15
RangeMatrix::RangeMatrix
() :
16
mpMat(nullptr), mnCol1(-1), mnRow1(-1), mnTab1(-1), mnCol2(-1), mnRow2(-1), mnTab2(-1) {}
17
18
bool
RangeMatrix::isRangeValid
()
const
19
{
20
return
mnCol1
>= 0 &&
mnRow1
>= 0 &&
mnTab1
>=0 &&
21
mnCol2
>= 0 &&
mnRow2
>= 0 &&
mnTab2
>= 0 &&
22
mnCol1
<=
mnCol2
&&
mnRow1
<=
mnRow2
&&
mnTab1
<=
mnTab2
;
23
}
24
25
MultiDataCellState::MultiDataCellState
() :
26
mnRow1(-1), mnCol1(-1), meState(
StateType
::
Invalid
) {}
27
MultiDataCellState::MultiDataCellState
(
StateType
eState ) :
28
mnRow1(-1), mnCol1(-1), meState(eState) {}
29
30
}
31
32
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
sc
CAUTION! The following defines must be in the same namespace as the respective type.
Definition:
broadcast.cxx:15
scmatrix.hxx
sc::MultiDataCellState::MultiDataCellState
MultiDataCellState()
Definition:
types.cxx:25
sc::MultiDataCellState::StateType
StateType
Definition:
types.hxx:99
sc::RangeMatrix::isRangeValid
bool isRangeValid() const
Definition:
types.cxx:18
sc::RangeMatrix::mnRow2
sal_Int32 mnRow2
Definition:
types.hxx:89
sc::RangeMatrix::mnCol1
sal_Int32 mnCol1
Definition:
types.hxx:85
sc::RangeMatrix::mnCol2
sal_Int32 mnCol2
Definition:
types.hxx:88
sc::RangeMatrix::mnTab2
sal_Int32 mnTab2
Definition:
types.hxx:90
sc::RangeMatrix::mnTab1
sal_Int32 mnTab1
Definition:
types.hxx:87
sc::RangeMatrix::RangeMatrix
RangeMatrix()
Definition:
types.cxx:15
sc::RangeMatrix::mnRow1
sal_Int32 mnRow1
Definition:
types.hxx:86
SwServiceType::Invalid
@ Invalid
Generated on Sun Jul 30 2023 04:28:11 for LibreOffice Module sc (master) by
1.9.3