LibreOffice
LibreOffice 24.2 SDK API Reference
IntegerRectangle2D.idl
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
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/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
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 .
18  */
19 
20 module com { module sun { module star { module geometry {
21 
22 /* Removed, because XCanvas is private API until further notice.
23 
24  The values are stored as integers. Please note that the
25  com.sun.star.rendering.XCanvas defines the
26  screen representation of rectangles in such a way that the lower
27  and the rightmost line of the rectangle are not drawn on
28  screen. Thus, if for two rectangles R1 and R2, R1.x2 equals R2.x1,
29  the screen representation of these rectangles will not overlap,
30  but being exactly adjacent. That also means, that an
31  IntegerRectangle2D with X1 equal X2 or Y1 equal Y2 can be
32  considered empty.<p>
33 */
34 
41 {
43  long X1;
44 
45 
47  long Y1;
48 
49 
54  long X2;
55 
56 
61  long Y2;
62 };
63 
64 }; }; }; };
65 
66 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
long Y2
Y coordinate of lower right corner.
Definition: IntegerRectangle2D.idl:61
Definition: Ambiguous.idl:20
This structure contains the necessary information for a two-dimensional rectangle.
Definition: IntegerRectangle2D.idl:40
long X2
X coordinate of lower right corner.
Definition: IntegerRectangle2D.idl:54
long X1
X coordinate of upper left corner.
Definition: IntegerRectangle2D.idl:43
long Y1
Y coordinate of upper left corner.
Definition: IntegerRectangle2D.idl:47