/* -*- 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/. */ #ifndef INCLUDED_SC_INC_FONTHELPER_HXX #define INCLUDED_SC_INC_FONTHELPER_HXX #include "scdllapi.h" #include #include #include #include #include class SvxFontItem; struct SC_DLLPUBLIC ScDxfFont { o3tl::optional pFontAttr; o3tl::optional nFontHeight; o3tl::optional eWeight; o3tl::optional eItalic; o3tl::optional eUnder; o3tl::optional eOver; o3tl::optional bWordLine; o3tl::optional eStrike; o3tl::optional bOutline; o3tl::optional bShadow; o3tl::optional eEmphasis; o3tl::optional eRelief; o3tl::optional aColor; o3tl::optional eLang; bool isEmpty() const { return !(pFontAttr || nFontHeight || eWeight || eItalic || eUnder || eOver || bWordLine || eStrike || bOutline || bShadow || eEmphasis || eRelief || aColor || eLang); } }; #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */