update dev300-m58
[ooovba.git] / dbaccess / source / ui / inc / WExtendPages.hxx
blob5822f5e81738c7900f4a943d4d7190a0de37f219
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: WExtendPages.hxx,v $
10 * $Revision: 1.6 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef DBAUI_WIZ_EXTENDPAGES_HXX
31 #define DBAUI_WIZ_EXTENDPAGES_HXX
33 #ifndef DBAUI_WIZ_TYPESELECT_HXX
34 #include "WTypeSelect.hxx"
35 #endif
37 class SvStream;
38 namespace dbaui
40 // ========================================================
41 // Wizard Page: OWizHTMLExtend
42 // ========================================================
43 class OWizHTMLExtend : public OWizTypeSelect
45 protected:
46 virtual SvParser* createReader(sal_Int32 _nRows);
47 public:
48 OWizHTMLExtend(Window* pParent, SvStream& _rStream)
49 : OWizTypeSelect( pParent, &_rStream )
53 static OWizTypeSelect* Create( Window* _pParent, SvStream& _rInput ) { return new OWizHTMLExtend( _pParent, _rInput ); }
55 virtual ~OWizHTMLExtend(){}
57 // ========================================================
58 // Wizard Page: OWizRTFExtend
59 // ========================================================
60 class OWizRTFExtend : public OWizTypeSelect
62 protected:
63 virtual SvParser* createReader(sal_Int32 _nRows);
64 public:
65 OWizRTFExtend(Window* pParent,SvStream& _rStream)
66 : OWizTypeSelect( pParent, &_rStream )
70 static OWizTypeSelect* Create( Window* _pParent, SvStream& _rInput ) { return new OWizRTFExtend( _pParent, _rInput ); }
72 virtual ~OWizRTFExtend(){}
75 // ========================================================
76 // Wizard Page: OWizNormalExtend
77 // ========================================================
78 class OWizNormalExtend : public OWizTypeSelect
80 protected:
81 virtual SvParser* createReader(sal_Int32 _nRows);
82 public:
83 OWizNormalExtend(Window* pParent);
86 #endif // DBAUI_WIZ_EXTENDPAGES_HXX