OSDN Git Service

Version: 0.3
[fontmanager/fontmanager.git] / fontconfigmanager.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 Takumi Asaki
4 ** All rights reserved.
5 ** Contact: Takumi Asaki (takumi.asaki@gmail.com)
6 **
7 ** This file is part of the fontmanager application.
8 **
9 ** You may use this file under the terms of the BSD license as follows:
10 **
11 ** "Redistribution and use in source and binary forms, with or without
12 ** modification, are permitted provided that the following conditions are
13 ** met:
14 **   * Redistributions of source code must retain the above copyright
15 **     notice, this list of conditions and the following disclaimer.
16 **   * Redistributions in binary form must reproduce the above copyright
17 **     notice, this list of conditions and the following disclaimer in
18 **     the documentation and/or other materials provided with the
19 **     distribution.
20 **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
21 **     the names of its contributors may be used to endorse or promote
22 **     products derived from this software without specific prior written
23 **     permission.
24 **
25 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
36 **
37 ****************************************************************************/
38
39 #ifndef FONTCONFIGMANAGER_H
40 #define FONTCONFIGMANAGER_H
41
42 #include <QObject>
43 #include <QList>
44 #include <QStringList>
45 #include <QMap>
46
47 #include "fontsconfigproperties.h"
48
49 class InstalledFontInfo;
50
51 class FontConfigManager : public QObject
52 {
53     Q_OBJECT
54     Q_PROPERTY(QStringList families READ families NOTIFY familiesChanged)
55     Q_PROPERTY(QStringList systemFamilies READ systemFamilies NOTIFY systemFamiliesChanged)
56     Q_PROPERTY(QStringList localFamilies READ localFamilies NOTIFY localFamiliesChanged)
57 public:
58     explicit FontConfigManager(QObject *parent = 0);
59
60     QString currentLanguage() const;
61     void setCurrentLanguage(const QString &lang);
62
63     QString localFontPath() const;
64     void setLocalFontPath(const QString &path);
65
66     QString localFontsConfPath() const;
67     void setLocalFontsConfPath(const QString &path);
68
69     bool hasUnknownConfig() const;
70     bool fontsConfModified() const;
71
72     QStringList families() const;
73     QStringList systemFamilies() const;
74     QStringList localFamilies() const;
75
76     QStringList fontCount(const QString &fontpath) const;
77
78     InstalledFontInfo *fontInfo(const QString &family) const;
79     InstalledFontInfo *fontInfo(int index) const;
80     int count() const;
81
82     void appendFontProperty(FontsConfigProperties *prop, const QStringList &familyList = QStringList());
83     void appendFontProperty(InstalledFontInfo *fontInfo);
84     FontsConfigProperties *fontProperty(const QString &family, const QStringList &familyList = QStringList()) const;
85     FontsConfigProperties *fontProperty(InstalledFontInfo *fontInfo) const;
86
87     QString localFontsConf() const;
88
89     bool configHasUninstalledFonts() const;
90     void removeUninstalledFontsFromConfig();
91
92 private:
93     void appendFontPropertyBool(const QString &config, FontsConfigProperties::ConfigValue value, FontsConfigProperties *prop, const QStringList &familyList = QStringList());
94     bool fontPropertyBoolValue(const QString &config, bool value, const QString &family, const QStringList &familyList) const;
95
96 signals:
97     void fcCacheFinished();
98
99     void familiesChanged();
100     void systemFamiliesChanged();
101     void localFamiliesChanged();
102
103     void localFontsConfPathChanged();
104     void configHasUninstalledFontsChanged();
105
106     void warning(const QString &message);
107
108 private slots:
109     void clearFontProperties();
110
111 public slots:
112     void runFcCache();
113     void readFcList();
114     void readFontsConf();
115     void saveFontsConf();
116
117 private:
118     QString mLang;
119     QString mLocalFontPath;
120     QString mLocalFontsConfPath;
121     QList<InstalledFontInfo *> mFcListInfo;
122     QStringList mFamilies;
123     QStringList mSystemFamilies;
124     QStringList mLocalFamilies;
125     bool mHasUnknownConfig;
126     bool mFontsConfModified;
127
128     QMap<QString, QStringList> mPreferFontListMap;
129     QMap<QString, QStringList> mMatchFontListMap;
130 };
131
132 #endif // FONTCONFIGMANAGER_H