对于某些没有提供desktop文件(或者desktop文件中没有指定Icon字段)的应用 需要从窗管获取应用的Icon Log: 修复任务栏应用图标显示异常的问题 Resolve: https://github.com/linuxdeepin/developer-center/issues/3811 Influence: 任务栏应用图片显示
69 lines
2.2 KiB
C++
69 lines
2.2 KiB
C++
// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#ifndef WINDOWINFOBASE_H
|
|
#define WINDOWINFOBASE_H
|
|
|
|
#include "processinfo.h"
|
|
#include "xcbutils.h"
|
|
|
|
#include <QString>
|
|
#include <QVector>
|
|
|
|
class Entry;
|
|
class AppInfo;
|
|
|
|
class WindowInfoBase
|
|
{
|
|
public:
|
|
WindowInfoBase() : entry(nullptr), app(nullptr), processInfo(nullptr) {}
|
|
virtual ~WindowInfoBase() {
|
|
if (processInfo) {
|
|
delete processInfo;
|
|
}
|
|
}
|
|
|
|
virtual bool shouldSkip() = 0;
|
|
virtual QString getIcon() = 0;
|
|
virtual QString getTitle() = 0;
|
|
virtual bool isDemandingAttention() = 0;
|
|
virtual void close(uint32_t timestamp) = 0;
|
|
virtual void activate() = 0;
|
|
virtual void minimize() = 0;
|
|
virtual bool isMinimized() = 0;
|
|
virtual int64_t getCreatedTime() = 0;
|
|
virtual QString getWindowType() = 0;
|
|
virtual QString getDisplayName() = 0;
|
|
virtual bool allowClose() = 0;
|
|
virtual void update() = 0;
|
|
virtual void killClient() = 0;
|
|
virtual QString uuid() = 0;
|
|
virtual QString getInnerId() { return innerId; }
|
|
|
|
XWindow getXid() {return xid;}
|
|
void setEntry(Entry *value) { entry = value; }
|
|
Entry *getEntry() { return entry; }
|
|
QString getEntryInnerId() { return entryInnerId; }
|
|
void setEntryInnerId(QString value) { entryInnerId = value; }
|
|
AppInfo *getAppInfo() { return app; }
|
|
void setAppInfo(AppInfo *value) { app = value; }
|
|
int getPid() { return pid; }
|
|
ProcessInfo *getProcess() { return processInfo; }
|
|
bool containAtom(QVector<XCBAtom> supports, XCBAtom ty) {return supports.indexOf(ty) != -1;}
|
|
|
|
protected:
|
|
XWindow xid; // 窗口id
|
|
QString title; // 窗口标题
|
|
QString icon; // 窗口图标
|
|
int pid; // 窗口所属应用进程
|
|
QString entryInnerId; // 窗口所属应用对应的innerId
|
|
QString innerId; // 窗口对应的innerId
|
|
Entry *entry; // 窗口所属应用
|
|
AppInfo *app; // 窗口所属应用对应的desktopFile信息
|
|
ProcessInfo *processInfo; // 窗口所属应用的进程信息
|
|
int64_t createdTime; // 创建时间
|
|
};
|
|
|
|
#endif // WINDOWINFOBASE_H
|