summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGunnar Sletta <gunnar.sletta@digia.com>2012-12-12 15:14:57 +0100
committerGunnar Sletta <gunnar.sletta@digia.com>2012-12-12 15:14:57 +0100
commitf98a99e800414386f1c36d879e3c4ebcec874f07 (patch)
treed281bde3e822fce015b6c7ce9e52a4e2e3d9f764
parente6ab45ad2f2173ccbc116540595ccfd8f27f71a6 (diff)
Tweaks..
-rw-r--r--EffectsSlide.qml4
-rw-r--r--WebkitSlide.qml3
-rw-r--r--WidgetsSlide.qml6
3 files changed, 9 insertions, 4 deletions
diff --git a/EffectsSlide.qml b/EffectsSlide.qml
index 5344d05..88eea56 100644
--- a/EffectsSlide.qml
+++ b/EffectsSlide.qml
@@ -136,8 +136,8 @@ Slide {
ThresholdMask {
id: thresholdEffect
maskSource: Image { source: "images/fog.png" }
- threshold: slide.t
- spread: 0.3
+ threshold: slide.t * 0.5 + 0.2;
+ spread: 0.2
source: noEffect
width: grid.cw * 0.9
height: width;
diff --git a/WebkitSlide.qml b/WebkitSlide.qml
index c2bca34..e560ed7 100644
--- a/WebkitSlide.qml
+++ b/WebkitSlide.qml
@@ -5,7 +5,7 @@ import Qt.labs.presentation 1.0
Slide {
id: slide
- title: "Qt WebKit - WebView Element"
+ title: "Qt WebKit - WebView"
WebView {
id: browser
@@ -17,6 +17,7 @@ Slide {
// clips it so it is not visible. Not ideal, but it kinda works
// for now.
layer.enabled: true
+ layer.smooth: true
}
Rectangle {
diff --git a/WidgetsSlide.qml b/WidgetsSlide.qml
index dd4b082..dbfe2df 100644
--- a/WidgetsSlide.qml
+++ b/WidgetsSlide.qml
@@ -99,7 +99,7 @@ Slide {
source: "images/widgets_boxes.png"
fillMode: Image.PreserveAspectFit
width: slide.width * .2
-
+ antialiasing: true
opacity: 0;
y: -slide.height * 0.2
rotation: 10
@@ -110,6 +110,7 @@ Slide {
source: "images/widgets_mainwindows.png"
fillMode: Image.PreserveAspectFit
width: slide.width * .2
+ antialiasing: true
opacity: 0
}
Image {
@@ -119,6 +120,7 @@ Slide {
width: slide.width * .2
x: slide.width * -0.05
y: -slide.height * 0.2
+ antialiasing: true
opacity: 0
}
@@ -130,6 +132,7 @@ Slide {
x: slide.width * 1
y: -slide.height * 0.1
+ antialiasing: true
opacity: 0
Image {
@@ -140,6 +143,7 @@ Slide {
x: parent.width * 0.3
y: parent.width * 0.1
rotation: -20
+ antialiasing: true
}
}
}