2013-01-29 21:11:45 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2013 Marco Martin <mart@kde.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "view.h"
|
2013-04-26 13:00:07 +02:00
|
|
|
#include "containmentconfigview.h"
|
|
|
|
#include "panelconfigview.h"
|
|
|
|
#include "panelview.h"
|
|
|
|
|
2013-01-29 21:11:45 +01:00
|
|
|
|
2013-02-01 13:20:20 +01:00
|
|
|
#include <QDebug>
|
2013-02-04 19:47:35 +01:00
|
|
|
#include <QQuickItem>
|
2013-02-04 20:28:41 +01:00
|
|
|
#include <QQmlContext>
|
2013-02-04 19:47:35 +01:00
|
|
|
#include <QTimer>
|
2013-03-22 14:39:33 +01:00
|
|
|
#include <QScreen>
|
2013-02-01 13:20:20 +01:00
|
|
|
#include "plasma/pluginloader.h"
|
|
|
|
|
2013-02-21 18:32:32 +01:00
|
|
|
|
2013-02-12 14:26:34 +01:00
|
|
|
View::View(Plasma::Corona *corona, QWindow *parent)
|
|
|
|
: QQuickView(parent),
|
|
|
|
m_corona(corona)
|
2013-01-29 21:11:45 +01:00
|
|
|
{
|
2013-02-15 12:30:32 +01:00
|
|
|
//FIXME: for some reason all windows must have alpha enable otherwise the ones that do won't paint.
|
|
|
|
//Probably is an architectural problem
|
|
|
|
QSurfaceFormat format;
|
|
|
|
format.setAlphaBufferSize(8);
|
|
|
|
setFormat(format);
|
2013-03-22 14:39:33 +01:00
|
|
|
|
|
|
|
connect(screen(), &QScreen::virtualGeometryChanged,
|
|
|
|
this, &View::screenGeometryChanged);
|
2013-01-29 21:11:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
View::~View()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-02-14 21:14:04 +01:00
|
|
|
Plasma::Corona *View::corona() const
|
|
|
|
{
|
|
|
|
return m_corona;
|
|
|
|
}
|
|
|
|
|
2013-02-21 18:32:32 +01:00
|
|
|
KConfigGroup View::config() const
|
|
|
|
{
|
|
|
|
if (!containment()) {
|
|
|
|
return KConfigGroup();
|
|
|
|
}
|
2013-03-05 16:10:45 +01:00
|
|
|
KConfigGroup views(KSharedConfig::openConfig(), "PlasmaViews");
|
2013-02-21 18:32:32 +01:00
|
|
|
return KConfigGroup(&views, QString::number(containment()->screen()));
|
|
|
|
}
|
|
|
|
|
2013-02-14 15:46:01 +01:00
|
|
|
void View::init()
|
|
|
|
{
|
|
|
|
if (!m_corona->package().isValid()) {
|
|
|
|
qWarning() << "Invalid home screen package";
|
|
|
|
}
|
2013-01-29 21:11:45 +01:00
|
|
|
|
2013-02-14 15:46:01 +01:00
|
|
|
setResizeMode(View::SizeRootObjectToView);
|
2013-03-05 13:58:18 +01:00
|
|
|
setSource(QUrl::fromLocalFile(m_corona->package().filePath("views", "Desktop.qml")));
|
2013-02-14 15:46:01 +01:00
|
|
|
}
|
2013-01-29 21:11:45 +01:00
|
|
|
|
2013-02-04 19:47:35 +01:00
|
|
|
void View::setContainment(Plasma::Containment *cont)
|
|
|
|
{
|
2013-05-14 18:19:33 +02:00
|
|
|
Plasma::Types::Location oldLoc = (Plasma::Types::Location)location();
|
|
|
|
Plasma::Types::FormFactor oldForm = formFactor();
|
2013-02-21 17:49:52 +01:00
|
|
|
|
2013-02-04 19:47:35 +01:00
|
|
|
if (m_containment) {
|
|
|
|
disconnect(m_containment.data(), 0, this, 0);
|
2013-02-14 14:39:46 +01:00
|
|
|
QObject *oldGraphicObject = m_containment.data()->property("graphicObject").value<QObject *>();
|
|
|
|
if (oldGraphicObject) {
|
|
|
|
//make sure the graphic object won't die with us
|
|
|
|
oldGraphicObject->setParent(cont);
|
|
|
|
}
|
2013-02-04 19:47:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
m_containment = cont;
|
|
|
|
|
2013-02-21 17:49:52 +01:00
|
|
|
if (oldLoc != location()) {
|
2013-05-14 18:19:33 +02:00
|
|
|
emit locationChanged((Plasma::Types::Location)location());
|
2013-02-21 17:49:52 +01:00
|
|
|
}
|
|
|
|
if (oldForm != formFactor()) {
|
|
|
|
emit formFactorChanged(formFactor());
|
|
|
|
}
|
|
|
|
|
2013-02-21 20:35:21 +01:00
|
|
|
emit containmentChanged();
|
|
|
|
|
2013-02-21 17:49:52 +01:00
|
|
|
if (cont) {
|
|
|
|
connect(cont, &Plasma::Containment::locationChanged,
|
|
|
|
this, &View::locationChanged);
|
|
|
|
connect(cont, &Plasma::Containment::formFactorChanged,
|
|
|
|
this, &View::formFactorChanged);
|
2013-04-26 13:00:07 +02:00
|
|
|
connect(cont, &Plasma::Containment::configureRequested,
|
|
|
|
this, &View::showConfigurationInterface);
|
2013-02-21 17:49:52 +01:00
|
|
|
} else {
|
2013-02-04 19:47:35 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-02-05 13:15:32 +01:00
|
|
|
QObject *graphicObject = m_containment.data()->property("graphicObject").value<QObject *>();
|
2013-03-05 14:23:52 +01:00
|
|
|
|
2013-02-05 13:15:32 +01:00
|
|
|
if (graphicObject) {
|
|
|
|
qDebug() << "using as graphic containment" << graphicObject << m_containment.data();
|
2013-02-05 11:03:40 +01:00
|
|
|
|
2013-02-05 15:53:53 +01:00
|
|
|
//graphicObject->setProperty("visible", false);
|
2013-02-14 21:14:04 +01:00
|
|
|
graphicObject->setProperty("drawWallpaper",
|
2013-05-10 19:29:13 +02:00
|
|
|
(cont->containmentType() == Plasma::Types::DesktopContainment ||
|
|
|
|
cont->containmentType() == Plasma::Types::CustomContainment));
|
2013-02-05 13:15:32 +01:00
|
|
|
graphicObject->setProperty("parent", QVariant::fromValue(rootObject()));
|
|
|
|
rootObject()->setProperty("containment", QVariant::fromValue(graphicObject));
|
|
|
|
} else {
|
|
|
|
qWarning() << "Containment graphic object not valid";
|
2013-02-04 19:47:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Plasma::Containment *View::containment() const
|
|
|
|
{
|
|
|
|
return m_containment.data();
|
|
|
|
}
|
|
|
|
|
2013-03-22 14:39:33 +01:00
|
|
|
//FIXME: wrong types
|
|
|
|
void View::setLocation(int location)
|
|
|
|
{
|
2013-05-14 18:19:33 +02:00
|
|
|
m_containment.data()->setLocation((Plasma::Types::Location)location);
|
2013-03-22 14:39:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//FIXME: wrong types
|
|
|
|
int View::location() const
|
2013-02-21 17:49:52 +01:00
|
|
|
{
|
|
|
|
if (!m_containment) {
|
2013-05-10 19:29:13 +02:00
|
|
|
return Plasma::Types::Desktop;
|
2013-02-21 17:49:52 +01:00
|
|
|
}
|
|
|
|
return m_containment.data()->location();
|
|
|
|
}
|
|
|
|
|
2013-05-14 18:19:33 +02:00
|
|
|
Plasma::Types::FormFactor View::formFactor() const
|
2013-02-21 17:49:52 +01:00
|
|
|
{
|
|
|
|
if (!m_containment) {
|
2013-05-10 19:29:13 +02:00
|
|
|
return Plasma::Types::Planar;
|
2013-02-21 17:49:52 +01:00
|
|
|
}
|
|
|
|
return m_containment.data()->formFactor();
|
|
|
|
}
|
|
|
|
|
2013-03-22 14:39:33 +01:00
|
|
|
QRectF View::screenGeometry()
|
|
|
|
{
|
|
|
|
return screen()->geometry();
|
|
|
|
}
|
|
|
|
|
2013-04-26 13:00:07 +02:00
|
|
|
void View::showConfigurationInterface(Plasma::Applet *applet)
|
|
|
|
{
|
|
|
|
if (m_configView) {
|
|
|
|
m_configView.data()->hide();
|
|
|
|
m_configView.data()->deleteLater();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!applet || !applet->containment()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Plasma::Containment *cont = qobject_cast<Plasma::Containment *>(applet);
|
|
|
|
PanelView *pv = qobject_cast< PanelView* >(this);
|
|
|
|
|
|
|
|
if (cont && pv) {
|
|
|
|
m_configView = new PanelConfigView(cont, pv);
|
|
|
|
} else if (cont) {
|
|
|
|
m_configView = new ContainmentConfigView(cont);
|
|
|
|
} else {
|
|
|
|
m_configView = new ConfigView(applet);
|
|
|
|
}
|
|
|
|
m_configView.data()->init();
|
|
|
|
|
|
|
|
m_configView.data()->show();
|
|
|
|
}
|
|
|
|
|
2013-01-29 21:11:45 +01:00
|
|
|
#include "moc_view.cpp"
|