summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2015-04-14 19:19:22 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2015-04-14 19:19:22 +0200
commit64e26b35802c4429dbf223f3e8c24fa12465f28e (patch)
tree88996691b3cde9911cacf3a7b9aa7f7aa02bf668 /sc
parenta623d1a0e65c4fb1f72f4ce87f462e5dcd8c3c45 (diff)
add missing file
Change-Id: I81dcd2c9f13a93e15689fed6491883e7d828ca99
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/fonthelper.hxx51
1 files changed, 51 insertions, 0 deletions
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 <boost/optional.hpp>
+#include <tools/fontenum.hxx>
+#include <tools/color.hxx>
+#include <vcl/fntstyle.hxx>
+#include <i18nlangtag/lang.h>
+
+class SvxFontItem;
+
+struct SC_DLLPUBLIC ScDxfFont
+{
+ boost::optional<const SvxFontItem*> pFontAttr;
+ boost::optional<sal_uInt32> nFontHeight;
+ boost::optional<FontWeight> eWeight;
+ boost::optional<FontItalic> eItalic;
+ boost::optional<FontUnderline> eUnder;
+ boost::optional<FontUnderline> eOver;
+ boost::optional<bool> bWordLine;
+ boost::optional<FontStrikeout> eStrike;
+ boost::optional<bool> bOutline;
+ boost::optional<bool> bShadow;
+ boost::optional<FontEmphasisMark> eEmphasis;
+ boost::optional<FontRelief> eRelief;
+ boost::optional<Color> aColor;
+ boost::optional<LanguageType> 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: */