Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 : #ifndef _SVX_FMDPAGE_HXX
20 : #define _SVX_FMDPAGE_HXX
21 :
22 : #include <com/sun/star/form/XFormsSupplier2.hpp>
23 : #include <svx/unopage.hxx>
24 : #include <comphelper/uno3.hxx>
25 : #include "svx/svxdllapi.h"
26 :
27 : //==================================================================
28 : // SvxFmDrawPage
29 : //==================================================================
30 : class SVX_DLLPUBLIC SvxFmDrawPage :public SvxDrawPage
31 : ,public ::com::sun::star::form::XFormsSupplier2
32 : {
33 : protected:
34 :
35 : // Creating a SdrObject based on a Description. Cann be used by derived classes to
36 : // support own ::com::sun::star::drawing::Shapes (for example Controls)
37 : virtual SdrObject *_CreateSdrObject( const ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape > & xShape )throw ();
38 :
39 : // The following method is called when a SvxShape object should be created.
40 : // Derived classes can create a derivation or an object aggregating SvxShape.
41 : virtual ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape > _CreateShape( SdrObject *pObj ) const throw ();
42 :
43 : public:
44 : SvxFmDrawPage( SdrPage* pPage );
45 : virtual ~SvxFmDrawPage() throw ();
46 :
47 : // UNO connection
48 411547 : DECLARE_UNO3_AGG_DEFAULTS(SvxFmDrawPage, SvxDrawPage);
49 :
50 : virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( const ::com::sun::star::uno::Type& aType ) throw(::com::sun::star::uno::RuntimeException);
51 : virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw(::com::sun::star::uno::RuntimeException);
52 :
53 : virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes( ) throw(::com::sun::star::uno::RuntimeException);
54 :
55 : // XFormsSupplier
56 : virtual ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer > SAL_CALL getForms(void) throw( ::com::sun::star::uno::RuntimeException );
57 :
58 : // XFormsSupplier2
59 : virtual sal_Bool SAL_CALL hasForms(void) throw( ::com::sun::star::uno::RuntimeException );
60 :
61 : // ::com::sun::star::lang::XServiceInfo
62 : virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames(void) throw( ::com::sun::star::uno::RuntimeException );
63 : };
64 :
65 : #endif // _SVX_FMDPAGE_HXX
66 :
67 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|