mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-01 07:05:48 +00:00
20 lines
394 B
C++
20 lines
394 B
C++
// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
|
|
//
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
#ifndef PLATFORMUTILS_H
|
|
#define PLATFORMUTILS_H
|
|
|
|
#include <QObject>
|
|
|
|
class PlatformUtils
|
|
{
|
|
public:
|
|
static QString getAppNameForWindow(quint32 winId);
|
|
|
|
private:
|
|
static QString getWindowProperty(quint32 winId, QString propName);
|
|
};
|
|
|
|
#endif // PLATFORMUTILS_H
|