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, Type type);
69  static Type getTypeForOEM(int oem);
71  static Type getTypeForString(char const *encoding);
77  static Type getFontType(std::string &name);
79  static std::string getTypeName(Type type);
80 protected:
81 };
82 
83 // see http://msdn.microsoft.com/en-us/library/bb213877.aspx (Community Content)
85 namespace Language
86 {
88 std::string name(long id);
90 std::string localeName(long id);
92 void addLocaleName(long id, librevenge::RVNGPropertyList &propList);
94 long getDefault();
95 }
96 
97 }
98 
99 
100 #endif
101 // vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
long getDefault()
returns the default language: 0x409 : english(US)
Definition: libwps_tools_win.cpp:1785
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:50
Definition: libwps_tools_win.h:49
Type
enum Type
Definition: libwps_tools_win.h:46
Definition: libwps_tools_win.h:55
Definition: libwps_tools_win.h:60
Definition: libwps_tools_win.h:57
Definition: libwps_tools_win.h:47
static std::string getTypeName(Type type)
return the type name
Definition: libwps_tools_win.cpp:251
Definition: libwps_tools_win.h:54
static Type getTypeForOEM(int oem)
Definition: libwps_tools_win.cpp:109
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:1790
Definition: libwps_tools_win.h:46
Definition: libwps_tools_win.h:49
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:1664
Definition: libwps_tools_win.h:61
Definition: libwps_tools_win.h:46
Definition: libwps_tools_win.h:48
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 unsigned long LICSunicode(unsigned char c, Type type)
converts a LICS character in unicode, knowing the character and the font type
Definition: libwps_tools_win.cpp:1647
static Type getTypeForString(char const *encoding)
Definition: libwps_tools_win.cpp:187
Definition: libwps_tools_win.h:46
Definition: libwps_tools_win.h:47
Definition: libwps_tools_win.h:49
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:1968
Definition: libwps_tools_win.h:48
Definition: libwps_tools_win.h:50
Definition: libwps_tools_win.h:58
static Type getFontType(std::string &name)
returns the type of the font using the fontName
Definition: libwps_tools_win.cpp:39
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:1881
Definition: libwps_tools_win.h:56

Generated on Thu Sep 10 2015 23:43:12 for libwps by doxygen 1.8.9.1