You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bibletime/bibletime/backend/btstringmgr.h

58 lines
1.5 KiB

/*********
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
* Copyright 1999-2006 by the BibleTime developers.
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
*
**********/
#ifndef BTSTRINGMGR_H
#define BTSTRINGMGR_H
//Sword includes
#include <stringmgr.h>
//TQt includes
#include <tqstring.h>
using namespace sword;
/** Unicode string manager implementation.
* This is the StringManager implementation which works with TQString.
* @author The BibleTime developers
*/
class BTStringMgr : public StringMgr {
public:
/** Converts the param to an upper case Utf8 string
* @param The text encoded in utf8 which should be turned into an upper case string
*/
virtual char *upperUTF8(char *text, unsigned int max = 0) const;
/** Converts the param to an uppercase latin1 string
* @param The text encoded in latin1 which should be turned into an upper case string
*/
virtual char *upperLatin1(char *text, unsigned int max = 0) const;
protected:
/** Enable Unicode support.
* Reimplementation to show tqunicode support.
*/
virtual bool supportsUnicode() const;
/** CODE TAKEN FROM KDELIBS 3.2, which is licensed under the LGPL 2.
*
* This code was taken from KStringHandler, which is part of the KDE libraries.
*
* This function checks whether a string is utf8 or not.
* It was taken from kdelibs so we do not depend on KDE 3.2.
*/
const bool isUtf8(const char *buf) const;
};
#endif