Update ooo320-m1
[ooovba.git] / svx / source / cui / opthtml.hxx
bloba6e131cef86a8f11c6b47e0f765c234618367aa3
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: opthtml.hxx,v $
10 * $Revision: 1.5 $
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 _OFA_OPTHTML_HXX
31 #define _OFA_OPTHTML_HXX
34 #ifndef _BUTTON_HXX
35 #include <vcl/button.hxx>
36 #endif
37 #ifndef _FIELD_HXX
38 #include <vcl/field.hxx>
39 #endif
40 #ifndef _FIXED_HXX
41 #include <vcl/fixed.hxx>
42 #endif
43 #ifndef _VCL_LSTBOX_HXX
44 #include <vcl/lstbox.hxx>
45 #endif
46 #ifndef _GROUP_HXX
47 #include <vcl/group.hxx>
48 #endif
49 #include <sfx2/tabdlg.hxx>
50 #include "txencbox.hxx"
53 class OfaHtmlTabPage : public SfxTabPage
55 FixedLine aFontSizeGB;
56 FixedText aSize1FT;
57 NumericField aSize1NF;
58 FixedText aSize2FT;
59 NumericField aSize2NF;
60 FixedText aSize3FT;
61 NumericField aSize3NF;
62 FixedText aSize4FT;
63 NumericField aSize4NF;
64 FixedText aSize5FT;
65 NumericField aSize5NF;
66 FixedText aSize6FT;
67 NumericField aSize6NF;
68 FixedText aSize7FT;
69 NumericField aSize7NF;
71 FixedLine aImportGB;
72 CheckBox aNumbersEnglishUSCB;
73 CheckBox aUnknownTagCB;
74 CheckBox aIgnoreFontNamesCB;
76 FixedLine aExportGB;
77 ListBox aExportLB;
78 CheckBox aStarBasicCB;
79 CheckBox aStarBasicWarningCB;
80 CheckBox aPrintExtensionCB;
81 CheckBox aSaveGrfLocalCB;
82 FixedText aCharSetFT;
83 SvxTextEncodingBox aCharSetLB;
85 DECL_LINK(ExportHdl_Impl, ListBox*);
86 DECL_LINK(CheckBoxHdl_Impl, CheckBox*);
88 OfaHtmlTabPage(Window* pParent, const SfxItemSet& rSet);
89 virtual ~OfaHtmlTabPage();
90 public:
92 static SfxTabPage* Create( Window* pParent,
93 const SfxItemSet& rAttrSet );
95 virtual BOOL FillItemSet( SfxItemSet& rSet );
96 virtual void Reset( const SfxItemSet& rSet );
101 #endif //