You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
278 B
C
19 lines
278 B
C
|
5 years ago
|
#ifndef X11SHADOW_H
|
||
|
|
#define X11SHADOW_H
|
||
|
|
|
||
|
|
#include <QObject>
|
||
|
|
|
||
|
|
class X11Shadow : public QObject
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
explicit X11Shadow(QObject *parent = nullptr);
|
||
|
|
|
||
|
|
private:
|
||
|
|
quint32 m_atom_net_wm_shadow;
|
||
|
|
quint32 m_atom_net_wm_window_type;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // X11SHADOW_H
|