1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
28 #ifndef SC_VBA_MULTIPAGE_HXX
29 #define SC_VBA_MULTIPAGE_HXX
30 #include <cppuhelper/implbase1.hxx>
31 #include <ooo/vba/msforms/XMultiPage.hpp>
32 #include <com/sun/star/container/XIndexAccess.hpp>
34 #include "vbacontrol.hxx"
35 #include <vbahelper/vbahelper.hxx>
37 typedef cppu::ImplInheritanceHelper1
< ScVbaControl
, ov::msforms::XMultiPage
> MultiPageImpl_BASE
;
39 class ScVbaMultiPage
: public MultiPageImpl_BASE
41 css::uno::Reference
< css::container::XIndexAccess
> getPages( sal_Int32 nPages
);
44 const css::uno::Reference
< ov::XHelperInterface
>& xParent
,
45 const css::uno::Reference
< css::uno::XComponentContext
>& xContext
,
46 const css::uno::Reference
< css::uno::XInterface
>& xControl
,
47 const css::uno::Reference
< css::frame::XModel
>& xModel
,
48 ov::AbstractGeometryAttributes
* pGeomHelper
);
51 virtual sal_Int32 SAL_CALL
getValue() throw (css::uno::RuntimeException
);
52 virtual void SAL_CALL
setValue( sal_Int32 _value
) throw (css::uno::RuntimeException
);
53 virtual css::uno::Any SAL_CALL
Pages( const css::uno::Any
& index
) throw (css::uno::RuntimeException
);
56 virtual rtl::OUString
getServiceImplName();
57 virtual css::uno::Sequence
<rtl::OUString
> getServiceNames();
59 rtl::OUString SAL_CALL
getDefaultPropertyName( ) throw (css::uno::RuntimeException
) { return ::rtl::OUString("Value"); }
61 #endif //SC_VBA_LABEL_HXX
63 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */