summaryrefslogtreecommitdiff
path: root/src/backend/managers/btstringmgr.h
blob: 7f44df85bef3ab530c72cd22a006cd78d060e8bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*********
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
* Copyright 1999-2008 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

#include <QString>

// Sword includes:
#include <stringmgr.h>


/** Unicode string manager implementation.
 * This is the StringManager implementation which works with QString.
 * @author The BibleTime developers
 */

class BTStringMgr : public sword::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 unicode 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.
        */
        bool isUtf8(const char *buf) const;
};

#endif