/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #ifndef _OFA_OPTHTML_HXX #define _OFA_OPTHTML_HXX #include #include #include #include #include #include #include class OfaHtmlTabPage : public SfxTabPage { FixedLine aFontSizeGB; FixedText aSize1FT; NumericField aSize1NF; FixedText aSize2FT; NumericField aSize2NF; FixedText aSize3FT; NumericField aSize3NF; FixedText aSize4FT; NumericField aSize4NF; FixedText aSize5FT; NumericField aSize5NF; FixedText aSize6FT; NumericField aSize6NF; FixedText aSize7FT; NumericField aSize7NF; FixedLine aImportGB; CheckBox aNumbersEnglishUSCB; CheckBox aUnknownTagCB; CheckBox aIgnoreFontNamesCB; FixedLine aExportGB; ListBox aExportLB; CheckBox aStarBasicCB; CheckBox aStarBasicWarningCB; CheckBox aPrintExtensionCB; CheckBox aSaveGrfLocalCB; FixedText aCharSetFT; SvxTextEncodingBox aCharSetLB; DECL_LINK(ExportHdl_Impl, ListBox*); DECL_LINK(CheckBoxHdl_Impl, CheckBox*); OfaHtmlTabPage(Window* pParent, const SfxItemSet& rSet); virtual ~OfaHtmlTabPage(); public: static SfxTabPage* Create( Window* pParent, const SfxItemSet& rAttrSet ); virtual sal_Bool FillItemSet( SfxItemSet& rSet ); virtual void Reset( const SfxItemSet& rSet ); }; #endif //