aboutsummaryrefslogtreecommitdiff
path: root/qmidiplayerlite.src.d/main.qml
diff options
context:
space:
mode:
authorGravatar Chris Xiong <chirs241097@gmail.com> 2016-04-06 16:54:29 +0800
committerGravatar Chris Xiong <chirs241097@gmail.com> 2016-04-06 16:54:29 +0800
commit70fd2d85c1bd6fb8732e680e8fda9d36c317c732 (patch)
tree4f048e7af294a2d40d3cabb9ea0ff266aa1fc36c /qmidiplayerlite.src.d/main.qml
parentcf7eafca1fbc9aae495d7b7d7e1fb4bc92e6819f (diff)
downloadQMidiPlayer-70fd2d85c1bd6fb8732e680e8fda9d36c317c732.tar.xz
Too young too simple.
Diffstat (limited to 'qmidiplayerlite.src.d/main.qml')
-rw-r--r--qmidiplayerlite.src.d/main.qml144
1 files changed, 0 insertions, 144 deletions
diff --git a/qmidiplayerlite.src.d/main.qml b/qmidiplayerlite.src.d/main.qml
deleted file mode 100644
index 0ec0975..0000000
--- a/qmidiplayerlite.src.d/main.qml
+++ /dev/null
@@ -1,144 +0,0 @@
-import QtQuick 2.3
-import QtQuick.Window 2.2
-import QtQuick.Controls 1.0
-import QtQuick.Dialogs 1.0
-import org.chrisoft.qmpcore 1.0
-
-Window {
- id: window1
- width: 420
- height: 240
- title: "QMidiPlayer Lite"
- visible: true
- property bool playing
- playing: false
-
- MouseArea {
- id: mouseArea1
- anchors.rightMargin: 0
- anchors.bottomMargin: 0
- anchors.leftMargin: 0
- anchors.topMargin: 0
- anchors.fill: parent
- onClicked: {
- //Qt.quit();
- }
-
- Button {
- id: button2
- x: 170
- text: qsTr("Play")
- anchors.top: parent.top
- anchors.topMargin: 172
- anchors.horizontalCenter: parent.horizontalCenter
- onClicked: {
- if(!playing)
- {
- qmpcore.loadFile(fileName.text);
- qmpcore.initFluidSynth();
- qmpcore.playFile();
- playing=true;
- uiTimer.start();
- text="Stop";
- }
- else
- {
- qmpcore.stop();
- playing=false;
- text="Play";
- hsTimer.value=0;uiTimer.stop();
- }
- }
- }
-
- Slider {
- id: hsTimer
- y: 210
- height: 22
- anchors.right: parent.right
- anchors.rightMargin: 8
- anchors.left: parent.left
- anchors.leftMargin: 8
- anchors.bottom: parent.bottom
- anchors.bottomMargin: 8
- tickmarksEnabled: false
- stepSize: 1
- maximumValue: 100
- property bool autovalchange: false
- onValueChanged: {
- if(autovalchange||pressed)return;
- if(playing){qmpcore.setTCeptr(value);qmpcore.panic();}
- }
- onPressedChanged: {
- if(!pressed)
- {
- /*if(playing)
- {
- if(ui->hsTimer->value()==100){on_pbNext_clicked();return;}
- player->setTCeptr(player->getStamp(ui->hsTimer->value()),ui->hsTimer->value());
- player->playerPanic();
- offset=ui->hsTimer->value()/100.*player->getFtime();
- st=std::chrono::steady_clock::now();
- }
- else
- {
- player->setTCeptr(player->getStamp(ui->hsTimer->value()),ui->hsTimer->value());
- offset=ui->hsTimer->value()/100.*player->getFtime();
- char ts[100];
- sprintf(ts,"%02d:%02d",(int)(offset)/60,(int)(offset)%60);
- ui->lbCurTime->setText(ts);
- }*/
- if(playing){qmpcore.setTCeptr(value);qmpcore.panic();}
- }
- }
- }
- }
-
- CQMPCoreWrapper {
- id: qmpcore
- }
- Timer {
- id: uiTimer
- interval: 100
- running: false
- repeat: true
- onTriggered: {
- if(!hsTimer.pressed)
- {
- hsTimer.autovalchange=true;
- hsTimer.value=qmpcore.getProgress();
- hsTimer.autovalchange=false;
- }
- }
- }
-
- Text {
- id: fileName
- text: qsTr("...")
- anchors.centerIn: parent
- }
-
- Button {
- id: button1
- x: 170
- width: 80
- height: 27
- text: qsTr("Open")
- anchors.top: parent.top
- anchors.topMargin: 142
- anchors.horizontalCenter: parent.horizontalCenter
- onClicked: {
- fileDialog.open();
- }
- }
-
- FileDialog {
- id: fileDialog
- title: qsTr("Select midi file")
- nameFilters: ["MIDI Files (*.mid *.midi)"]
- onAccepted: {
- fileName.text=fileUrl;
- }
- }
-}
-