0.4
This commit is contained in:
parent
680d78e173
commit
d2b70a89d0
5 changed files with 16 additions and 2 deletions
BIN
BPM-Studio-Net-Client-16x16.ico
Normal file
BIN
BPM-Studio-Net-Client-16x16.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 318 B |
BIN
BPM-Studio-Net-Client-32x32.ico
Normal file
BIN
BPM-Studio-Net-Client-32x32.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 766 B |
|
@ -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
|
||||
|
|
6
BPM-Studio-Net-Client.qrc
Normal file
6
BPM-Studio-Net-Client.qrc
Normal 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>
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue