/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #ifndef __com_sun_star_gallery_GalleryItem_idl__ #define __com_sun_star_gallery_GalleryItem_idl__ #ifndef __com_sun_star_gallery_XGalleryItem_idl__ #include #endif #ifndef __com_sun_star_beans_XPropertySet_idl__ #include #endif #ifndef __com_sun_star_graphic_XGraphic_idl__ #include #endif #ifndef __com_sun_star_lang_XComponent_idl__ #include #endif //============================================================================= module com { module sun { module star { module gallery { //============================================================================= /** service to get access to the properties of a single Gallery item */ service GalleryItem { interface ::com::sun::star::gallery::XGalleryItem; interface ::com::sun::star::beans::XPropertySet; /** The type of the Gallery item @see GalleryItemType */ [readonly, property] byte GalleryItemType; /** the URL of the Gallery item

The interpretation of the URL depends on the type of the Gallery item. In case of graphic and media items, the URL is a 'real' URL, in case of drawings it is a private URL

*/ [readonly, property] string URL; /** the title of the Gallery item */ [property] string Title; /** the thumbnail of the Gallery item

The thumbnail may be either a pixel or a vector graphic

*/ [readonly, property] com::sun::star::graphic::XGraphic Thumbnail; /** the graphic content of the Gallery item

This is an optional property and may not available for every item

*/ [optional, readonly, property ] ::com::sun::star::graphic::XGraphic Graphic; /** the drawing content of the Gallery item

This is an optional property and may not available for every item

*/ [optional, readonly, property ] ::com::sun::star::lang::XComponent Drawing; }; //============================================================================= }; }; }; }; #endif