LibreOffice Module sc (master) 1
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
13namespace sc {
14
16 mpMat(nullptr), mnCol1(-1), mnRow1(-1), mnTab1(-1), mnCol2(-1), mnRow2(-1), mnTab2(-1) {}
17
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
26 mnRow1(-1), mnCol1(-1), meState(StateType::Invalid) {}
28 mnRow1(-1), mnCol1(-1), meState(eState) {}
29
30}
31
32/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
CAUTION! The following defines must be in the same namespace as the respective type.
Definition: broadcast.cxx:15
bool isRangeValid() const
Definition: types.cxx:18
sal_Int32 mnRow2
Definition: types.hxx:89
sal_Int32 mnCol1
Definition: types.hxx:85
sal_Int32 mnCol2
Definition: types.hxx:88
sal_Int32 mnTab2
Definition: types.hxx:90
sal_Int32 mnTab1
Definition: types.hxx:87
sal_Int32 mnRow1
Definition: types.hxx:86