2022-04-24 14:52:13 +08:00
|
|
|
/*
|
2022-05-15 12:10:42 +08:00
|
|
|
* Copyright (C) 2021 ~ 2022 Deepin Technology Co., Ltd.
|
2022-04-24 14:52:13 +08:00
|
|
|
*
|
|
|
|
* Author: weizhixiang <weizhixiang@uniontech.com>
|
|
|
|
*
|
|
|
|
* Maintainer: weizhixiang <weizhixiang@uniontech.com>
|
|
|
|
*
|
|
|
|
* 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 of the License, or
|
|
|
|
* 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 WINDOWINFOBASE_H
|
|
|
|
#define WINDOWINFOBASE_H
|
|
|
|
|
|
|
|
#include "xcbutils.h"
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QVector>
|
|
|
|
|
|
|
|
class Entry;
|
|
|
|
class AppInfo;
|
|
|
|
class ProcessInfo;
|
|
|
|
class WindowInfoBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
WindowInfoBase() : entry(nullptr), app(nullptr), processInfo(nullptr) {}
|
|
|
|
virtual ~WindowInfoBase() {}
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
XWindow getXid() {return xid;}
|
|
|
|
void setEntry(Entry *value) {entry = value;}
|
|
|
|
Entry *getEntry() {return entry;}
|
|
|
|
QString getEntryInnerId() {return entryInnerId;}
|
|
|
|
QString getInnerId() {return innerId;}
|
|
|
|
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;
|
|
|
|
QString title;
|
|
|
|
QString icon;
|
|
|
|
int pid;
|
|
|
|
QString entryInnerId;
|
|
|
|
QString innerId;
|
|
|
|
Entry *entry;
|
|
|
|
AppInfo *app;
|
|
|
|
ProcessInfo *processInfo;
|
|
|
|
int64_t createdTime;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // WINDOWINFOBASE_H
|