From 730bf7b256f0f06c39f92dad064869f5d1368c62 Mon Sep 17 00:00:00 2001 From: Gunnar Sletta Date: Tue, 23 Apr 2013 11:19:39 +0200 Subject: fixed up the demo suite Change-Id: I42dfba551b26f66b8de41dad3df2a5e120c82fb8 Reviewed-by: Eirik Aavitsland --- .../presentation/CodeSlide.qml | 162 +++++++++++++++++++++ 1 file changed, 162 insertions(+) create mode 100644 basicsuite/Qt5 Launch Presentation/presentation/CodeSlide.qml (limited to 'basicsuite/Qt5 Launch Presentation/presentation/CodeSlide.qml') diff --git a/basicsuite/Qt5 Launch Presentation/presentation/CodeSlide.qml b/basicsuite/Qt5 Launch Presentation/presentation/CodeSlide.qml new file mode 100644 index 0000000..ba8626b --- /dev/null +++ b/basicsuite/Qt5 Launch Presentation/presentation/CodeSlide.qml @@ -0,0 +1,162 @@ +/**************************************************************************** +** +** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/ +** +** This file is part of the QML Presentation System. +** +** $QT_BEGIN_LICENSE:LGPL$ +** GNU Lesser General Public License Usage +** This file may be used under the terms of the GNU Lesser General Public +** License version 2.1 as published by the Free Software Foundation and +** appearing in the file LICENSE.LGPL included in the packaging of this +** file. Please review the following information to ensure the GNU Lesser +** General Public License version 2.1 requirements will be met: +** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU General +** Public License version 3.0 as published by the Free Software Foundation +** and appearing in the file LICENSE.GPL included in the packaging of this +** file. Please review the following information to ensure the GNU General +** Public License version 3.0 requirements will be met: +** http://www.gnu.org/copyleft/gpl.html. +** +** Other Usage +** Alternatively, this file may be used in accordance with the terms and +** conditions contained in a signed written agreement between you and Digia. +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + + +import QtQuick 2.0 + +Slide { + id: slide; + + property string codeFontFamily: parent.codeFontFamily; + property string code; + property real codeFontSize: baseFontSize * 0.6; + + + + Rectangle { + id: background + anchors.fill: parent + radius: height / 10; + gradient: Gradient { + GradientStop { position: 0; color: Qt.rgba(0.8, 0.8, 0.8, 0.5); } + GradientStop { position: 1; color: Qt.rgba(0.2, 0.2, 0.2, 0.5); } + } + border.color: slide.textColor; + border.width: height / 250; + antialiasing: true + } + + onCodeChanged: { + listModel.clear(); + var codeLines = slide.code.split("\n"); + for (var i=0; i