summaryrefslogtreecommitdiff
path: root/sc/source/ui/vba/vbadialog.hxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2007-04-25 15:05:33 +0000
committerRüdiger Timm <rt@openoffice.org>2007-04-25 15:05:33 +0000
commitaa05ab519bd69404a3a0d328cff2a21e09c443d8 (patch)
treef09835c3af48eb1b8fd4979d82b14502ea5ca089 /sc/source/ui/vba/vbadialog.hxx
parentdcb89a96a4fde238f53f3259784b9ebe969ec993 (diff)
INTEGRATION: CWS npower6 (1.1.2); FILE ADDED
2007/02/21 17:29:19 npower 1.1.2.2: #i74096 add license 2007/02/07 21:17:53 npower 1.1.2.1: #i74096# add compatibility api implementation
Diffstat (limited to 'sc/source/ui/vba/vbadialog.hxx')
-rw-r--r--sc/source/ui/vba/vbadialog.hxx69
1 files changed, 69 insertions, 0 deletions
diff --git a/sc/source/ui/vba/vbadialog.hxx b/sc/source/ui/vba/vbadialog.hxx
new file mode 100644
index 000000000000..22dfc7542ac5
--- /dev/null
+++ b/sc/source/ui/vba/vbadialog.hxx
@@ -0,0 +1,69 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: vbadialog.hxx,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: rt $ $Date: 2007-04-25 16:05:33 $
+ *
+ * The Contents of this file are made available subject to
+ * the terms of GNU Lesser General Public License Version 2.1.
+ *
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2005 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ ************************************************************************/
+#ifndef SC_VBA_DIALOG_HXX
+#define SC_VBA_DIALOG_HXX
+
+#include <cppuhelper/implbase1.hxx>
+
+#include <com/sun/star/uno/XComponentContext.hpp>
+#include <org/openoffice/vba/XGlobals.hpp>
+#include <org/openoffice/excel/XApplication.hpp>
+#include <org/openoffice/excel/XDialog.hpp>
+
+#include "vbahelper.hxx"
+#include "vbadialog.hxx"
+
+typedef ::cppu::WeakImplHelper1< oo::excel::XDialog > ScVbaDialog_BASE;
+
+class ScVbaDialog : public ScVbaDialog_BASE
+{
+ sal_Int32 mnIndex;
+ css::uno::Reference< css::uno::XComponentContext > m_xContext;
+public:
+ ScVbaDialog( sal_Int32 nIndex, css::uno::Reference< css::uno::XComponentContext > xContext ):
+ mnIndex( nIndex ),
+ m_xContext( xContext ) {}
+ virtual ~ScVbaDialog() {}
+
+ // Attributes
+ virtual css::uno::Reference< oo::excel::XApplication > SAL_CALL getApplication() throw (css::uno::RuntimeException);
+ virtual css::uno::Any SAL_CALL getParent() throw (css::uno::RuntimeException);
+ virtual sal_Int32 SAL_CALL getCreator() throw(css::uno::RuntimeException);
+ // Methods
+ virtual void SAL_CALL Show() throw (css::uno::RuntimeException);
+ rtl::OUString mapIndexToName( sal_Int32 nIndex );
+};
+
+#endif /* SC_VBA_DIALOG_HXX */