This repository has been archived by the owner on Nov 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When an external screen appears, move the shell to it
- Loading branch information
Showing
13 changed files
with
512 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
* Copyright (C) 2015 Canonical, Ltd. | ||
* | ||
* 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; version 3. | ||
* | ||
* 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, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
import QtQuick 2.4 | ||
import AccountsService 0.1 | ||
import GSettings 1.0 | ||
import Ubuntu.Components 1.3 | ||
|
||
/* | ||
Defines the background URL based on several factors, such as: | ||
- default, fallback, background | ||
- Background set in AccountSettings, if any | ||
- Background set in GSettings, if any | ||
*/ | ||
QtObject { | ||
/* | ||
Users should set their UI width here. | ||
*/ | ||
property real width | ||
|
||
property url defaultBackground: Qt.resolvedUrl(width >= units.gu(60) ? "../graphics/tablet_background.jpg" | ||
: "../graphics/phone_background.jpg") | ||
|
||
/* | ||
That's the property users of this component are going to consume. | ||
*/ | ||
readonly property url background: asImageTester.status == Image.Ready ? asImageTester.source | ||
: gsImageTester.status == Image.Ready ? gsImageTester.source : defaultBackground | ||
|
||
// This is a dummy image to detect if the custom AS set wallpaper loads successfully. | ||
property var _asImageTester: Image { | ||
id: asImageTester | ||
source: "Adas"//AccountsService.backgroundFile != undefined && AccountsService.backgroundFile.length > 0 ? AccountsService.backgroundFile : "" | ||
height: 0 | ||
width: 0 | ||
sourceSize.height: 0 | ||
sourceSize.width: 0 | ||
} | ||
|
||
// This is a dummy image to detect if the custom GSettings set wallpaper loads successfully. | ||
property var _gsImageTester: Image { | ||
id: gsImageTester | ||
source: backgroundSettings.pictureUri && backgroundSettings.pictureUri.length > 0 ? backgroundSettings.pictureUri : "" | ||
height: 0 | ||
width: 0 | ||
sourceSize.height: 0 | ||
sourceSize.width: 0 | ||
} | ||
|
||
property var _gsettings: GSettings { | ||
id: backgroundSettings | ||
schema.id: "org.gnome.desktop.background" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* | ||
* Copyright (C) 2015 Canonical, Ltd. | ||
* | ||
* 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; version 3. | ||
* | ||
* 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, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
import QtQuick 2.4 | ||
import Ubuntu.Components 1.3 | ||
import "Components" | ||
|
||
Image { | ||
id: root | ||
|
||
BackgroundResolver { | ||
width: root.width | ||
id: bgResolver | ||
} | ||
|
||
source: bgResolver.background | ||
|
||
UbuntuShape { | ||
anchors.fill: text | ||
anchors.margins: -units.gu(2) | ||
backgroundColor: "black" | ||
opacity: 0.4 | ||
} | ||
|
||
Label { | ||
id: text | ||
anchors.centerIn: parent | ||
width: parent.width / 2 | ||
text: i18n.tr("Your device is now connected to an external display.") | ||
color: "white" | ||
horizontalAlignment: Text.AlignHCenter | ||
verticalAlignment: Text.AlignVCenter | ||
fontSize: "x-large" | ||
wrapMode: Text.Wrap | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* Copyright (C) 2015 Canonical, Ltd. | ||
* | ||
* 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; version 3. | ||
* | ||
* 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, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include "SecondaryWindow.h" | ||
|
||
// local | ||
#include <paths.h> | ||
|
||
SecondaryWindow::SecondaryWindow(QQmlEngine *engine) | ||
: QQuickView(engine, nullptr) | ||
{ | ||
setResizeMode(QQuickView::SizeRootObjectToView); | ||
setColor("black"); | ||
setTitle(QStringLiteral("Unity8 Shell - Secundary Screen")); | ||
|
||
QUrl source(::qmlDirectory() + "/SecondaryDisplay.qml"); | ||
setSource(source); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright (C) 2015 Canonical, Ltd. | ||
* | ||
* 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; version 3. | ||
* | ||
* 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, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#ifndef UNITY_SECONDARY_WINDOW_H | ||
#define UNITY_SECONDARY_WINDOW_H | ||
|
||
#include <QQuickView> | ||
|
||
class SecondaryWindow : public QQuickView | ||
{ | ||
Q_OBJECT | ||
|
||
public: | ||
SecondaryWindow(QQmlEngine *engine); | ||
}; | ||
|
||
#endif // UNITY_SECONDARY_WINDOW_H |
Oops, something went wrong.