WPSFont.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2 /* libwps
3  * Version: MPL 2.0 / LGPLv2.1+
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * Major Contributor(s):
10  * Copyright (C) 2009, 2011 Alonso Laurent (alonso@loria.fr)
11  * Copyright (C) 2006, 2007 Andrew Ziem
12  * Copyright (C) 2004-2006 Fridrich Strba (fridrich.strba@bluewin.ch)
13  * Copyright (C) 2004 Marc Maurer (uwog@uwog.net)
14  * Copyright (C) 2003-2005 William Lachance (william.lachance@sympatico.ca)
15  *
16  * For minor contributions see the git repository.
17  *
18  * Alternatively, the contents of this file may be used under the terms
19  * of the GNU Lesser General Public License Version 2.1 or later
20  * (LGPLv2.1+), in which case the provisions of the LGPLv2.1+ are
21  * applicable instead of those above.
22  *
23  * For further information visit http://libwps.sourceforge.net
24  */
25 
26 #ifndef WPS_FONT
27 # define WPS_FONT
28 
29 #include <iostream>
30 
31 #include <string>
32 
33 #include "libwps_internal.h"
34 
36 class WPSFont
37 {
38 public:
41  : m_name("")
42  , m_size(0)
43  , m_attributes(0)
44  , m_spacing(0)
45  , m_color(WPSColor::black())
46  , m_languageId(-1)
47  , m_extra("") {}
50  {
51  WPSFont res;
52  res.m_name = "Courier";
53  res.m_size = 12;
54  return res;
55  }
57  virtual ~WPSFont() {}
59  friend std::ostream &operator<<(std::ostream &o, WPSFont const &ft);
60 
62  void addTo(librevenge::RVNGPropertyList &propList) const;
63 
65  bool isSet() const
66  {
67  return !m_name.empty();
68  }
69 
71  bool operator==(WPSFont const &ft) const;
73  bool operator!=(WPSFont const &ft) const
74  {
75  return !operator==(ft);
76  }
77 
79  librevenge::RVNGString m_name;
81  double m_size;
83  uint32_t m_attributes;
85  double m_spacing;
90 
92  std::string m_extra;
93 };
94 
95 #endif
96 /* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
virtual ~WPSFont()
destructor
Definition: WPSFont.h:57
double m_spacing
font spacing
Definition: WPSFont.h:85
std::string m_extra
public field use to add a message when the font is printed
Definition: WPSFont.h:92
bool operator!=(WPSFont const &ft) const
operator!=
Definition: WPSFont.h:73
friend std::ostream & operator<<(std::ostream &o, WPSFont const &ft)
operator<<
Definition: WPSFont.cpp:34
define the font properties
Definition: WPSFont.h:36
void addTo(librevenge::RVNGPropertyList &propList) const
add to the propList
Definition: WPSFont.cpp:81
bool operator==(WPSFont const &ft) const
operator==
Definition: WPSFont.cpp:69
uint32_t m_attributes
the font attributes defined as a set of bits
Definition: WPSFont.h:83
int m_languageId
the language (simplified locale name id) if known
Definition: WPSFont.h:89
WPSFont()
constructor
Definition: WPSFont.h:40
static WPSFont getDefault()
returns the default font ( Courier 12pt)
Definition: WPSFont.h:49
the class to store a color
Definition: libwps_internal.h:280
double m_size
font size
Definition: WPSFont.h:81
bool isSet() const
accessor
Definition: WPSFont.h:65
librevenge::RVNGString m_name
font name
Definition: WPSFont.h:79
WPSColor m_color
the font color
Definition: WPSFont.h:87

Generated on Fri May 27 2022 03:07:00 for libwps by doxygen 1.8.14