summaryrefslogtreecommitdiff
path: root/toolkit/inc/toolkit/awt/vclxwindows.hxx
diff options
context:
space:
mode:
authorThomas Benisch <tbe@openoffice.org>2002-05-17 09:03:01 +0000
committerThomas Benisch <tbe@openoffice.org>2002-05-17 09:03:01 +0000
commit790feb1b7fcd6fb44d1ebce424eeb016c9a59033 (patch)
treec045d7f20478514be051229b7d04bb258c4904a2 /toolkit/inc/toolkit/awt/vclxwindows.hxx
parent604f2b465ef79a46a9c75e5a3df824965f7a5e13 (diff)
#97222# added VCLXMenuWindow
Diffstat (limited to 'toolkit/inc/toolkit/awt/vclxwindows.hxx')
-rw-r--r--toolkit/inc/toolkit/awt/vclxwindows.hxx19
1 files changed, 17 insertions, 2 deletions
diff --git a/toolkit/inc/toolkit/awt/vclxwindows.hxx b/toolkit/inc/toolkit/awt/vclxwindows.hxx
index 77c136d3d6a6..3d68efff589d 100644
--- a/toolkit/inc/toolkit/awt/vclxwindows.hxx
+++ b/toolkit/inc/toolkit/awt/vclxwindows.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: vclxwindows.hxx,v $
*
- * $Revision: 1.17 $
+ * $Revision: 1.18 $
*
- * last change: $Author: tbe $ $Date: 2002-04-11 09:32:28 $
+ * last change: $Author: tbe $ $Date: 2002-05-17 10:01:18 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1101,6 +1101,21 @@ public:
::com::sun::star::uno::Any SAL_CALL getProperty( const ::rtl::OUString& PropertyName ) throw(::com::sun::star::uno::RuntimeException);
};
+// ----------------------------------------------------
+// class VCLXMenuWindow
+// ----------------------------------------------------
+class VCLXMenuWindow : public VCLXWindow
+{
+private:
+ Menu* mpMenu;
+
+protected:
+ virtual ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessibleContext > CreateAccessibleContext();
+
+public:
+ VCLXMenuWindow( Menu* pMenu );
+ ~VCLXMenuWindow();
+};
#endif // _TOOLKIT_AWT_VCLXWINDOWS_HXX_