|
|
|
@ -156,14 +156,14 @@ void DockView::init()
|
|
|
|
|
|
|
|
|
|
void DockView::setCurrentScreen(const QString id)
|
|
|
|
|
{
|
|
|
|
|
if (!m_screenToFollow || m_screenToFollow->name() == id){
|
|
|
|
|
if (!m_screenToFollow || m_screenToFollow->name() == id) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QScreen *nextScreen{nullptr};
|
|
|
|
|
|
|
|
|
|
foreach(auto scr, qGuiApp->screens()){
|
|
|
|
|
if (scr && scr->name() == id){
|
|
|
|
|
foreach (auto scr, qGuiApp->screens()) {
|
|
|
|
|
if (scr && scr->name() == id) {
|
|
|
|
|
nextScreen = scr;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
@ -195,17 +195,18 @@ void DockView::setScreenToFollow(QScreen *screen)
|
|
|
|
|
void DockView::reconsiderScreen()
|
|
|
|
|
{
|
|
|
|
|
qDebug() << " Delayer ";
|
|
|
|
|
foreach(auto scr, qGuiApp->screens()){
|
|
|
|
|
qDebug() << " D, found screen: "<<scr->name();
|
|
|
|
|
|
|
|
|
|
foreach (auto scr, qGuiApp->screens()) {
|
|
|
|
|
qDebug() << " D, found screen: " << scr->name();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (m_onPrimary && screen()!=qGuiApp->primaryScreen()) {
|
|
|
|
|
if (m_onPrimary && screen() != qGuiApp->primaryScreen()) {
|
|
|
|
|
connect(qGuiApp->primaryScreen(), &QScreen::geometryChanged, this, &DockView::screenGeometryChanged);
|
|
|
|
|
setScreenToFollow(qGuiApp->primaryScreen());
|
|
|
|
|
syncGeometry();
|
|
|
|
|
} else {
|
|
|
|
|
foreach(auto scr, qGuiApp->screens()){
|
|
|
|
|
if (scr && scr->name() == m_screenToFollowId){
|
|
|
|
|
foreach (auto scr, qGuiApp->screens()) {
|
|
|
|
|
if (scr && scr->name() == m_screenToFollowId) {
|
|
|
|
|
connect(scr, &QScreen::geometryChanged, this, &DockView::screenGeometryChanged);
|
|
|
|
|
setScreenToFollow(scr);
|
|
|
|
|
syncGeometry();
|
|
|
|
@ -386,7 +387,7 @@ void DockView::updatePosition()
|
|
|
|
|
|
|
|
|
|
case Plasma::Types::BottomEdge:
|
|
|
|
|
screenGeometry = this->screen()->geometry();
|
|
|
|
|
qDebug() << "screen geometry: "<<screenGeometry;
|
|
|
|
|
qDebug() << "screen geometry: " << screenGeometry;
|
|
|
|
|
|
|
|
|
|
if (m_drawShadows) {
|
|
|
|
|
position = {screenGeometry.x() + length(screenGeometry.width()),
|
|
|
|
@ -439,6 +440,7 @@ inline void DockView::syncGeometry()
|
|
|
|
|
// setScreen(qGuiApp->primaryScreen());
|
|
|
|
|
//}
|
|
|
|
|
bool found{false};
|
|
|
|
|
|
|
|
|
|
if (this->screen() != m_screenToFollow) {
|
|
|
|
|
qDebug() << "Sync Geometry screens incosistent!!!!";
|
|
|
|
|
/*foreach(auto scr, qGuiApp->screens()){
|
|
|
|
@ -463,6 +465,7 @@ inline void DockView::syncGeometry()
|
|
|
|
|
resizeWindow();
|
|
|
|
|
updatePosition();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// qDebug() << "dock geometry:" << qRectToStr(geometry());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -565,7 +568,7 @@ bool DockView::onPrimary() const
|
|
|
|
|
|
|
|
|
|
void DockView::setOnPrimary(bool flag)
|
|
|
|
|
{
|
|
|
|
|
if (m_onPrimary == flag){
|
|
|
|
|
if (m_onPrimary == flag) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -697,6 +700,7 @@ bool DockView::event(QEvent *e)
|
|
|
|
|
engine()->clearComponentCache();
|
|
|
|
|
engine()->trimComponentCache();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ContainmentView::event(e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|