View Single Post
Posts: 435 | Thanked: 769 times | Joined on Apr 2010
#364
Originally Posted by MohammadAG View Post
Now if only someone found a way to get past audio skipping when you touch anything hildon-related... (same in mplayer/someplayer etc)
Do you mean touchscreen sounds?

If so you may try this:

Code:
void MainWindow::startMaemoTouchSounds() {
     QProcess myProcess;
     myProcess.startDetached("maemo-xinput-sounds");
 }

 void MainWindow::stopMaemoTouchSounds() {
      QProcess myProcess;
      myProcess.startDetached("killall maemo-xinput-sounds");
 }