mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00
16 lines
265 B
C
16 lines
265 B
C
![]() |
#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
|