18b57ffc29
use adjustSize in updateMinimumWidth et al. changing tooltip content updates sizeHints using setGeometry is immediate, and will kill the animations. for dialogs other than tooltips there is no change since adjustGeometry is just setGeometry Change-Id: I3e6310f12f76e400f2663b8409a2bbc7e7398f39
68 lines
2.5 KiB
C++
68 lines
2.5 KiB
C++
/********************************************************************************
|
|
* Copyright 2014 Marco Martin <mart@kde.org> *
|
|
* *
|
|
* This library is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU Library General Public *
|
|
* License as published by the Free Software Foundation; either *
|
|
* version 2 of the License, or (at your option) any later version. *
|
|
* *
|
|
* This library is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
|
|
* Library General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Library General Public License *
|
|
* along with this library; see the file COPYING.LIB. If not, write to *
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, *
|
|
* Boston, MA 02110-1301, USA. *
|
|
*********************************************************************************/
|
|
|
|
#include "dialogtest.h"
|
|
#include <KWindowSystem>
|
|
|
|
|
|
void DialogTest::initTestCase()
|
|
{
|
|
m_dialog = new PlasmaQuick::Dialog;
|
|
|
|
m_panel = new QQuickView;
|
|
m_panel->setGeometry(0, 0, 50, 50);
|
|
m_panel->setFlags(Qt::FramelessWindowHint|Qt::WindowDoesNotAcceptFocus);
|
|
|
|
m_panel2 = new QQuickView;
|
|
m_panel2->setGeometry(100, 0, 50, 50);
|
|
m_panel2->setFlags(Qt::FramelessWindowHint|Qt::WindowDoesNotAcceptFocus);
|
|
|
|
m_content = new QQuickItem;
|
|
m_content->setWidth(100);
|
|
m_content->setHeight(100);
|
|
m_dialog->setMainItem(m_content);
|
|
|
|
m_panel->show();
|
|
m_panel2->show();
|
|
KWindowSystem::setType(m_panel->winId(), NET::Dock);
|
|
m_dialog->setVisualParent(m_panel->contentItem());
|
|
m_dialog->show();
|
|
}
|
|
|
|
void DialogTest::cleanupTestCase()
|
|
{
|
|
delete m_dialog;
|
|
delete m_panel;
|
|
delete m_panel2;
|
|
}
|
|
|
|
void DialogTest::position()
|
|
{
|
|
QTest::qWaitForWindowExposed(m_dialog);
|
|
|
|
QCOMPARE(m_dialog->x(), 0);
|
|
QCOMPARE(m_dialog->y(), 49);
|
|
|
|
m_dialog->setVisualParent(m_panel2->contentItem());
|
|
QCOMPARE(m_dialog->x(), 73);
|
|
QCOMPARE(m_dialog->y(), 49);
|
|
}
|
|
|
|
QTEST_MAIN(DialogTest)
|