qmlfrontend/Page1.qml
author Wuzzy <Wuzzy2@mail.ru>
Sat, 27 Oct 2018 15:55:19 +0200
changeset 14014 f09276eb0c27
parent 12854 28cb18c5e712
child 12858 0c6fb706f747
child 14143 745c73e0e644
permissions -rw-r--r--
Add 7 new taunts New sounds: * Bugger, Drat: Hog damages self only * Thisoneismine: Crate drop * Whatthe: Something is going to blow up close to hog * Solong, Ohdear: Death * Gonnagetyou: Vow for revenge Fallback code is added for existing voicepacks Thisoneismine is not used in Robot because the text in this sound file is "Threat detected.", which does not make sense.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12854
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
     1
import QtQuick 2.7
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
     2
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
     3
Page1Form {
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
     4
  button1.onClicked: {
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
     5
    console.log("Button Pressed. Entered text: " + textField1.text);
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
     6
  }
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
     7
}