summaryrefslogtreecommitdiffstats
path: root/offapi/com/sun/star/awt/XTopWindow.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/awt/XTopWindow.idl')
-rw-r--r--offapi/com/sun/star/awt/XTopWindow.idl8
1 files changed, 0 insertions, 8 deletions
diff --git a/offapi/com/sun/star/awt/XTopWindow.idl b/offapi/com/sun/star/awt/XTopWindow.idl
index b8b1ebf9fea8..54ea83062ed4 100644
--- a/offapi/com/sun/star/awt/XTopWindow.idl
+++ b/offapi/com/sun/star/awt/XTopWindow.idl
@@ -26,45 +26,38 @@
#include <com/sun/star/awt/XMenuBar.idl>
-//=============================================================================
module com { module sun { module star { module awt {
-//=============================================================================
/** manages the functionality specific for a top window.
*/
published interface XTopWindow: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/** adds the specified top window listener to receive window events from
this window.
*/
[oneway] void addTopWindowListener( [in] com::sun::star::awt::XTopWindowListener xListener );
- //-------------------------------------------------------------------------
/** removes the specified top window listener so that it no longer
receives window events from this window.
*/
[oneway] void removeTopWindowListener( [in] com::sun::star::awt::XTopWindowListener xListener );
- //-------------------------------------------------------------------------
/** places this window at the top of the stacking order and
shows it in front of any other windows.
*/
[oneway] void toFront();
- //-------------------------------------------------------------------------
/** places this window at the bottom of the stacking order and
makes the corresponding adjustment to other visible windows.
*/
[oneway] void toBack();
- //-------------------------------------------------------------------------
/** sets a menu bar.
*/
@@ -72,7 +65,6 @@ published interface XTopWindow: com::sun::star::uno::XInterface
};
-//=============================================================================
}; }; }; };