Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / offapi / com / sun / star / geometry / RealRectangle2D.idl
blob19f38e0c38cad77e40a988c11922c08cc246ce8d
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef __com_sun_star_geometry_RealRectangle2D_idl__
20 #define __com_sun_star_geometry_RealRectangle2D_idl__
22 module com { module sun { module star { module geometry {
24 /* Removed, because XCanvas is private API until further notice.
26 The values are stored as reals. Please note that the
27 com.sun.star.rendering.XCanvas defines the
28 screen representation of rectangles in such a way that the lower
29 and the rightmost line of the rectangle are not drawn on
30 screen. Thus, if for two rectangles R1 and R2, R1.x2 equals R2.x1,
31 the screen representation of these rectangles will not overlap,
32 but being exactly adjacent. That also means, that an
33 IntegerRectangle2D with X1 equal X2 or Y1 equal Y2 can be
34 considered empty.<p>
37 /** This structure contains the necessary information for a
38 two-dimensional rectangle.<p>
40 @since OOo 2.0
42 struct RealRectangle2D
44 /// X coordinate of upper left corner .
45 double X1;
48 /// Y coordinate of upper left corner.
49 double Y1;
52 /** X coordinate of lower right corner.<p>
54 Must be greater than x1 for non-empty rectangles.<p>.
56 double X2;
59 /** Y coordinate of lower right corner.<p>
61 Must be greater than y1 for non-empty rectangles.<p>
63 double Y2;
66 }; }; }; };
68 #endif
70 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */