summaryrefslogtreecommitdiffstats
path: root/basicsuite/qt5-launchpresentation/presentation/SlideCounter.qml
diff options
context:
space:
mode:
authorPasi Petäjäjärvi <pasi.petajajarvi@digia.com>2014-06-19 17:32:08 +0300
committerPasi Petäjäjärvi <pasi.petajajarvi@digia.com>2014-06-24 13:41:20 +0300
commite6253b8d140a98f3d2327b2d028b237480378637 (patch)
tree47db0be9b137e4fd271963997483d058a44524ff /basicsuite/qt5-launchpresentation/presentation/SlideCounter.qml
parentf868312fb6f1b6a8d7f337afcb3ec94481d3571b (diff)
Delete obsoleted demos from Boot2Qt launcher
* Qt5 Launch Presentation * Photogallery Task-number: QTEE-656 Change-Id: I5e71e38fd318a0934285dfa82873279c7fadd31d Reviewed-by: Kalle Viironen <kalle.viironen@digia.com>
Diffstat (limited to 'basicsuite/qt5-launchpresentation/presentation/SlideCounter.qml')
-rw-r--r--basicsuite/qt5-launchpresentation/presentation/SlideCounter.qml61
1 files changed, 0 insertions, 61 deletions
diff --git a/basicsuite/qt5-launchpresentation/presentation/SlideCounter.qml b/basicsuite/qt5-launchpresentation/presentation/SlideCounter.qml
deleted file mode 100644
index 06e7542..0000000
--- a/basicsuite/qt5-launchpresentation/presentation/SlideCounter.qml
+++ /dev/null
@@ -1,61 +0,0 @@
-/****************************************************************************
-**
-** 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
-
-Text {
- id: counter;
-
- property real fontSize: parent.height * 0.05
- property real fontScale: 0.5;
- property color textColor: parent.textColor != undefined ? parent.textColor : "black"
- property string fontFamily: parent.fontFamily != undefined ? parent.fontFamily : "Helvetica"
-
- text: "# " + (parent.currentSlide + 1) + " / " + parent.slides.length;
- color: counter.textColor;
- font.family: counter.fontFamily;
- font.pixelSize: fontSize * fontScale;
-
- anchors.right: parent.right;
- anchors.bottom: parent.bottom;
- anchors.margins: font.pixelSize;
-}