These flags mean nothing these days, there are either always true or always false, since we no longer support bitmap or Type 1 fonts. Change-Id: Ie14ca480225a6346d868a44e58e7666c3a06931d Reviewed-on: https://gerrit.libreoffice.org/31346 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Khaled Hosny <khaledhosny@eglug.org>
85 lines
3.6 KiB
C++
85 lines
3.6 KiB
C++
/* -*- 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_TOOLS_FONTENUM_HXX
|
|
#define INCLUDED_TOOLS_FONTENUM_HXX
|
|
|
|
#include <sal/types.h>
|
|
#include <o3tl/typed_flags_set.hxx>
|
|
|
|
enum FontFamily { FAMILY_DONTKNOW, FAMILY_DECORATIVE, FAMILY_MODERN,
|
|
FAMILY_ROMAN, FAMILY_SCRIPT, FAMILY_SWISS, FAMILY_SYSTEM, FontFamily_FORCE_EQUAL_SIZE=SAL_MAX_ENUM };
|
|
|
|
enum FontPitch { PITCH_DONTKNOW, PITCH_FIXED, PITCH_VARIABLE, FontPitch_FORCE_EQUAL_SIZE=SAL_MAX_ENUM };
|
|
|
|
enum TextAlign { ALIGN_TOP, ALIGN_BASELINE, ALIGN_BOTTOM, TextAlign_FORCE_EQUAL_SIZE=SAL_MAX_ENUM };
|
|
|
|
enum FontWeight { WEIGHT_DONTKNOW, WEIGHT_THIN, WEIGHT_ULTRALIGHT,
|
|
WEIGHT_LIGHT, WEIGHT_SEMILIGHT, WEIGHT_NORMAL,
|
|
WEIGHT_MEDIUM, WEIGHT_SEMIBOLD, WEIGHT_BOLD,
|
|
WEIGHT_ULTRABOLD, WEIGHT_BLACK, FontWeight_FORCE_EQUAL_SIZE=SAL_MAX_ENUM };
|
|
|
|
enum FontWidth { WIDTH_DONTKNOW, WIDTH_ULTRA_CONDENSED, WIDTH_EXTRA_CONDENSED,
|
|
WIDTH_CONDENSED, WIDTH_SEMI_CONDENSED, WIDTH_NORMAL,
|
|
WIDTH_SEMI_EXPANDED, WIDTH_EXPANDED, WIDTH_EXTRA_EXPANDED,
|
|
WIDTH_ULTRA_EXPANDED,
|
|
FontWidth_FORCE_EQUAL_SIZE=SAL_MAX_ENUM };
|
|
|
|
enum FontItalic { ITALIC_NONE, ITALIC_OBLIQUE, ITALIC_NORMAL, ITALIC_DONTKNOW, FontItalic_FORCE_EQUAL_SIZE=SAL_MAX_ENUM };
|
|
|
|
enum FontLineStyle { LINESTYLE_NONE, LINESTYLE_SINGLE, LINESTYLE_DOUBLE,
|
|
LINESTYLE_DOTTED, LINESTYLE_DONTKNOW,
|
|
LINESTYLE_DASH, LINESTYLE_LONGDASH,
|
|
LINESTYLE_DASHDOT, LINESTYLE_DASHDOTDOT,
|
|
LINESTYLE_SMALLWAVE,
|
|
LINESTYLE_WAVE, LINESTYLE_DOUBLEWAVE,
|
|
LINESTYLE_BOLD, LINESTYLE_BOLDDOTTED,
|
|
LINESTYLE_BOLDDASH, LINESTYLE_BOLDLONGDASH,
|
|
LINESTYLE_BOLDDASHDOT, LINESTYLE_BOLDDASHDOTDOT,
|
|
LINESTYLE_BOLDWAVE,
|
|
FontLineStyle_FORCE_EQUAL_SIZE=SAL_MAX_ENUM };
|
|
|
|
enum FontStrikeout { STRIKEOUT_NONE, STRIKEOUT_SINGLE, STRIKEOUT_DOUBLE,
|
|
STRIKEOUT_DONTKNOW, STRIKEOUT_BOLD,
|
|
STRIKEOUT_SLASH, STRIKEOUT_X,
|
|
FontStrikeout_FORCE_EQUAL_SIZE=SAL_MAX_ENUM };
|
|
|
|
enum class FontEmphasisMark {
|
|
NONE = 0x0000, // capitalisation to avoid conflict with X11 macro
|
|
Dot = 0x0001,
|
|
Circle = 0x0002,
|
|
Disc = 0x0003,
|
|
Accent = 0x0004,
|
|
Style = 0x000f,
|
|
PosAbove = 0x1000,
|
|
PosBelow = 0x2000
|
|
};
|
|
namespace o3tl
|
|
{
|
|
template<> struct typed_flags<FontEmphasisMark> : is_typed_flags<FontEmphasisMark, 0x300f> {};
|
|
}
|
|
|
|
|
|
enum FontEmbeddedBitmap { EMBEDDEDBITMAP_DONTKNOW, EMBEDDEDBITMAP_FALSE, EMBEDDEDBITMAP_TRUE };
|
|
|
|
enum FontAntiAlias { ANTIALIAS_DONTKNOW, ANTIALIAS_FALSE, ANTIALIAS_TRUE };
|
|
|
|
#endif
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|