diff --git a/sc/inc/fonthelper.hxx b/sc/inc/fonthelper.hxx new file mode 100644 index 000000000000..c06930fd3cbc --- /dev/null +++ b/sc/inc/fonthelper.hxx @@ -0,0 +1,51 @@ +/* -*- 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 +{ + boost::optional pFontAttr; + boost::optional nFontHeight; + boost::optional eWeight; + boost::optional eItalic; + boost::optional eUnder; + boost::optional eOver; + boost::optional bWordLine; + boost::optional eStrike; + boost::optional bOutline; + boost::optional bShadow; + boost::optional eEmphasis; + boost::optional eRelief; + boost::optional aColor; + boost::optional eLang; + + bool isEmpty() + { + return !(pFontAttr || nFontHeight || + eWeight || eItalic || eUnder || + eOver || bWordLine || eStrike || + bOutline || bShadow || eEmphasis || + eRelief || aColor || eLang); + } +}; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */