]> git.lyx.org Git - lyx.git/blob - src/box.C
Continue to improve GtkLengthEntry
[lyx.git] / src / box.C
1 /**
2  * \file box.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 // Code moved out of line and out of box.h by Angus (7 Jan 2002)
12
13 #include <config.h>
14
15 #include "box.h"
16
17 #include "support/std_ostream.h"
18
19 using std::ostream;
20
21
22 Box::Box()
23         : x1(0), x2(0), y1(0), y2(0)
24 {}
25
26
27 Box::Box(int x1_, int x2_, int y1_, int y2_)
28         : x1(x1_), x2(x2_), y1(y1_), y2(y2_)
29 {}
30
31
32 bool Box::contains(int x, int y)
33 {
34         return (x1 < x && x2 > x && y1 < y && y2 > y);
35 }
36
37
38 ostream & operator<<(ostream & os, Box const & b)
39 {
40         return os << "x1,y1: " << b.x1 << ',' << b.y1
41                  << " x2,y2: " << b.x2 << ',' << b.y2
42                  << std::endl;
43 }