summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/image
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/image')
-rw-r--r--offapi/com/sun/star/image/ImageMap.idl59
-rw-r--r--offapi/com/sun/star/image/ImageMapCircleObject.idl61
-rw-r--r--offapi/com/sun/star/image/ImageMapObject.idl80
-rw-r--r--offapi/com/sun/star/image/ImageMapPolygonObject.idl59
-rw-r--r--offapi/com/sun/star/image/ImageMapRectangleObject.idl58
5 files changed, 0 insertions, 317 deletions
diff --git a/offapi/com/sun/star/image/ImageMap.idl b/offapi/com/sun/star/image/ImageMap.idl
deleted file mode 100644
index 6991883e7..000000000
--- a/offapi/com/sun/star/image/ImageMap.idl
+++ /dev/null
@@ -1,59 +0,0 @@
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-#ifndef __com_sun_star_image_ImageMap_idl__
-#define __com_sun_star_image_ImageMap_idl__
-
-#include <com/sun/star/container/XNamed.idl>
-#include <com/sun/star/container/XIndexContainer.idl>
-
-//=============================================================================
-
- module com { module sun { module star { module image {
-
-//=============================================================================
-
-/** This service specifies a HTML image map.
- */
-published service ImageMap
-{
- /** a ImageMap can, optionally, have a name. */
- interface ::com::sun::star::container::XNamed;
-
- /** this container interface gives access to
- the objects inside this image map.
- @see ImageMapRectangleObject
- @see ImageMapCircleObject
- @see ImageMapPolygonObject
- */
- interface ::com::sun::star::container::XIndexContainer;
-};
-
-//=============================================================================
-
-}; }; }; };
-
-#endif
diff --git a/offapi/com/sun/star/image/ImageMapCircleObject.idl b/offapi/com/sun/star/image/ImageMapCircleObject.idl
deleted file mode 100644
index 7e05c61bb..000000000
--- a/offapi/com/sun/star/image/ImageMapCircleObject.idl
+++ /dev/null
@@ -1,61 +0,0 @@
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-#ifndef __com_sun_star_image_ImageMapCircleObject_idl__
-#define __com_sun_star_image_ImageMapCircleObject_idl__
-
-#include <com/sun/star/image/ImageMapObject.idl>
-
-#include <com/sun/star/awt/Point.idl>
-
-//=============================================================================
-
- module com { module sun { module star { module image {
-
-//=============================================================================
-
-/** this service describes a circular-shaped region inside
- a HTML image map.
- @see ImageMap
- @see ImageMapObject
-*/
-published service ImageMapCircleObject
-{
- /** The basic service for all image map objects. */
- service ImageMapObject;
-
- /** This is the center point of the circle in pixels */
- [property] com::sun::star::awt::Point Center;
-
- /** This is the radius of the circle in pixels */
- [property] long Radius;
-};
-
-//=============================================================================
-
-}; }; }; };
-
-#endif
diff --git a/offapi/com/sun/star/image/ImageMapObject.idl b/offapi/com/sun/star/image/ImageMapObject.idl
deleted file mode 100644
index 02296a41d..000000000
--- a/offapi/com/sun/star/image/ImageMapObject.idl
+++ /dev/null
@@ -1,80 +0,0 @@
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-#ifndef __com_sun_star_image_ImageMapObject_idl__
-#define __com_sun_star_image_ImageMapObject_idl__
-
-#include <com/sun/star/beans/XPropertySet.idl>
-
-#include <com/sun/star/document/XEventsSupplier.idl>
-
-//=============================================================================
-
- module com { module sun { module star { module image {
-
-//=============================================================================
-
-/** this is a base service for objects inside a image maps.
- @see ImageMap
- @see ImageMapRectangleObject
- @see ImageMapCircleObject
- @see ImageMapPolygonObject
-*/
-published service ImageMapObject
-{
- /** Interface to access the properties of this service. */
- interface ::com::sun::star::beans::XPropertySet;
-
- /** This interface gives access to the events bound to
- this ImageMapObject.<p>
-
- @see com::sun::star::document::Events
- */
- interface com::sun::star::document::XEventsSupplier;
-
- /** This is the URL for this object */
- [property] string URL;
-
- /** This is an optional description text for the link. */
- [property] string Description;
-
- /** This is the target frame */
- [property] string Target;
-
- /** Optionally, objects could be named. */
- [property] string Name;
-
- /** If an object is not active, it is ignored when
- the user clicks on the ImageMap.
- */
- [property] boolean IsActive;
-};
-
-//=============================================================================
-
-}; }; }; };
-
-#endif
diff --git a/offapi/com/sun/star/image/ImageMapPolygonObject.idl b/offapi/com/sun/star/image/ImageMapPolygonObject.idl
deleted file mode 100644
index 8f9d37cdd..000000000
--- a/offapi/com/sun/star/image/ImageMapPolygonObject.idl
+++ /dev/null
@@ -1,59 +0,0 @@
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-#ifndef __com_sun_star_image_ImageMapPolygonObject_idl__
-#define __com_sun_star_image_ImageMapPolygonObject_idl__
-
-#include <com/sun/star/image/ImageMapObject.idl>
-
-#include <com/sun/star/drawing/PointSequence.idl>
-
-//=============================================================================
-
- module com { module sun { module star { module image {
-
-//=============================================================================
-
-/** this service describes a polygon-shaped region inside
- a HTML image map.
- @see ImageMap
- @see ImageMapObject
-*/
-published service ImageMapPolygonObject
-{
- /** The basic service for all image map objects. */
- service ImageMapObject;
-
- /** This sequence of points outlines the click area of
- this image map object. */
- [property] com::sun::star::drawing::PointSequence Polygon;
-};
-
-//=============================================================================
-
-}; }; }; };
-
-#endif
diff --git a/offapi/com/sun/star/image/ImageMapRectangleObject.idl b/offapi/com/sun/star/image/ImageMapRectangleObject.idl
deleted file mode 100644
index b539f5631..000000000
--- a/offapi/com/sun/star/image/ImageMapRectangleObject.idl
+++ /dev/null
@@ -1,58 +0,0 @@
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-#ifndef __com_sun_star_image_ImageMapRectangleObject_idl__
-#define __com_sun_star_image_ImageMapRectangleObject_idl__
-
-#include <com/sun/star/image/ImageMapObject.idl>
-
-#include <com/sun/star/awt/Rectangle.idl>
-
-//=============================================================================
-
- module com { module sun { module star { module image {
-
-//=============================================================================
-
-/** this service describes a rectangular-shaped region inside
- a HTML image map.
- @see ImageMap
- @see ImageMapObject
-*/
-published service ImageMapRectangleObject
-{
- /** The basic service for all image map objects. */
- service ImageMapObject;
-
- /** This is the boundary of this rectangle object */
- [property] com::sun::star::awt::Rectangle Boundary;
-};
-
-//=============================================================================
-
-}; }; }; };
-
-#endif