blob: 0be78eda658204fde9b2707cd23d6625fdbdaa8f [file] [log] [blame]
/**************************************************************
*
* 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_text_TextEmbeddedObject_idl__
#define __com_sun_star_text_TextEmbeddedObject_idl__
#ifndef __com_sun_star_document_XEmbeddedObjectSupplier_idl__
#include <com/sun/star/document/XEmbeddedObjectSupplier.idl>
#endif
#ifndef __com_sun_star_text_BaseFrame_idl__
#include <com/sun/star/text/BaseFrame.idl>
#endif
#ifndef __com_sun_star_frame_XModel_idl__
#include <com/sun/star/frame/XModel.idl>
#endif
//=============================================================================
module com { module sun { module star { module text {
//=============================================================================
// DocMerge from xml: service com::sun::star::text::TextEmbeddedObject
/** provides access to the properties and methods of an embedded object.
*/
published service TextEmbeddedObject
{
/** contains the definition of interfaces and properties that are supported by text frames,
graphic objects and embeddedobjects.
*/
service BaseFrame;
// DocMerge: empty anyway
interface com::sun::star::document::XEmbeddedObjectSupplier;
/* If you get this property you get the CLSID of the OLE2 document stream
contained in this OLE2 shape. If you set it, an empty OLE2 document stream
with this CLSID is created within this OLE2 shape.
The property can only be set as long as the object is not inserted into the document.
*/
[property] string CLSID;
//-------------------------------------------------------------------------
/** This is the model for the OLE2 object.
<p>This property if void if the ole2 is not an
Office component.</p>
*/
[readonly, maybevoid, property] com::sun::star::frame::XModel Model;
//-------------------------------------------------------------------------
/** This is the component for the OLE2 object.
*/
[readonly, maybevoid, property] com::sun::star::lang::XComponent Component;
};
//=============================================================================
}; }; }; };
#endif