74 lines
2.7 KiB
C
74 lines
2.7 KiB
C
|
/*
|
|||
|
* Copyright (C) 2019 Tianjin KYLIN Information Technology 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 CONVERTDESKTOPTOWINID_H
|
|||
|
#define CONVERTDESKTOPTOWINID_H
|
|||
|
|
|||
|
#include <QObject>
|
|||
|
#include <KWindowSystem>
|
|||
|
#include <QDir>
|
|||
|
|
|||
|
#define DESKTOP_FILE_PATH "/usr/share/applications/"
|
|||
|
#define USR_SHARE_APP_CURRENT "/usr/share/applications/."
|
|||
|
#define USR_SHARE_APP_UPER "/usr/share/applications/.."
|
|||
|
#define PEONY_TRASH "/usr/share/applications/peony-trash.desktop"
|
|||
|
#define PEONY_COMUTER "/usr/share/applications/peony-computer.desktop"
|
|||
|
#define PEONY_HOME "/usr/share/applications/peony-home.desktop"
|
|||
|
#define PEONY_MAIN "/usr/share/applications/peony.desktop"
|
|||
|
|
|||
|
#define GET_DESKTOP_EXEC_NAME_MAIN "cat %s | awk '{if($1~\"Exec=\")if($2~\"\%\"){print $1} else print}' | cut -d '=' -f 2"
|
|||
|
#define ANDROID_FILE_PATH "/.local/share/applications/"
|
|||
|
#define ANDROID_APP_CURRENT "/.local/share/applications/."
|
|||
|
#define ANDROID_APP_UPER "/.local/share/applications/.."
|
|||
|
|
|||
|
|
|||
|
/**
|
|||
|
* @brief The ConvertWinidToDesktop class
|
|||
|
* 需要实现的功能,desktop文件与windowId的转换
|
|||
|
* 传入(int)WindowId,转化为desktop文件的路径
|
|||
|
*/
|
|||
|
|
|||
|
class ConvertWinidToDesktop : public QObject
|
|||
|
{
|
|||
|
Q_OBJECT
|
|||
|
public:
|
|||
|
explicit ConvertWinidToDesktop(QObject *parent = nullptr);
|
|||
|
~ConvertWinidToDesktop();
|
|||
|
|
|||
|
QString tranIdToDesktop(WId id);
|
|||
|
|
|||
|
private:
|
|||
|
QString m_classClass = nullptr;
|
|||
|
QString m_className = nullptr;
|
|||
|
QString m_statusName = nullptr;
|
|||
|
QString m_cmdLine = nullptr;
|
|||
|
|
|||
|
QString confirmDesktopFile(KWindowInfo info);
|
|||
|
QString searchFromEnviron(KWindowInfo info, QFileInfoList list);
|
|||
|
QString searchAndroidApp(KWindowInfo info);
|
|||
|
QString compareClassName(QFileInfoList list);
|
|||
|
QString compareCmdExec(QFileInfoList list);
|
|||
|
QString compareLastStrategy(QFileInfoList list);
|
|||
|
QString compareCmdName(QFileInfoList list);
|
|||
|
QString compareDesktopClass(QFileInfoList list);
|
|||
|
QString containsName(QFileInfoList list);
|
|||
|
QString getDesktopFileName(QString cmd);
|
|||
|
};
|
|||
|
|
|||
|
#endif // CONVERTDESKTOPTOWINID_H
|