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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
/*
* Copyright (C) 2023, KylinSoft Co., Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*
**/
#ifndef FUNCTIONSELECT_H
#define FUNCTIONSELECT_H
#include <QDir>
#include <QList>
#include <QStack>
#include <QObject>
#include <QPluginLoader>
#include <QCoreApplication>
typedef struct _FuncInfo
{
int type;
int index;
bool mainShow;
bool isEnable;
QString nameString;
QString namei18nString;
}FuncInfo;
typedef struct _RecordFunc
{
int type;
QString namei18nString;
}RecordFunc;
Q_DECLARE_METATYPE(_RecordFunc)
Q_DECLARE_METATYPE(_FuncInfo)
class FunctionSelect
{
public:
explicit FunctionSelect();
~FunctionSelect();
public:
static QList<QList<FuncInfo>> funcinfoListHomePage;
static QList<QList<FuncInfo>> funcinfoList;
static QStack<RecordFunc> recordFuncStack;
static QList<QString> systemPluginName;
static QList<QString> devicePluginName;
static QList<QString> networkPluginName;
static QList<QString> personalPluginName;
static QList<QString> accountPluginName;
static QList<QString> datePluginName;
static QList<QString> updatePluginName;
static QList<QString> securityPluginName;
static QList<QString> appPluginName;
static QList<QString> searchPluginName;
static QList<QString> commonInfoPluginName;
static void initValue();
static void initPluginName();
static void pushRecordValue(int type, QString name);
static void popRecordValue();
static void loadHomeModule();
static QList<char *> listExistsCustomNoticePath(const char* dir); //获取动态路径
static void loadModule(QList<FuncInfo> &systemList, QString name, QString i18nName, int type, bool isShow, bool isEnable, QList<QString> pluginName);
private:
static void determineModule(const QString& fileName, const QDir& dir);
};
#endif // FUNCTIONSELECT_H
|