This commit is contained in:
Thomas resiX 2025-02-15 12:18:10 +01:00
parent 680d78e173
commit d2b70a89d0
5 changed files with 16 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 318 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 766 B

View file

@ -22,3 +22,8 @@ FORMS += \
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
RESOURCES += \
BPM-Studio-Net-Client.qrc
RC_ICONS = BPM-Studio-Net-Client-32x32.ico

View file

@ -0,0 +1,6 @@
<RCC>
<qresource prefix="/">
<file>BPM-Studio-Net-Client-16x16.ico</file>
<file>BPM-Studio-Net-Client-32x32.ico</file>
</qresource>
</RCC>

View file

@ -101,12 +101,15 @@ void MainWindow::on_pushButton_play_clicked(){
while(status_loop=="ja")
ui->statusbar->showMessage("~");
if(!(status_player1=="play") || !(status_player2=="play")){
if(status_player1=="aus" || status_player1=="pause"){
if(status_player1=="pause"){
befehl=befehl_play1;
sende_befehl();
}else if(status_player2=="aus" || status_player2=="pause"){
}else if(status_player2=="pause"){
befehl=befehl_play2;
sende_befehl();
}else{
befehl=befehl_play1;
sende_befehl();
}
}
}