OSDN Git Service

d073c0b5eb3efc34f5e300e43d220a3570d4c110
[fontmanager/fontmanager.git] / applicationcontroller.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 APPLICATIONCONTROLLER_H
40 #define APPLICATIONCONTROLLER_H
41
42 #include <QObject>
43 #include <QStringList>
44 #include <QVariant>
45 #include <QUrl>
46
47 #include "fontinfo.h"
48
49 class FontConfigManager;
50 class InstalledFontInfo;
51 class FontsConfEditorController;
52
53 class ApplicationController : public QObject
54 {
55     Q_OBJECT
56     Q_PROPERTY(QString version READ version)
57     Q_PROPERTY(QString fontDir READ fontDir WRITE setFontDir NOTIFY fontDirChanged)
58     Q_PROPERTY(bool fontDirExists READ fontDirExists NOTIFY fontDirExistsChanged)
59
60     Q_PROPERTY(QString localFontsConfPath READ localFontsConfPath NOTIFY localFontsConfPathChanged)
61     Q_PROPERTY(bool localFontsConfExists READ localFontsConfExists NOTIFY localFontsConfExistsChanged)
62     Q_PROPERTY(bool isEmptyFontsConf READ isEmptyFontsConf NOTIFY localFontsConfChanged)
63     Q_PROPERTY(QString localFontsConf READ localFontsConf NOTIFY localFontsConfChanged)
64
65     Q_PROPERTY(bool showSystemFont READ showSystemFont WRITE setShowSystemFont NOTIFY showSystemFontChanged)
66
67     Q_PROPERTY(bool working READ working NOTIFY workingChanged)
68
69     Q_PROPERTY(QUrl backupDir READ backupDir NOTIFY backupDirChanged)
70 public:
71     explicit ApplicationController(QObject *parent = 0);
72     
73 public slots:
74     void init();
75
76 public:
77     QString version() const;
78
79     QString currentLanguage() const;
80
81     QString fontDir() const;
82     void setFontDir(const QString &dirpath);
83
84     bool fontDirExists() const;
85
86     bool showSystemFont() const;
87     void setShowSystemFont(bool show);
88
89     Q_INVOKABLE FontInfo *checkFontInfo(const QUrl &path);
90     Q_INVOKABLE InstalledFontInfo *fontInfo(const QString &family, const QString &fullname = QString()) const;
91     Q_INVOKABLE QStringList fontCount(const QString &fontpath) const;
92
93     Q_INVOKABLE QString localeFamily(const QString &family) const;
94
95     Q_INVOKABLE bool fontExists(FontInfo *fontinfo);
96
97     Q_INVOKABLE FontsConfEditorController *editorController(const QString &family);
98     void updateEditorController(const QString &family);
99
100     QUrl backupDir() const;
101     Q_INVOKABLE QString defaultBackupFilename() const;
102
103 public slots:
104     void updateAllEditorController();
105
106 public:
107     bool localFontsConfExists() const;
108     QString localFontsConfPath() const;
109     QString localFontsConf() const;
110     bool isEmptyFontsConf() const;
111
112     bool working() const;
113
114 public slots:
115     void startUpdateLocalFontsConf();
116     void endUpdateLocalFontsConf();
117     void localFontsConfUpdated();
118
119     void resetLocalFontsConf();
120     void importSystemSettings(const QString &family);
121
122     void createRecommendedSettings();
123
124     void backupConfig(const QString &filename);
125     void restoreConfig(const QString &filename);
126
127 signals:
128     void alertDialog(const QString &message);
129
130     void fontDirChanged(const QString dirpath);
131     void fontDirExistsChanged();
132
133     void showSystemFontChanged();
134
135     void installFinished(const QString &fontpath);
136     void uninstallFinished(const QString &fontpath);
137
138     void clearInstalledFontList();
139     void appendInstalledFont(const QString &family, const QString &fullname);
140
141     void clearInstallableFamilyListFor(const QString &family);
142     void appendInstallableFamily(const QString &enfamily, const QString &family, bool systemFont);
143
144     void localFontsConfPathChanged();
145     void localFontsConfExistsChanged();
146     void localFontsConfChanged();
147
148     void workingChanged();
149
150     void backupDirChanged();
151
152 private slots:
153     void readFcListFinished();
154
155 public slots:
156     void createFontDir();
157
158     void installFont(FontInfo *fontinfo);
159
160     void updateFontsConf(InstalledFontInfo *fontInfo);
161
162     void uninstallFont(const QString &fontpath);
163     
164     void syncInstalledFonts();
165     void syncInstallableFamilyFor(const QString &family);
166
167     void saveFontsConf();
168
169     void appendFamilyToConfig(const QString &family, const QString &value, const QString &priority);
170     void insertFamilyToConfig(const QString &family, const QString &value, const QString &priority, int index);
171     void removeFamilyFromConfig(const QString &family, const QString &value, const QString &priority);
172
173 private:
174     QString mLang;
175     QString mFontDirPath;
176     bool mFontDirExists;
177     bool mShowSystemFont;
178
179     int mUpdating;
180     bool mForceOverwrite;
181     bool mWorking;
182     bool mIgnoreUpdate;
183
184     FontConfigManager *mFontConfig;
185     QMap<QString, FontsConfEditorController*> mEditorController;
186 };
187
188 #endif // APPLICATIONCONTROLLER_H