Moved printer specific items back and renamed advancedSidebar to setting view

This commit is contained in:
Jaime van Kessel 2015-04-16 10:46:46 +02:00
parent b2b3464690
commit 899c86ac2f
6 changed files with 510 additions and 1 deletions

48
qml/SidebarTooltip.qml Normal file
View file

@ -0,0 +1,48 @@
import QtQuick 2.2
import QtQuick.Controls 1.1
import QtQuick.Controls.Styles 1.1
import QtQuick.Layouts 1.1
import UM 1.0 as UM
Rectangle {
id: base;
width: UM.Theme.sizes.tooltip.width;
height: label.height + UM.Theme.sizes.tooltip_margins.height * 2;
color: UM.Theme.colors.tooltip;
opacity: 0;
Behavior on opacity { NumberAnimation { duration: 100; } }
property alias text: label.text;
function show(position) {
if(position.y + base.height > parent.height) {
x = position.x;
y = parent.height - base.height;
} else {
x = position.x;
y = position.y;
}
base.opacity = 1;
}
function hide() {
base.opacity = 0;
}
Label {
id: label;
anchors {
top: parent.top;
topMargin: UM.Theme.sizes.tooltip_margins.height;
left: parent.left;
leftMargin: UM.Theme.sizes.tooltip_margins.width;
right: parent.right;
rightMargin: UM.Theme.sizes.tooltip_margins.width;
}
wrapMode: Text.Wrap;
font: UM.Theme.fonts.default;
}
}