Support initial minimize rule in ShellClient
Summary: Honors the rules for minimizing a window on initial show. Reviewers: #kwin, #plasma Subscribers: plasma-devel, kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D8182
This commit is contained in:
parent
d3eccada62
commit
c2d4cb8846
3 changed files with 52 additions and 1 deletions
|
@ -43,6 +43,8 @@ private Q_SLOTS:
|
||||||
|
|
||||||
void testApplyInitialDesktop_data();
|
void testApplyInitialDesktop_data();
|
||||||
void testApplyInitialDesktop();
|
void testApplyInitialDesktop();
|
||||||
|
void testApplyInitialMinimize_data();
|
||||||
|
void testApplyInitialMinimize();
|
||||||
};
|
};
|
||||||
|
|
||||||
void TestShellClientRules::initTestCase()
|
void TestShellClientRules::initTestCase()
|
||||||
|
@ -66,6 +68,7 @@ void TestShellClientRules::initTestCase()
|
||||||
|
|
||||||
void TestShellClientRules::init()
|
void TestShellClientRules::init()
|
||||||
{
|
{
|
||||||
|
VirtualDesktopManager::self()->setCurrent(VirtualDesktopManager::self()->desktops().first());
|
||||||
QVERIFY(Test::setupWaylandConnection(Test::AdditionalWaylandInterface::Decoration));
|
QVERIFY(Test::setupWaylandConnection(Test::AdditionalWaylandInterface::Decoration));
|
||||||
|
|
||||||
screens()->setCurrent(0);
|
screens()->setCurrent(0);
|
||||||
|
@ -116,6 +119,50 @@ void TestShellClientRules::testApplyInitialDesktop()
|
||||||
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
||||||
QVERIFY(c);
|
QVERIFY(c);
|
||||||
QCOMPARE(c->desktop(), 2);
|
QCOMPARE(c->desktop(), 2);
|
||||||
|
QCOMPARE(c->isMinimized(), false);
|
||||||
|
QCOMPARE(c->isActive(), true);
|
||||||
|
}
|
||||||
|
|
||||||
|
void TestShellClientRules::testApplyInitialMinimize_data()
|
||||||
|
{
|
||||||
|
QTest::addColumn<Test::ShellSurfaceType>("type");
|
||||||
|
QTest::addColumn<int>("ruleNumber");
|
||||||
|
|
||||||
|
QTest::newRow("wlShell|Force") << Test::ShellSurfaceType::WlShell << 2;
|
||||||
|
QTest::newRow("xdgShellV5|Force") << Test::ShellSurfaceType::XdgShellV5 << 2;
|
||||||
|
QTest::newRow("xdgShellV6|Force") << Test::ShellSurfaceType::XdgShellV6 << 2;
|
||||||
|
|
||||||
|
QTest::newRow("wlShell|Apply") << Test::ShellSurfaceType::WlShell << 3;
|
||||||
|
QTest::newRow("xdgShellV5|Apply") << Test::ShellSurfaceType::XdgShellV5 << 3;
|
||||||
|
QTest::newRow("xdgShellV6|Apply") << Test::ShellSurfaceType::XdgShellV6 << 3;
|
||||||
|
|
||||||
|
QTest::newRow("wlShell|ApplyNow") << Test::ShellSurfaceType::WlShell << 5;
|
||||||
|
QTest::newRow("xdgShellV5|ApplyNow") << Test::ShellSurfaceType::XdgShellV5 << 5;
|
||||||
|
QTest::newRow("xdgShellV6|ApplyNow") << Test::ShellSurfaceType::XdgShellV6 << 5;
|
||||||
|
|
||||||
|
QTest::newRow("wlShell|ForceTemporarily") << Test::ShellSurfaceType::WlShell << 6;
|
||||||
|
QTest::newRow("xdgShellV5|ForceTemporarily") << Test::ShellSurfaceType::XdgShellV5 << 6;
|
||||||
|
QTest::newRow("xdgShellV6|ForceTemporarily") << Test::ShellSurfaceType::XdgShellV6 << 6;
|
||||||
|
}
|
||||||
|
|
||||||
|
void TestShellClientRules::testApplyInitialMinimize()
|
||||||
|
{
|
||||||
|
// install the temporary rule
|
||||||
|
QFETCH(int, ruleNumber);
|
||||||
|
QString rule = QStringLiteral("minimize=1\nminimizerule=%1").arg(ruleNumber);
|
||||||
|
QMetaObject::invokeMethod(RuleBook::self(), "temporaryRulesMessage", Q_ARG(QString, rule));
|
||||||
|
|
||||||
|
QScopedPointer<Surface> surface(Test::createSurface());
|
||||||
|
QFETCH(Test::ShellSurfaceType, type);
|
||||||
|
QScopedPointer<QObject> shellSurface(Test::createShellSurface(type, surface.data()));
|
||||||
|
|
||||||
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
||||||
|
QVERIFY(c);
|
||||||
|
QCOMPARE(c->desktop(), 1);
|
||||||
|
QCOMPARE(c->isMinimized(), true);
|
||||||
|
QCOMPARE(c->isActive(), false);
|
||||||
|
c->setMinimized(false);
|
||||||
|
QCOMPARE(c->isMinimized(), false);
|
||||||
}
|
}
|
||||||
|
|
||||||
WAYLANDTEST_MAIN(TestShellClientRules)
|
WAYLANDTEST_MAIN(TestShellClientRules)
|
||||||
|
|
|
@ -315,6 +315,10 @@ void ShellClient::init()
|
||||||
|
|
||||||
// set initial desktop
|
// set initial desktop
|
||||||
setDesktop(rules()->checkDesktop(m_internal ? int(NET::OnAllDesktops) : VirtualDesktopManager::self()->current(), true));
|
setDesktop(rules()->checkDesktop(m_internal ? int(NET::OnAllDesktops) : VirtualDesktopManager::self()->current(), true));
|
||||||
|
// TODO: merge in checks from Client::manage?
|
||||||
|
if (rules()->checkMinimize(false, true)) {
|
||||||
|
minimize(true); // No animation
|
||||||
|
}
|
||||||
|
|
||||||
// setup shadow integration
|
// setup shadow integration
|
||||||
getShadow();
|
getShadow();
|
||||||
|
|
|
@ -282,7 +282,7 @@ void Workspace::init()
|
||||||
markXStackingOrderAsDirty();
|
markXStackingOrderAsDirty();
|
||||||
updateStackingOrder(true);
|
updateStackingOrder(true);
|
||||||
updateClientArea();
|
updateClientArea();
|
||||||
if (c->wantsInput()) {
|
if (c->wantsInput() && !c->isMinimized()) {
|
||||||
activateClient(c);
|
activateClient(c);
|
||||||
}
|
}
|
||||||
connect(c, &ShellClient::windowShown, this,
|
connect(c, &ShellClient::windowShown, this,
|
||||||
|
|
Loading…
Reference in a new issue