forked from quickshell/quickshell
core/transformwatcher: add TransformWatcher
This commit is contained in:
parent
fd5b73adbb
commit
a06af243ad
10 changed files with 345 additions and 2 deletions
14
src/core/test/transformwatcher.hpp
Normal file
14
src/core/test/transformwatcher.hpp
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#pragma once
|
||||
|
||||
#include <qobject.h>
|
||||
#include <qtmetamacros.h>
|
||||
|
||||
class TestTransformWatcher: public QObject {
|
||||
Q_OBJECT;
|
||||
|
||||
private slots:
|
||||
void aParentOfB();
|
||||
void bParentOfA();
|
||||
void aParentChainB();
|
||||
void multiWindow();
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue