libwps_tools_win.h
Go to the documentation of this file.
1 /* -*- Mode: C++; c-default-style: "k&r"; indent-tabs-mode: nil; tab-width: 2; c-basic-offset: 2 -*- */
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 /* This header contains code specific to windows file :
27  * - a class used to convert DOS/Win3 font characters in unicode
28  * - a class used to defined the text Language
29  */
30 
31 #ifndef WPS_WIN
32 # define WPS_WIN
33 
34 # include <string>
35 
36 # include "libwps_internal.h"
37 
39 namespace libwps_tools_win
40 {
42 class Font
43 {
44 public:
53 
59 
62  };
63  // CP_10006, CP_10007, CP_10029, CP_10079, CP_10081
65  static unsigned long unicode(unsigned char c, Type type);
67  static unsigned long LICSunicode(unsigned char c);
69  static Type getTypeForOEM(int oem);
71  static Type getTypeForString(char const *encoding);
77  static Type getFontType(librevenge::RVNGString &name);
79  static librevenge::RVNGString getTypeName(Type type);
80  static librevenge::RVNGString unicodeString(const unsigned char *p, unsigned long size, Type type);
81 protected:
82 };
83 
84 // see http://msdn.microsoft.com/en-us/library/bb213877.aspx (Community Content)
86 namespace Language
87 {
89 std::string name(long id);
91 std::string localeName(long id);
93 void addLocaleName(long id, librevenge::RVNGPropertyList &propList);
95 long getDefault();
96 }
97 
98 }
99 
100 
101 #endif
102 // vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
static Type getFontType(librevenge::RVNGString &name)
returns the type of the font using the fontName
Definition: libwps_tools_win.cpp:39
Definition: libwps_tools_win.h:60
long getDefault()
returns the default language: 0x409 : english(US)
Definition: libwps_tools_win.cpp:7292
static librevenge::RVNGString unicodeString(const unsigned char *p, unsigned long size, Type type)
Definition: libwps_tools_win.cpp:7269
Definition: libwps_tools_win.h:50
Definition: libwps_tools_win.h:47
Definition: libwps_tools_win.h:57
Definition: libwps_tools_win.h:52
Definition: libwps_tools_win.h:55
Definition: libwps_tools_win.h:56
Definition: libwps_tools_win.h:51
Definition: libwps_tools_win.h:49
Definition: libwps_tools_win.h:48
Definition: libwps_tools_win.h:49
Definition: libwps_tools_win.h:56
Definition: libwps_tools_win.h:48
Definition: libwps_tools_win.h:50
Definition: libwps_tools_win.h:51
Definition: libwps_tools_win.h:49
Type
enum Type
Definition: libwps_tools_win.h:46
Definition: libwps_tools_win.h:49
Definition: libwps_tools_win.h:55
Definition: libwps_tools_win.h:60
Definition: libwps_tools_win.h:57
Definition: libwps_tools_win.h:47
Definition: libwps_tools_win.h:49
Definition: libwps_tools_win.h:54
static Type getTypeForOEM(int oem)
Definition: libwps_tools_win.cpp:112
Definition: libwps_tools_win.h:58
Definition: libwps_tools_win.h:46
Definition: libwps_tools_win.h:51
Definition: libwps_tools_win.h:51
Definition: libwps_tools_win.h:48
std::string name(long id)
returns the name given Windows© id
Definition: libwps_tools_win.cpp:7297
Definition: libwps_tools_win.h:46
Definition: libwps_tools_win.h:48
Definition: libwps_tools_win.h:47
static unsigned long unicode(unsigned char c, Type type)
converts a character in unicode, knowing the character and the font type
Definition: libwps_tools_win.cpp:7149
Definition: libwps_tools_win.h:61
Definition: libwps_tools_win.h:46
Definition: libwps_tools_win.h:47
static unsigned long LICSunicode(unsigned char c)
converts a LICS character in unicode, knowing the character and the font type
Definition: libwps_tools_win.cpp:7132
static librevenge::RVNGString getTypeName(Type type)
return the type name
Definition: libwps_tools_win.cpp:259
Definition: libwps_tools_win.h:55
Definition: libwps_tools_win.h:55
Definition: libwps_tools_win.h:46
Definition: libwps_tools_win.h:56
a class to convert a DOS© or Windows3© character in unicode
Definition: libwps_tools_win.h:42
Definition: libwps_tools_win.h:54
static Type getTypeForString(char const *encoding)
Definition: libwps_tools_win.cpp:195
Definition: libwps_tools_win.h:46
Definition: libwps_tools_win.h:47
Definition: libwps_tools_win.h:50
Definition: libwps_tools_win.h:57
Definition: libwps_tools_win.h:47
some Windows© classes and tools
Definition: libwps_tools_win.cpp:31
Definition: libwps_tools_win.h:57
Definition: libwps_tools_win.h:49
Definition: libwps_tools_win.h:54
void addLocaleName(long id, librevenge::RVNGPropertyList &propList)
add locale name (ie. fo:language,fo:country ) to propList
Definition: libwps_tools_win.cpp:7475
Definition: libwps_tools_win.h:48
Definition: libwps_tools_win.h:50
Definition: libwps_tools_win.h:58
Definition: libwps_tools_win.h:52
Definition: libwps_tools_win.h:46
Definition: libwps_tools_win.h:54
Definition: libwps_tools_win.h:48
std::string localeName(long id)
returns the simplified locale name
Definition: libwps_tools_win.cpp:7388
Definition: libwps_tools_win.h:56

Generated on Sat Jul 29 2017 15:32:22 for libwps by doxygen 1.8.8