merged tag LIBREOFFICE_3_2_99_3
[LibreOffice.git] / extensions / source / dbpilots / wizardcontext.hxx
blob07d8fb0920c2709f7017f57b61620b379093e7b9
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 ************************************************************************/
29 #ifndef _EXTENSIONS_DBP_WIZARDCONTEXT_HXX_
30 #define _EXTENSIONS_DBP_WIZARDCONTEXT_HXX_
32 #include <com/sun/star/container/XNameAccess.hpp>
33 #include <com/sun/star/beans/XPropertySet.hpp>
34 #include <com/sun/star/sdbc/XRowSet.hpp>
35 #include <com/sun/star/uno/Sequence.hxx>
36 #include <com/sun/star/drawing/XDrawPage.hpp>
37 #include <com/sun/star/drawing/XControlShape.hpp>
38 #include <com/sun/star/frame/XModel.hpp>
39 #include <comphelper/stl_types.hxx>
41 //.........................................................................
42 namespace dbp
44 //.........................................................................
46 //=====================================================================
47 //= OControlWizardContext
48 //=====================================================================
49 struct OControlWizardContext
51 // the global data source context
52 ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess >
53 xDatasourceContext;
55 // the control mode
56 ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >
57 xObjectModel;
58 // the form the control model belongs to
59 ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >
60 xForm;
61 // the form as rowset
62 ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRowSet >
63 xRowSet;
65 // the model of the document
66 ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel >
67 xDocumentModel;
68 // the page where the control mode resides
69 ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XDrawPage >
70 xDrawPage;
71 // the shape which carries the control
72 ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XControlShape >
73 xObjectShape;
75 // the tables or queries of the data source the form is bound to (if any)
76 ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess >
77 xObjectContainer;
78 // the column types container of the object the form is bound to (table, query or SQL statement)
79 DECLARE_STL_USTRINGACCESS_MAP(sal_Int32,TNameTypeMap);
80 TNameTypeMap aTypes;
81 // the column names of the object the form is bound to (table, query or SQL statement)
82 ::com::sun::star::uno::Sequence< ::rtl::OUString >
83 aFieldNames;
85 sal_Bool bEmbedded;
88 //.........................................................................
89 } // namespace dbp
90 //.........................................................................
92 #endif // _EXTENSIONS_DBP_WIZARDCONTEXT_HXX_
94 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */