/**************************************************************
 * 
 * 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_sheet_DDELink_idl__
#define __com_sun_star_sheet_DDELink_idl__

#ifndef __com_sun_star_container_XNamed_idl__
#include <com/sun/star/container/XNamed.idl>
#endif

#ifndef __com_sun_star_sheet_XDDELink_idl__
#include <com/sun/star/sheet/XDDELink.idl>
#endif

#ifndef __com_sun_star_util_XRefreshable_idl__
#include <com/sun/star/util/XRefreshable.idl>
#endif

#ifndef __com_sun_star_sheet_XDDELinkResults_idl__
#include <com/sun/star/sheet/XDDELinkResults.idl>
#endif

//=============================================================================

module com {  module sun {  module star {  module sheet {

//=============================================================================

/** represents a DDE link.

	<p>A DDE link controls the results of a DDE spreadsheet formula.</p>
 */
published service DDELink
{
	//-------------------------------------------------------------------------

	/** provides access to the name of the DDE link.

		<p>A DDE link has the form <const>Application|Topic!Item</const>.</p>
	 */
	interface com::sun::star::container::XNamed;

	//-------------------------------------------------------------------------

	/** provides methods to change the settings of the DDE link.
	 */
	interface com::sun::star::sheet::XDDELink;

	//-------------------------------------------------------------------------

	/** provides methods to reload the external linked data.
	 */
	interface com::sun::star::util::XRefreshable;

    //-------------------------------------------------------------------------

    /** provides access to the DDE link results.

        @since OpenOffice 3.0
     */
    [optional] interface com::sun::star::sheet::XDDELinkResults;

};

//=============================================================================

}; }; }; };

#endif