QTfrontend/ui/widget/qpushbuttonwithsound.cpp
author sheepluva
Thu, 30 Aug 2012 20:42:29 +0200
changeset 7631 01b599d6f72d
parent 6930 d187ea93fc4f
child 7793 3c21da93db9f
permissions -rw-r--r--
dos2unix newline fixes on 7 (video recording-)merged files

#include <QMessageBox>
#include <QDir>

#include "qpushbuttonwithsound.h"
#include "DataManager.h"
#include "SDLInteraction.h"
#include "hwform.h"
#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;

    DataManager & dataMgr = DataManager::instance();

    if (this->isEnabled())
        SDLInteraction::instance().playSoundFile(dataMgr.findFileForRead("Sounds/roperelease.ogg"));
}