Branch data 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 DBAUI_WIZ_EXTENDPAGES_HXX
20 : : #define DBAUI_WIZ_EXTENDPAGES_HXX
21 : :
22 : : #include "WTypeSelect.hxx"
23 : :
24 : : class SvStream;
25 : : namespace dbaui
26 : : {
27 : : // ========================================================
28 : : // Wizard Page: OWizHTMLExtend
29 : : // ========================================================
30 : : class OWizHTMLExtend : public OWizTypeSelect
31 : : {
32 : : protected:
33 : : virtual SvParser* createReader(sal_Int32 _nRows);
34 : : public:
35 : 0 : OWizHTMLExtend(Window* pParent, SvStream& _rStream)
36 : 0 : : OWizTypeSelect( pParent, &_rStream )
37 : : {
38 : 0 : }
39 : :
40 [ # # ]: 0 : static OWizTypeSelect* Create( Window* _pParent, SvStream& _rInput ) { return new OWizHTMLExtend( _pParent, _rInput ); }
41 : :
42 [ # # ]: 0 : virtual ~OWizHTMLExtend(){}
43 : : };
44 : : // ========================================================
45 : : // Wizard Page: OWizRTFExtend
46 : : // ========================================================
47 : : class OWizRTFExtend : public OWizTypeSelect
48 : : {
49 : : protected:
50 : : virtual SvParser* createReader(sal_Int32 _nRows);
51 : : public:
52 : 0 : OWizRTFExtend(Window* pParent,SvStream& _rStream)
53 : 0 : : OWizTypeSelect( pParent, &_rStream )
54 : : {
55 : 0 : }
56 : :
57 [ # # ]: 0 : static OWizTypeSelect* Create( Window* _pParent, SvStream& _rInput ) { return new OWizRTFExtend( _pParent, _rInput ); }
58 : :
59 [ # # ]: 0 : virtual ~OWizRTFExtend(){}
60 : : };
61 : :
62 : : // ========================================================
63 : : // Wizard Page: OWizNormalExtend
64 : : // ========================================================
65 [ # # ]: 0 : class OWizNormalExtend : public OWizTypeSelect
66 : : {
67 : : protected:
68 : : virtual SvParser* createReader(sal_Int32 _nRows);
69 : : public:
70 : : OWizNormalExtend(Window* pParent);
71 : : };
72 : : }
73 : : #endif // DBAUI_WIZ_EXTENDPAGES_HXX
74 : :
75 : :
76 : :
77 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|