QTfrontend/ui/widget/qpushbuttonwithsound.cpp
author bovi
Mon, 16 Jan 2012 00:03:13 +0100
changeset 6577 9e49e6a8585b
parent 6572 0d0af531c1c7
child 6584 5bb48450b978
permissions -rw-r--r--
disable the glitchy exit sound

#include "qpushbuttonwithsound.h"
#include <QMessageBox>
#include <HWDataManager.h>
#include <QDir>
#include <SDLInteraction.h>
#include <hwform.h>
#include <QSettings>
#include <gameuiconfig.h>

QPushButtonWithSound::QPushButtonWithSound(QWidget *parent) :
    QPushButton(parent),
    isSoundEnabled(true)
{
    connect(this, SIGNAL(clicked()), this, SLOT(buttonClicked()));
}

void QPushButtonWithSound::buttonClicked()
{
    if ( !isSoundEnabled || !HWForm::config->isFrontendSoundEnabled())
        return;

    HWDataManager & dataMgr = HWDataManager::instance();

    QString soundsDir = QString("Sounds/");

    QStringList list = dataMgr.entryList(
            soundsDir,
            QDir::Files,
            QStringList() <<
                "shotgunreload.ogg"
            );
    if(!list.empty())
        SDLInteraction::instance().playSoundFile(dataMgr.findFileForRead(soundsDir + "/" + list[0]));
}