~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to src/gui/text/qfontdatabase.h

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-08-24 04:09:09 UTC
  • Revision ID: james.westby@ubuntu.com-20050824040909-xmxe9jfr4a0w5671
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 1992-2005 Trolltech AS. All rights reserved.
 
4
**
 
5
** This file is part of the text module of the Qt Toolkit.
 
6
**
 
7
** This file may be distributed under the terms of the Q Public License
 
8
** as defined by Trolltech AS of Norway and appearing in the file
 
9
** LICENSE.QPL included in the packaging of this file.
 
10
**
 
11
** This file may be distributed and/or modified under the terms of the
 
12
** GNU General Public License version 2 as published by the Free Software
 
13
** Foundation and appearing in the file LICENSE.GPL included in the
 
14
** packaging of this file.
 
15
**
 
16
** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
 
17
**   information about Qt Commercial License Agreements.
 
18
** See http://www.trolltech.com/qpl/ for QPL licensing information.
 
19
** See http://www.trolltech.com/gpl/ for GPL licensing information.
 
20
**
 
21
** Contact info@trolltech.com if any conditions of this licensing are
 
22
** not clear to you.
 
23
**
 
24
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
 
25
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 
26
**
 
27
****************************************************************************/
 
28
 
 
29
#ifndef QFONTDATABASE_H
 
30
#define QFONTDATABASE_H
 
31
 
 
32
#include "QtGui/qwindowdefs.h"
 
33
#include "QtCore/qstring.h"
 
34
#include "QtGui/qfont.h"
 
35
#ifdef QT3_SUPPORT
 
36
#include "QtCore/qstringlist.h"
 
37
#include "QtCore/qlist.h"
 
38
#endif
 
39
 
 
40
 
 
41
#ifndef QT_NO_FONTDATABASE
 
42
 
 
43
class QStringList;
 
44
template <class T> class QList;
 
45
struct QFontDef;
 
46
class QFontEngine;
 
47
 
 
48
class QFontDatabasePrivate;
 
49
 
 
50
class Q_GUI_EXPORT QFontDatabase
 
51
{
 
52
public:
 
53
    enum WritingSystem {
 
54
        Any,
 
55
 
 
56
        Latin,
 
57
        Greek,
 
58
        Cyrillic,
 
59
        Armenian,
 
60
        Hebrew,
 
61
        Arabic,
 
62
        Syriac,
 
63
        Thaana,
 
64
        Devanagari,
 
65
        Bengali,
 
66
        Gurmukhi,
 
67
        Gujarati,
 
68
        Oriya,
 
69
        Tamil,
 
70
        Telugu,
 
71
        Kannada,
 
72
        Malayalam,
 
73
        Sinhala,
 
74
        Thai,
 
75
        Lao,
 
76
        Tibetan,
 
77
        Myanmar,
 
78
        Georgian,
 
79
        Khmer,
 
80
        SimplifiedChinese,
 
81
        TraditionalChinese,
 
82
        Japanese,
 
83
        Korean,
 
84
        Vietnamese,
 
85
 
 
86
        Other,
 
87
 
 
88
        WritingSystemsCount
 
89
    };
 
90
 
 
91
    static QList<int> standardSizes();
 
92
 
 
93
    QFontDatabase();
 
94
 
 
95
    QList<WritingSystem> writingSystems() const;
 
96
    QStringList families(WritingSystem writingSystem = Any) const;
 
97
    QStringList styles(const QString &family) const;
 
98
    QList<int> pointSizes(const QString &family, const QString &style = QString());
 
99
    QList<int> smoothSizes(const QString &family, const QString &style);
 
100
    QString styleString(const QFont &font);
 
101
 
 
102
    QFont font(const QString &family, const QString &style, int pointSize) const;
 
103
 
 
104
    bool isBitmapScalable(const QString &family, const QString &style = QString()) const;
 
105
    bool isSmoothlyScalable(const QString &family, const QString &style = QString()) const;
 
106
    bool isScalable(const QString &family, const QString &style = QString()) const;
 
107
    bool isFixedPitch(const QString &family, const QString &style = QString()) const;
 
108
 
 
109
    bool italic(const QString &family, const QString &style) const;
 
110
    bool bold(const QString &family, const QString &style) const;
 
111
    int weight(const QString &family, const QString &style) const;
 
112
 
 
113
    static QString writingSystemName(WritingSystem writingSystem);
 
114
    static QString writingSystemSample(WritingSystem writingSystem);
 
115
 
 
116
private:
 
117
    static void createDatabase();
 
118
    static void parseFontName(const QString &name, QString &foundry, QString &family);
 
119
    static QFontEngine *findFont(int script, const QFontPrivate *fp,
 
120
                                 const QFontDef &request, int force_encoding_id = -1);
 
121
 
 
122
    friend struct QFontDef;
 
123
    friend class QFontPrivate;
 
124
    friend class QFontDialog;
 
125
    friend class QFontEngineMultiXLFD;
 
126
 
 
127
    QFontDatabasePrivate *d;
 
128
};
 
129
 
 
130
#endif // QT_NO_FONTDATABASE
 
131
 
 
132
#endif // QFONTDATABASE_H