bump product version to 4.1.6.2
[LibreOffice.git] / cui / source / options / opthtml.hxx
blob861ad5f9ee2a31f6a95103aaf3896e8e0b5fe1c8
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #ifndef _OFA_OPTHTML_HXX
20 #define _OFA_OPTHTML_HXX
22 #include <vcl/button.hxx>
23 #include <vcl/field.hxx>
24 #include <vcl/fixed.hxx>
25 #include <vcl/lstbox.hxx>
26 #include <vcl/group.hxx>
27 #include <sfx2/tabdlg.hxx>
28 #include <svx/txencbox.hxx>
30 class OfaHtmlTabPage : public SfxTabPage
32 FixedLine aFontSizeGB;
33 FixedText aSize1FT;
34 NumericField aSize1NF;
35 FixedText aSize2FT;
36 NumericField aSize2NF;
37 FixedText aSize3FT;
38 NumericField aSize3NF;
39 FixedText aSize4FT;
40 NumericField aSize4NF;
41 FixedText aSize5FT;
42 NumericField aSize5NF;
43 FixedText aSize6FT;
44 NumericField aSize6NF;
45 FixedText aSize7FT;
46 NumericField aSize7NF;
48 FixedLine aImportGB;
49 CheckBox aNumbersEnglishUSCB;
50 CheckBox aUnknownTagCB;
51 CheckBox aIgnoreFontNamesCB;
53 FixedLine aExportGB;
54 ListBox aExportLB;
55 CheckBox aStarBasicCB;
56 CheckBox aStarBasicWarningCB;
57 CheckBox aPrintExtensionCB;
58 CheckBox aSaveGrfLocalCB;
59 FixedText aCharSetFT;
60 SvxTextEncodingBox aCharSetLB;
62 DECL_LINK(ExportHdl_Impl, ListBox*);
63 DECL_LINK(CheckBoxHdl_Impl, CheckBox*);
65 OfaHtmlTabPage(Window* pParent, const SfxItemSet& rSet);
66 virtual ~OfaHtmlTabPage();
67 public:
69 static SfxTabPage* Create( Window* pParent,
70 const SfxItemSet& rAttrSet );
72 virtual sal_Bool FillItemSet( SfxItemSet& rSet );
73 virtual void Reset( const SfxItemSet& rSet );
78 #endif //
82 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */