82 lines
1.6 KiB
C++
82 lines
1.6 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
#ifndef INCLUDED_RECTANGLE_HPP
|
|
#define INCLUDED_RECTANGLE_HPP
|
|
|
|
#include <limits>
|
|
|
|
namespace Util
|
|
{
|
|
|
|
/// Holds the position and size of a rectangle.
|
|
struct Rectangle
|
|
{
|
|
int _x1;
|
|
int _y1;
|
|
int _x2;
|
|
int _y2;
|
|
|
|
Rectangle()
|
|
: _x1(std::numeric_limits<int>::max())
|
|
, _y1(std::numeric_limits<int>::max())
|
|
, _x2(std::numeric_limits<int>::min())
|
|
, _y2(std::numeric_limits<int>::min())
|
|
{}
|
|
|
|
Rectangle(int x, int y, int width, int height)
|
|
: _x1(x)
|
|
, _y1(y)
|
|
, _x2(x + width)
|
|
, _y2(y + height)
|
|
{}
|
|
|
|
void extend(Rectangle& rectangle)
|
|
{
|
|
if (rectangle._x1 < _x1)
|
|
_x1 = rectangle._x1;
|
|
if (rectangle._x2 > _x2)
|
|
_x2 = rectangle._x2;
|
|
if (rectangle._y1 < _y1)
|
|
_y1 = rectangle._y1;
|
|
if (rectangle._y2 > _y2)
|
|
_y2 = rectangle._y2;
|
|
}
|
|
|
|
int getLeft()
|
|
{
|
|
return _x1;
|
|
}
|
|
|
|
int getTop()
|
|
{
|
|
return _y1;
|
|
}
|
|
|
|
int getWidth()
|
|
{
|
|
return _x2 - _x1;
|
|
}
|
|
|
|
int getHeight()
|
|
{
|
|
return _y2 - _y1;
|
|
}
|
|
|
|
bool isValid()
|
|
{
|
|
return _x1 <= _x2 && _y1 <= _y2;
|
|
}
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|