tdf#130857 qt weld: Implement QtInstanceWidget::get_text_height
[LibreOffice.git] / offapi / com / sun / star / image / ImageMapObject.idl
blob8ee67c45a81db888ab7cf6c3c34db859f6913dc1
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 .
21 module com { module sun { module star { module image {
24 /** this is a base service for objects inside an image map.
25 @see ImageMap
26 @see ImageMapRectangleObject
27 @see ImageMapCircleObject
28 @see ImageMapPolygonObject
30 published service ImageMapObject
32 /** Interface to access the properties of this service. */
33 interface ::com::sun::star::beans::XPropertySet;
35 /** This interface gives access to the events bound to
36 this ImageMapObject.<p>
38 @see com::sun::star::document::Events
40 interface com::sun::star::document::XEventsSupplier;
42 /** This is the URL for this object */
43 [property] string URL;
45 /** This is an optional description text for the link. */
46 [property] string Description;
48 /** This is the target frame */
49 [property] string Target;
51 /** Optionally, objects could be named. */
52 [property] string Name;
54 /** If an object is not active, it is ignored when
55 the user clicks on the ImageMap.
57 [property] boolean IsActive;
61 }; }; }; };
63 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */