2012-03-22 01:36:20 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
2003-03-06 05:05:37 +08:00
|
|
|
*
|
2012-03-22 01:36:20 +08:00
|
|
|
* This library is open source and may be redistributed and/or modified under
|
|
|
|
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
|
2003-03-06 05:05:37 +08:00
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
2012-03-22 01:36:20 +08:00
|
|
|
*
|
2003-03-06 05:05:37 +08:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2012-03-22 01:36:20 +08:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2003-03-06 05:05:37 +08:00
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OSGTEXT_STRING
|
|
|
|
#define OSGTEXT_STRING 1
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <set>
|
|
|
|
#include <string>
|
|
|
|
|
2004-08-04 16:27:43 +08:00
|
|
|
#include <osgText/Export>
|
|
|
|
|
2003-03-06 05:05:37 +08:00
|
|
|
namespace osgText {
|
|
|
|
|
2005-12-02 08:25:40 +08:00
|
|
|
// ******************************** HACK **********************************
|
|
|
|
// Following class is needed to work around a DLL export problem. See file
|
|
|
|
// include/osg/PrimitiveSet for details.
|
|
|
|
|
|
|
|
class VectorUInt: public std::vector<unsigned int>
|
|
|
|
{
|
|
|
|
typedef std::vector<value_type> vector_type;
|
|
|
|
public:
|
|
|
|
VectorUInt(): vector_type() {}
|
|
|
|
VectorUInt(const VectorUInt ©): vector_type(copy) {}
|
|
|
|
VectorUInt(unsigned int* beg, unsigned int* end): vector_type(beg, end) {}
|
2005-12-10 00:00:01 +08:00
|
|
|
explicit VectorUInt(unsigned int n): vector_type(n) {}
|
2005-12-02 08:25:40 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// **************************************************************************
|
|
|
|
|
2003-03-06 05:05:37 +08:00
|
|
|
class Text;
|
|
|
|
|
2006-09-01 20:46:45 +08:00
|
|
|
class OSGTEXT_EXPORT String : public VectorUInt
|
2005-07-21 03:42:59 +08:00
|
|
|
{
|
|
|
|
public:
|
2004-01-27 19:50:32 +08:00
|
|
|
|
2005-12-02 08:25:40 +08:00
|
|
|
typedef VectorUInt vector_type;
|
2004-01-27 19:50:32 +08:00
|
|
|
|
2005-07-21 03:42:59 +08:00
|
|
|
/**
|
|
|
|
* Types of string encodings supported
|
|
|
|
*/
|
|
|
|
enum Encoding
|
|
|
|
{
|
|
|
|
ENCODING_UNDEFINED, /// not using Unicode
|
|
|
|
ENCODING_ASCII = ENCODING_UNDEFINED,/// unsigned char ASCII
|
|
|
|
ENCODING_UTF8, /// 8-bit unicode transformation format
|
|
|
|
ENCODING_UTF16, /// 16-bit signature
|
|
|
|
ENCODING_UTF16_BE, /// 16-bit big-endian
|
|
|
|
ENCODING_UTF16_LE, /// 16-bit little-endian
|
|
|
|
ENCODING_UTF32, /// 32-bit signature
|
|
|
|
ENCODING_UTF32_BE, /// 32-bit big-endian
|
|
|
|
ENCODING_UTF32_LE, /// 32-bit little-endian
|
2020-01-13 21:41:37 +08:00
|
|
|
ENCODING_SIGNATURE, /// detect encoding from signature
|
|
|
|
ENCODING_CURRENT_CODE_PAGE /// Use Windows Current Code Page ecoding
|
2005-07-21 03:42:59 +08:00
|
|
|
};
|
2004-01-27 19:50:32 +08:00
|
|
|
|
|
|
|
|
2005-07-21 03:42:59 +08:00
|
|
|
String() {}
|
|
|
|
String(const String& str);
|
|
|
|
String(const std::string& str) { set(str); }
|
|
|
|
String(const wchar_t* text) { set(text); }
|
|
|
|
String(const std::string& text,Encoding encoding) { set(text,encoding); }
|
|
|
|
|
|
|
|
String& operator = (const String& str);
|
|
|
|
|
|
|
|
void set(const std::string& str);
|
|
|
|
|
2012-03-22 01:36:20 +08:00
|
|
|
/** Set the text using a wchar_t string,
|
2005-07-21 03:42:59 +08:00
|
|
|
* which is converted to an internal TextString.*/
|
|
|
|
void set(const wchar_t* text);
|
|
|
|
|
|
|
|
/** Set the text using a Unicode encoded std::string, which is converted to an internal TextString.
|
2007-12-11 01:30:18 +08:00
|
|
|
* The encoding parameter specifies which Unicode encoding is used in the std::string. */
|
2005-07-21 03:42:59 +08:00
|
|
|
void set(const std::string& text,Encoding encoding);
|
|
|
|
|
|
|
|
/** returns a UTF8 encoded version of this osgText::String.*/
|
|
|
|
std::string createUTF8EncodedString() const;
|
|
|
|
|
|
|
|
protected:
|
2003-03-06 05:05:37 +08:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|