1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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_IntegerRectangle2D_idl__
20 #define __com_sun_star_geometry_IntegerRectangle2D_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 integers. 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
37 /** This structure contains the necessary information for a
38 two-dimensional rectangle.<p>
42 struct IntegerRectangle2D
44 /// X coordinate of upper left corner.
48 /// Y coordinate of upper left corner.
52 /** X coordinate of lower right corner.<p>
54 Must be greater than X1 for non-empty rectangles.<p>
59 /** Y coordinate of lower right corner.<p>
61 Must be greater than y1 for non-empty rectangles.<p>
70 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */