summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/XView.idl
diff options
context:
space:
mode:
authorMichael Hönnig <mi@openoffice.org>2002-10-03 12:11:20 +0000
committerMichael Hönnig <mi@openoffice.org>2002-10-03 12:11:20 +0000
commitcb23f6a62077022736a40d6315ee92a218f489e0 (patch)
tree713895d0de4930fd1a37b2fb7bb6ded971a2acdf /offapi/com/sun/star/awt/XView.idl
parent625aff4ec7a47d618a9da160e962fc6fb5c834c5 (diff)
#94968# IDL reviews merged
Diffstat (limited to 'offapi/com/sun/star/awt/XView.idl')
-rw-r--r--offapi/com/sun/star/awt/XView.idl56
1 files changed, 8 insertions, 48 deletions
diff --git a/offapi/com/sun/star/awt/XView.idl b/offapi/com/sun/star/awt/XView.idl
index cc0a44aa641b..848830b656de 100644
--- a/offapi/com/sun/star/awt/XView.idl
+++ b/offapi/com/sun/star/awt/XView.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: XView.idl,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: jsc $ $Date: 2001-03-16 16:41:13 $
+ * last change: $Author: mi $ $Date: 2002-10-03 13:01:17 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -80,67 +80,47 @@
//=============================================================================
-// DocMerge from xml: interface com::sun::star::awt::XView
/** makes it possible to attach an oputput device to the object.
-
-
- <p>This kind of object is called view-object.</p>@see XViewable
+ <p>This kind of object is called view-object.</p>
*/
interface XView: com::sun::star::uno::XInterface
{
//-------------------------------------------------------------------------
- // DocMerge from xml: method com::sun::star::awt::XView::setGraphics
/** sets the output device.
-
- @see XView::getDevice
*/
boolean setGraphics( [in] com::sun::star::awt::XGraphics aDevice );
//-------------------------------------------------------------------------
- // DocMerge from idl: method com::sun::star::awt::XView::getGraphics
- /** @returns
- the output device which was set using the method
- <member>XView::setGraphics()</member>
-
- @see XView::setDevice
+ /** returns the output device which was set using the method
+ <member>XView::setGraphics</member>.
*/
com::sun::star::awt::XGraphics getGraphics();
//-------------------------------------------------------------------------
- // DocMerge from idl: method com::sun::star::awt::XView::getSize
- /** @returns
- the size of the object in device units. A device must be set before.
+ /** returns the size of the object in device units.
- @see XView::draw
+ <p>A device must be set before.</p>
*/
com::sun::star::awt::Size getSize();
//-------------------------------------------------------------------------
- // DocMerge from xml: method com::sun::star::awt::XView::draw
/** draws the object at the specified position.
-
-
<p>If the output should be clipped, the caller has to set the
- clipping region. </p>
-
- @see XView::getSize
+ clipping region.</p>
*/
[oneway] void draw( [in] long nX,
[in] long nY );
//-------------------------------------------------------------------------
- // DocMerge from xml: method com::sun::star::awt::XView::setZoom
/** sets the zoom factor.
-
-
<p>The zoom factor only affects the content of the view, not the size.</p>
*/
[oneway] void setZoom( [in] float fZoomX,
@@ -152,24 +132,4 @@ interface XView: com::sun::star::uno::XInterface
}; }; }; };
-/*=============================================================================
-
- $Log: not supported by cvs2svn $
- Revision 1.4 2000/12/19 16:03:23 mi
- documentations syntax errors fixed
-
- Revision 1.3 2000/11/08 12:42:11 mi
- moved from api
-
- Revision 1.1.1.1 2000/09/18 23:34:50 hjs
- initial import
-
- Revision 1.3 2000/09/11 11:52:10 mi
- documentation merged from XML
-
- Revision 1.1.1.1 1999/11/11 09:48:40 jsc
- new
-
-
-=============================================================================*/
#endif