Warning, /education/gcompris/src/activities/algebra_by/AlgebraText.qml is written in an unsupported language. File is not indexed.

0001 /* GCompris - Algebra.qml
0002  *
0003  * SPDX-FileCopyrightText: 2015 Bruno Coudoin <bruno.coudoin@gcompris.net>
0004  *
0005  *   SPDX-License-Identifier: GPL-3.0-or-later
0006  */
0007 import QtQuick 2.12
0008 import QtGraphicalEffects 1.0
0009 
0010 import "../../core"
0011 
0012 Item {
0013 
0014     width: text.width
0015     height: text.height
0016 
0017     property alias text: text.text
0018 
0019     GCText {
0020         id: text
0021         fontSize: hugeSize
0022         font.bold: true
0023         style: Text.Outline
0024         styleColor: "white"
0025         color: "black"
0026     }
0027 
0028     DropShadow {
0029         anchors.fill: text
0030         cached: true
0031         horizontalOffset: 1
0032         verticalOffset: 1
0033         radius: 3.0
0034         samples: 16
0035         color: "#422a2a2a"
0036         source: text
0037     }
0038 }