forked from quickshell/quickshell
18 lines
333 B
C++
18 lines
333 B
C++
#pragma once
|
|
|
|
#include <qobject.h>
|
|
#include <qtmetamacros.h>
|
|
|
|
class TestPopupWindow: public QObject {
|
|
Q_OBJECT;
|
|
|
|
private slots:
|
|
void initiallyVisible();
|
|
void reloadReparent();
|
|
void reloadUnparent();
|
|
void invisibleWithoutParent();
|
|
void moveWithParent();
|
|
void attachParentLate();
|
|
void reparentLate();
|
|
void xMigrationFix();
|
|
};
|