xref: /AOO41X/main/reportdesign/inc/RptModel.hxx (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir #ifndef REPORT_RPTMODEL_HXX
28*cdf0e10cSrcweir #define REPORT_RPTMODEL_HXX
29*cdf0e10cSrcweir 
30*cdf0e10cSrcweir #include "dllapi.h"
31*cdf0e10cSrcweir #include <svx/svdmodel.hxx>
32*cdf0e10cSrcweir #include <com/sun/star/report/XReportDefinition.hpp>
33*cdf0e10cSrcweir 
34*cdf0e10cSrcweir 
35*cdf0e10cSrcweir class Window;
36*cdf0e10cSrcweir namespace dbaui
37*cdf0e10cSrcweir {
38*cdf0e10cSrcweir     class DBSubComponentController;
39*cdf0e10cSrcweir }
40*cdf0e10cSrcweir namespace reportdesign
41*cdf0e10cSrcweir {
42*cdf0e10cSrcweir     class OReportDefinition;
43*cdf0e10cSrcweir }
44*cdf0e10cSrcweir namespace rptui
45*cdf0e10cSrcweir {
46*cdf0e10cSrcweir //============================================================================
47*cdf0e10cSrcweir // OReportModel
48*cdf0e10cSrcweir //============================================================================
49*cdf0e10cSrcweir 
50*cdf0e10cSrcweir class OReportPage;
51*cdf0e10cSrcweir class OXUndoEnvironment;
52*cdf0e10cSrcweir 
53*cdf0e10cSrcweir class REPORTDESIGN_DLLPUBLIC OReportModel : public SdrModel
54*cdf0e10cSrcweir {
55*cdf0e10cSrcweir 	friend class OReportPage;
56*cdf0e10cSrcweir 
57*cdf0e10cSrcweir private:
58*cdf0e10cSrcweir 	OXUndoEnvironment*	                m_pUndoEnv;
59*cdf0e10cSrcweir     ::dbaui::DBSubComponentController*	m_pController;
60*cdf0e10cSrcweir     ::reportdesign::OReportDefinition*  m_pReportDefinition;
61*cdf0e10cSrcweir 
62*cdf0e10cSrcweir     virtual ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > createUnoModel();
63*cdf0e10cSrcweir 
64*cdf0e10cSrcweir 	OReportModel( const OReportModel& );
65*cdf0e10cSrcweir 	void operator=(const OReportModel& rSrcModel);
66*cdf0e10cSrcweir public:
67*cdf0e10cSrcweir 	TYPEINFO();
68*cdf0e10cSrcweir 
69*cdf0e10cSrcweir     OReportModel(::reportdesign::OReportDefinition* _pReportDefinition);
70*cdf0e10cSrcweir     virtual ~OReportModel();
71*cdf0e10cSrcweir 
72*cdf0e10cSrcweir 	virtual void        SetChanged(sal_Bool bFlg = sal_True);
73*cdf0e10cSrcweir 	virtual SdrPage*    AllocPage(FASTBOOL bMasterPage);
74*cdf0e10cSrcweir 	virtual Window*     GetCurDocViewWin();
75*cdf0e10cSrcweir     virtual SdrPage*    RemovePage(sal_uInt16 nPgNum);
76*cdf0e10cSrcweir     /** returns the numbering type that is used to format page fields in drawing shapes */
77*cdf0e10cSrcweir 	virtual SvxNumType  GetPageNumType() const;
78*cdf0e10cSrcweir 
79*cdf0e10cSrcweir 	OXUndoEnvironment&  GetUndoEnv();
80*cdf0e10cSrcweir 	void                SetModified(sal_Bool _bModified);
81*cdf0e10cSrcweir 
82*cdf0e10cSrcweir     inline dbaui::DBSubComponentController* getController() const { return m_pController; }
83*cdf0e10cSrcweir     inline void attachController( dbaui::DBSubComponentController& _rController ) { m_pController = &_rController; }
84*cdf0e10cSrcweir     void detachController();
85*cdf0e10cSrcweir 
86*cdf0e10cSrcweir     OReportPage* createNewPage(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection >& _xSection);
87*cdf0e10cSrcweir 
88*cdf0e10cSrcweir     /** returns the page which belongs to a section
89*cdf0e10cSrcweir     *
90*cdf0e10cSrcweir     * \param _xSection
91*cdf0e10cSrcweir     * \return The page or <NULL/> when t�no page could be found.
92*cdf0e10cSrcweir     */
93*cdf0e10cSrcweir     OReportPage* getPage(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection >& _xSection);
94*cdf0e10cSrcweir 
95*cdf0e10cSrcweir     /// returns the XReportDefinition which the OReportModel belongs to
96*cdf0e10cSrcweir     ::com::sun::star::uno::Reference< ::com::sun::star::report::XReportDefinition >
97*cdf0e10cSrcweir                 getReportDefinition() const;
98*cdf0e10cSrcweir 
99*cdf0e10cSrcweir     ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > createShape(const ::rtl::OUString& aServiceSpecifier,::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape >& _rShape,sal_Int32 nOrientation = -1);
100*cdf0e10cSrcweir };
101*cdf0e10cSrcweir }
102*cdf0e10cSrcweir #endif
103*cdf0e10cSrcweir 
104