diff options
author | Peter Burow <pb@openoffice.org> | 2001-06-15 08:39:31 +0000 |
---|---|---|
committer | Peter Burow <pb@openoffice.org> | 2001-06-15 08:39:31 +0000 |
commit | 8bb284ed3af9065e09016172ce127fd15a31c21a (patch) | |
tree | 66c641972b3cd5a31c6580df6de4545a023cf583 /framework/inc/services/frame.hxx | |
parent | 3f29abd5c9cd0d4558ae6298b8bdc6fa7e191666 (diff) |
fix: #88014# new member droptargetlistener
Diffstat (limited to 'framework/inc/services/frame.hxx')
-rw-r--r-- | framework/inc/services/frame.hxx | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/framework/inc/services/frame.hxx b/framework/inc/services/frame.hxx index a4995e1a9afc..1798ee120d2d 100644 --- a/framework/inc/services/frame.hxx +++ b/framework/inc/services/frame.hxx @@ -2,9 +2,9 @@ * * $RCSfile: frame.hxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: as $ $Date: 2001-06-11 12:52:41 $ + * last change: $Author: pb $ $Date: 2001-06-15 09:39:31 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -194,6 +194,10 @@ #include <com/sun/star/awt/FocusEvent.hpp> #endif +#ifndef _COM_SUN_STAR_DATATRANSFER_DND_XDROPTARGETELISTENER_HPP_ +#include <com/sun/star/datatransfer/dnd/XDropTargetListener.hpp> +#endif + //_________________________________________________________________________________________________________________ // other includes //_________________________________________________________________________________________________________________ @@ -531,6 +535,9 @@ class Frame : // interfaces css::uno::Reference< css::awt::XWindow > m_xContainerWindow ; /// containerwindow of this frame for embedded components css::uno::Reference< css::awt::XWindow > m_xComponentWindow ; /// window of the actual component css::uno::Reference< css::frame::XController > m_xController ; /// controller of the actual frame + css::uno::Reference< css::datatransfer::dnd::XDropTargetListener > + m_xDropTargetListener ; /// listen to d&d + EActiveState m_eActiveState ; /// state, if i'am a member of active path in tree or i have the focus or ... ::rtl::OUString m_sName ; /// name of this frame sal_Bool m_bIsFrameTop ; /// frame has no parent or the parent is a taskor the desktop |