Import initial du projet shipheart_cm5
This commit is contained in:
Executable
+41
@@ -0,0 +1,41 @@
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Controls 2.12
|
||||
|
||||
|
||||
// Toutes les valeurs ci-dessous sont des valeurs par défaut qui passent à peu près partout.
|
||||
// Mais elles peuvent toutes êtes overridées lors de l'appel de la forme :
|
||||
//
|
||||
// Shipheart_formulaire_textfield {
|
||||
// text: libelle
|
||||
// placeholderText: qsTr("truc bidule")
|
||||
// anchors.left: label.right
|
||||
// width: parent.width - label.width - anchors.leftMargin
|
||||
// ... etc...
|
||||
// }
|
||||
|
||||
|
||||
|
||||
TextArea {
|
||||
id: formulaire_textarea
|
||||
|
||||
anchors {
|
||||
right: parent.right
|
||||
top: parent.top
|
||||
}
|
||||
padding: 10
|
||||
|
||||
placeholderText: ""
|
||||
placeholderTextColor: couleur_gris_tres_pale_transparent
|
||||
|
||||
font.pixelSize: 18
|
||||
color: couleur_blanc_casse
|
||||
font.family: shipheart_font_saisie_textarea
|
||||
|
||||
|
||||
text: ""
|
||||
background: Rectangle {
|
||||
color: shipheart_couleur_fond_bouton
|
||||
radius: shipheart_rayon_bouton
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user