/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * 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 . */ #ifndef INCLUDED_SW_SOURCE_FILTER_WW8_WW8FFDATA_HXX #define INCLUDED_SW_SOURCE_FILTER_WW8_WW8FFDATA_HXX #include #include class SvStream; namespace sw { class WW8FFData final { private: // offset 0x4 sal_uInt8 mnType; // :2 0x3 sal_uInt8 mnResult; // :5 0x7c bool mbOwnHelp; // :1 0x80 // offset 5 bool mbOwnStat; // :1 0x01 bool mbProtected; // :1 0x02 bool mbSize; // :1 0x04 sal_uInt8 mnTextType; // :3 0x38 bool mbRecalc; // :1 0x4 bool mbListBox; // :1 0x80 // offset 6 sal_uInt16 mnMaxLen; // :15 0x7fff maximum length of text field, 0 <=> no limit // offset 8 sal_uInt16 mnCheckboxHeight; // offset 10 and beyond OUString msName; OUString msDefault; // only for type == 0 sal_uInt16 mnDefault; // only for type != 0 OUString msFormat; OUString msHelp; OUString msStatus; OUString msMacroEnter; OUString msMacroExit; std::vector msListEntries; static void WriteOUString(SvStream* pStream, const OUString& rStr, bool bAddZero); public: WW8FFData(); ~WW8FFData(); void setType(sal_uInt8 nType) { mnType = nType; } void setResult(sal_uInt8 nResult) { mnResult = nResult; } void setName(const OUString& rName) { msName = rName; } void setHelp(const OUString& rHelp); void setStatus(const OUString& rStatus); void addListboxEntry(const OUString& rEntry); void Write(SvStream* pDataStrm); }; } #endif // INCLUDED_SW_SOURCE_FILTER_WW8_WW8FFDATA_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */