summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/embed/XInplaceClient.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/embed/XInplaceClient.idl')
-rw-r--r--offapi/com/sun/star/embed/XInplaceClient.idl15
1 files changed, 0 insertions, 15 deletions
diff --git a/offapi/com/sun/star/embed/XInplaceClient.idl b/offapi/com/sun/star/embed/XInplaceClient.idl
index 7582ed467031..99b4abf524be 100644
--- a/offapi/com/sun/star/embed/XInplaceClient.idl
+++ b/offapi/com/sun/star/embed/XInplaceClient.idl
@@ -39,16 +39,13 @@
#include <com/sun/star/embed/WrongStateException.idl>
-//============================================================================
module com { module sun { module star { module embed {
-//============================================================================
/** represents common functionality for inplace clients.
*/
interface XInplaceClient: com::sun::star::uno::XInterface
{
- //------------------------------------------------------------------------
/** checks if the container can activate the object inplace.
@return
@@ -57,7 +54,6 @@ interface XInplaceClient: com::sun::star::uno::XInterface
*/
boolean canInplaceActivate();
- //------------------------------------------------------------------------
/** notifies container through the client that the object is to be
inplace activated.
@@ -67,7 +63,6 @@ interface XInplaceClient: com::sun::star::uno::XInterface
void activatingInplace()
raises( ::com::sun::star::embed::WrongStateException );
- //------------------------------------------------------------------------
/** notifies container through the client that the object is to be
UI-activated.
@@ -77,7 +72,6 @@ interface XInplaceClient: com::sun::star::uno::XInterface
void activatingUI()
raises( ::com::sun::star::embed::WrongStateException );
- //------------------------------------------------------------------------
/** notifies container through the client that the object is deactivated.
@throws com::sun::star::embed::WrongStateException
@@ -86,7 +80,6 @@ interface XInplaceClient: com::sun::star::uno::XInterface
void deactivatedInplace()
raises( ::com::sun::star::embed::WrongStateException );
- //------------------------------------------------------------------------
/** notifies container through the client that the object is
UI-deactivated.
@@ -100,7 +93,6 @@ interface XInplaceClient: com::sun::star::uno::XInterface
void deactivatedUI()
raises( ::com::sun::star::embed::WrongStateException );
- //------------------------------------------------------------------------
/** allows to retrieve the
<type scope="com::sun::star::frame">LayoutManager</type> of the
container.
@@ -116,7 +108,6 @@ interface XInplaceClient: com::sun::star::uno::XInterface
::com::sun::star::frame::XLayoutManager getLayoutManager()
raises( ::com::sun::star::embed::WrongStateException );
- //------------------------------------------------------------------------
/** allows to retrieve the container's dispatch provider.
@return
@@ -129,7 +120,6 @@ interface XInplaceClient: com::sun::star::uno::XInterface
::com::sun::star::frame::XDispatchProvider getInplaceDispatchProvider()
raises( ::com::sun::star::embed::WrongStateException );
- //------------------------------------------------------------------------
/** gets the inplace object position rectangle.
<p>
@@ -149,7 +139,6 @@ interface XInplaceClient: com::sun::star::uno::XInterface
::com::sun::star::awt::Rectangle getPlacement()
raises( ::com::sun::star::embed::WrongStateException );
- //------------------------------------------------------------------------
/** gets the inplace object clip rectangle.
<p>
@@ -167,7 +156,6 @@ interface XInplaceClient: com::sun::star::uno::XInterface
::com::sun::star::awt::Rectangle getClipRectangle()
raises( ::com::sun::star::embed::WrongStateException );
- //------------------------------------------------------------------------
/** provides accelerator table the object wants to use while it is
inplace active.
@@ -180,7 +168,6 @@ interface XInplaceClient: com::sun::star::uno::XInterface
void translateAccelerators( [in] sequence< ::com::sun::star::awt::KeyEvent > aKeys )
raises( ::com::sun::star::embed::WrongStateException );
- //------------------------------------------------------------------------
/** scrolls the object.
@param aOffset
@@ -192,7 +179,6 @@ interface XInplaceClient: com::sun::star::uno::XInterface
void scrollObject( [in] ::com::sun::star::awt::Size aOffset )
raises( ::com::sun::star::embed::WrongStateException );
- //------------------------------------------------------------------------
/** notifies the container that the position of the object is changed.
@param aPosRect
@@ -209,7 +195,6 @@ interface XInplaceClient: com::sun::star::uno::XInterface
::com::sun::star::uno::Exception );
};
-//============================================================================
}; }; }; };