tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / offapi / com / sun / star / geometry / IntegerRectangle2D.idl
blobf48e76d719c025d1e6ee51145b5e4cf20770553a
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 .
20 module com { module sun { module star { module geometry {
22 /* Removed, because XCanvas is private API until further notice.
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>
35 /** This structure contains the necessary information for a
36 two-dimensional rectangle.<p>
38 @since OOo 2.0
40 struct IntegerRectangle2D
42 /// X coordinate of upper left corner.
43 long X1;
46 /// Y coordinate of upper left corner.
47 long Y1;
50 /** X coordinate of lower right corner.<p>
52 Must be greater than X1 for non-empty rectangles.<p>
54 long X2;
57 /** Y coordinate of lower right corner.<p>
59 Must be greater than y1 for non-empty rectangles.<p>
61 long Y2;
64 }; }; }; };
66 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */