OSDN Git Service

Version 0.5
[fontmanager/fontmanager.git] / applicationcontroller.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 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 NOTIFY dummySignal)
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 localFontsConfFileUpdated)
63     Q_PROPERTY(QString localFontsConf READ localFontsConf NOTIFY localFontsConfFileUpdated)
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
71     Q_PROPERTY(QStringList installedFonts READ installedFonts NOTIFY installedFontsChanged)
72 public:
73     explicit ApplicationController(QObject *parent = 0);
74     
75 public slots:
76     void init();
77
78 public:
79     QString version() const;
80
81     QString currentLanguage() const;
82
83     QString fontDir() const;
84     void setFontDir(const QString &dirpath);
85
86     bool fontDirExists() const;
87
88     bool showSystemFont() const;
89     void setShowSystemFont(bool show);
90
91     Q_INVOKABLE FontInfo *checkFontInfo(const QUrl &path);
92     Q_INVOKABLE InstalledFontInfo *fontInfo(const QString &family, const QString &fullname = QString()) const;
93     Q_INVOKABLE QStringList fontCount(const QString &fontpath) const;
94
95     Q_INVOKABLE QString localeFamily(const QString &family) const;
96
97     Q_INVOKABLE bool fontExists(FontInfo *fontinfo);
98
99     Q_INVOKABLE FontsConfEditorController *editorController(const QString &family);
100     void updateEditorController(const QString &family);
101
102     QUrl backupDir() const;
103     Q_INVOKABLE QString defaultBackupFilename() const;
104
105     Q_INVOKABLE QString url2path(const QUrl &url) const;
106     Q_INVOKABLE QString path4display(const QString &path) const;
107
108     QStringList installedFonts() const;
109
110 public slots:
111     void updateAllEditorController();
112
113 public:
114     bool localFontsConfExists() const;
115     QString localFontsConfPath() const;
116     QString localFontsConf() const;
117     bool isEmptyFontsConf() const;
118
119     bool working() const;
120
121 public slots:
122     void startUpdateLocalFontsConf();
123     void endUpdateLocalFontsConf();
124     void localFontsConfUpdated();
125
126     void resetLocalFontsConf();
127     void importSystemSettings(const QString &family);
128
129     void createRecommendedSettings();
130
131     void backupConfig(const QString &filename);
132     void restoreConfig(const QString &filename);
133     void restoreConfig(const QUrl &filename);
134
135 signals:
136     void alertDialog(const QString &message);
137
138     void fontDirChanged(const QString dirpath);
139     void fontDirExistsChanged();
140
141     void showSystemFontChanged();
142     void installedFontsChanged();
143
144     void installFinished(const QString &fontpath);
145     void uninstallFinished(const QString &fontpath);
146     void backupConfigFinished(const QString &filepath);
147     void restoreConfigFinished(const QString &filepath);
148
149     void clearInstalledFontList();
150     void appendInstalledFont(const QString &family, const QString &fullname);
151
152     void clearInstallableFamilyListFor(const QString &family);
153     void appendInstallableFamily(const QString &enfamily, const QString &family, bool systemFont);
154
155     void localFontsConfPathChanged();
156     void localFontsConfExistsChanged();
157     void localFontsConfChanged();
158     void localFontsConfFileUpdated();
159
160     void workingChanged();
161
162     void backupDirChanged();
163
164     void dummySignal();
165
166 private slots:
167     void readFcListFinished();
168
169 public slots:
170     void createFontDir();
171
172     void installFont(FontInfo *fontinfo);
173
174     void updateFontsConf(InstalledFontInfo *fontInfo);
175
176     void uninstallFont(const QString &fontpath);
177     
178     void syncInstalledFonts();
179     void syncInstallableFamilyFor(const QString &family);
180
181     void saveFontsConf();
182
183     void appendFamilyToConfig(const QString &family, const QString &value, const QString &priority);
184     void insertFamilyToConfig(const QString &family, const QString &value, const QString &priority, int index);
185     void removeFamilyFromConfig(const QString &family, const QString &value, const QString &priority);
186
187 private:
188     QString mLang;
189     QString mFontDirPath;
190     bool mFontDirExists;
191     bool mShowSystemFont;
192     QStringList mInstalledFonts;
193
194     int mUpdating;
195     bool mWorking;
196     bool mIgnoreUpdate;
197
198     FontConfigManager *mFontConfig;
199     QMap<QString, FontsConfEditorController*> mEditorController;
200 };
201
202 #endif // APPLICATIONCONTROLLER_H