mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
8283e978f8
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3803 a592a061-630c-0410-9148-cb99ea01b6c8
44 lines
793 B
C++
44 lines
793 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file box.h
|
|
* Copyright 2001 the LyX Team
|
|
* Read the file COPYING
|
|
*
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
|
*/
|
|
|
|
#ifndef BOX_H
|
|
#define BOX_H
|
|
|
|
#include <iosfwd>
|
|
|
|
/**
|
|
* A simple class representing rectangular regions.
|
|
* It is expected that the box be constructed in
|
|
* normalised form, that is to say : x1,y1 is top-left,
|
|
* x2,y2 is bottom-right.
|
|
*
|
|
* Negative values are allowed.
|
|
*/
|
|
struct Box {
|
|
int x1;
|
|
int x2;
|
|
int y1;
|
|
int y2;
|
|
|
|
/// Initialise the member variables.
|
|
Box(int x1_, int x2_, int y1_, int y2_);
|
|
|
|
/**
|
|
* Returns true if the given co-ordinates are within
|
|
* the box. Check is exclusive (point on a border
|
|
* returns false).
|
|
*/
|
|
bool contained(int x, int y);
|
|
};
|
|
|
|
|
|
std::ostream & operator<<(std::ostream &, Box const &);
|
|
|
|
#endif // BOX_H
|